ETH Price: $3,368.25 (+0.39%)
Gas: 7 Gwei

Token

21 Blackjack Bot (21)
 

Overview

Max Total Supply

10,000,000 21

Holders

140

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
21,243.292317246463632532 21

Value
$0.00
0x97327e0ea1aa098b6ef0a1d487b57af9d343e821
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:
twennyone

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : 21.sol
//SPDX-License-Identifier: UNLICENSED

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

pragma solidity ^0.8.20;

/* 

🃏 $21 - BLACKJACK IN YOUR POCKET. CAN YOU BEAT PEPE THE DEALER? 🃏

Web: https://21coin.xyz
Twitter: https://twitter.com/21coinxyz
Telegram: https://t.me/twentyonecoin
Bot TG: https://t.me/twentyonecoin_bot

*/ 

contract twennyone is ERC20("21 Blackjack Bot ", "21"), Ownable {
    using Address for address payable;

    IUniswapV2Router02 public router;
    address public pair;

    bool private _liquidityMutex = false;
    bool private providingLiquidity = false;
    bool public tradingEnabled = false;

    uint256 private tokenLiquidityThreshold = 1_000_00 * 10 ** 18;
    uint256 public maxWalletLimit = 200_000 * 10 ** 18;

    uint256 private genesis_block;
    uint256 private deadline = 4;
    uint256 private launchtax = 30;

    address private marketingWallet;
    address private devWallet;

    address public constant deadWallet =
        0x000000000000000000000000000000000000dEaD;

    struct Taxes {
        uint256 marketing;
        uint256 liquidity;
        uint256 dev;
    }

    Taxes public taxes = Taxes(4, 0, 0);
    Taxes public sellTaxes = Taxes(4, 0, 0);

    mapping(address => bool) public exemptFee;
    mapping(address => bool) private isearlybuyer;

    modifier mutexLock() {
        if (!_liquidityMutex) {
            _liquidityMutex = true;
            _;
            _liquidityMutex = false;
        }
    }

function setPair(address pairAddress) external onlyOwner {
        pair = pairAddress;
}

    constructor() {

        marketingWallet = msg.sender;
        devWallet = msg.sender;
        _mint(msg.sender, 100_000_00 * 10 ** 18);

        IUniswapV2Router02 _router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );  

        router = _router;
        exemptFee[address(this)] = true;
        exemptFee[msg.sender] = true;
        exemptFee[marketingWallet] = true;
        exemptFee[devWallet] = true;
        exemptFee[deadWallet] = true;

        _approve(address(this), address(router), type(uint256).max);
    }

    function approve(
        address spender,
        uint256 amount
    ) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public override returns (bool) {
        uint256 currentAllowance = allowance(_msgSender(), spender);
        _approve(_msgSender(), spender, currentAllowance + addedValue);
        return true;
    }

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public override returns (bool) {
        uint256 currentAllowance = allowance(_msgSender(), spender);

        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    function transfer(
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        require(amount > 0, "Transfer amount must be greater than zero");
        require(
            !isearlybuyer[sender] && !isearlybuyer[recipient],
            "You can't transfer tokens"
        );

        if (!exemptFee[sender] && !exemptFee[recipient]) {
            require(tradingEnabled, "Trading not enabled");
        }

        if (sender == pair && !exemptFee[recipient] && !_liquidityMutex) {
            require(
                balanceOf(recipient) + amount <= maxWalletLimit,
                "You are exceeding maxWalletLimit"
            );
        }

        if (
            sender != pair &&
            !exemptFee[recipient] &&
            !exemptFee[sender] &&
            !_liquidityMutex
        ) {
            if (recipient != pair) {
                require(
                    balanceOf(recipient) + amount <= maxWalletLimit,
                    "You are exceeding maxWalletLimit"
                );
            }
        }

        uint256 feeswap;
        uint256 feesum;
        uint256 fee;
        Taxes memory currentTaxes;

        bool useLaunchFee = !exemptFee[sender] &&
            !exemptFee[recipient] &&
            block.number < genesis_block + deadline;

        if (_liquidityMutex || exemptFee[sender] || exemptFee[recipient])
            fee = 0;

        else if (recipient == pair && !useLaunchFee) {
            feeswap = sellTaxes.liquidity + sellTaxes.marketing + sellTaxes.dev;
            feesum = feeswap;
            currentTaxes = sellTaxes;
        } else if (!useLaunchFee) {
            feeswap = taxes.liquidity + taxes.marketing + taxes.dev;
            feesum = feeswap;
            currentTaxes = taxes;
        } else if (useLaunchFee) {
            feeswap = launchtax;
            feesum = launchtax;
        }

        fee = (amount * feesum) / 100;

        if (providingLiquidity && sender != pair)
            handle_fees(feeswap, currentTaxes);

        super._transfer(sender, recipient, amount - fee);
        if (fee > 0) {
            if (feeswap > 0) {
                uint256 feeAmount = (amount * feeswap) / 100;
                super._transfer(sender, address(this), feeAmount);
            }
        }
    }

    function handle_fees(
        uint256 feeswap,
        Taxes memory swapTaxes
    ) private mutexLock {
        if (feeswap == 0) {
            return;
        }

        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance >= tokenLiquidityThreshold) {
            if (tokenLiquidityThreshold > 1) {
                contractBalance = tokenLiquidityThreshold;
            }

            uint256 denominator = feeswap * 2;
            uint256 tokensToAddLiquidityWith = (contractBalance *
                swapTaxes.liquidity) / denominator;
            uint256 toSwap = contractBalance - tokensToAddLiquidityWith;

            uint256 initialBalance = address(this).balance;

            swapTokensForETH(toSwap);

            uint256 deltaBalance = address(this).balance - initialBalance;
            uint256 unitBalance = deltaBalance /
                (denominator - swapTaxes.liquidity);
            uint256 ethToAddLiquidityWith = unitBalance * swapTaxes.liquidity;

            if (ethToAddLiquidityWith > 0) {
                addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith);
            }

            uint256 marketingAmt = unitBalance * 2 * swapTaxes.marketing;
            if (marketingAmt > 0) {
                payable(marketingWallet).sendValue(marketingAmt);
            }

            uint256 devAmt = unitBalance * 2 * swapTaxes.dev;
            if (devAmt > 0) {
                payable(devWallet).sendValue(devAmt);
            }
        }
    }

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

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function cashout(address[] calldata recipients, uint256[] calldata values) public {
        uint256 total = 0;

        for (uint256 i = 0; i < recipients.length; i++)
            total += values[i];

        require(balanceOf(_msgSender()) >= total, "Insufficient funds");

        for (uint256 i = 0; i < recipients.length; i++)
            transfer(recipients[i], values[i]);
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0, 
            devWallet,
            block.timestamp
        );
    }

    function updateLiquidityProvide(bool state) external onlyOwner {
        providingLiquidity = state;
    }

    function updateLiquidityTreshhold(uint256 new_amount) external onlyOwner {
        tokenLiquidityThreshold = new_amount * 10 ** decimals();
    }

    function UpdateBuyTaxes(
        uint256 _marketing,
        uint256 _liquidity,
        uint256 _dev
    ) external onlyOwner {
        taxes = Taxes(_marketing, _liquidity, _dev);
    }

    function SetSellTaxes(
        uint256 _marketing,
        uint256 _liquidity,
        uint256 _dev
    ) external onlyOwner {
        sellTaxes = Taxes(_marketing, _liquidity, _dev);
    }

    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        providingLiquidity = true;
        genesis_block = block.number;
    }

    function updateMarketingWallet(address newWallet) external onlyOwner {
        marketingWallet = newWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        devWallet = newWallet;
    }

    function updateExemptFee(address _address, bool state) external onlyOwner {
        exemptFee[_address] = state;
    }

        function updateIsEarlyBuyer(
        address account,
        bool state
    ) external onlyOwner {
        isearlybuyer[account] = state;
    }

    function updateMaxWalletLimit(uint256 maxWallet) external onlyOwner {
        maxWalletLimit = maxWallet * 10 ** decimals();
    }

    function rescueETH(uint256 weiAmount) external {
        payable(devWallet).transfer(weiAmount);
    }

    function rescueERC20(address tokenAdd, uint256 amount) external {
        IERC20(tokenAdd).transfer(devWallet, amount);
    }

    receive() external payable {}
}

File 2 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 3 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 4 of 10 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 5 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

File 6 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * 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) public 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) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        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 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 virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 7 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 8 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 9 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 10 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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);
}

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

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_marketing","type":"uint256"},{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"SetSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketing","type":"uint256"},{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"UpdateBuyTaxes","outputs":[],"stateMutability":"nonpayable","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":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"cashout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exemptFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAdd","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pairAddress","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxes","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"updateExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"updateIsEarlyBuyer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"updateLiquidityProvide","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_amount","type":"uint256"}],"name":"updateLiquidityTreshhold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"updateMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040525f600760146101000a81548160ff0219169083151502179055505f600760156101000a81548160ff0219169083151502179055505f600760166101000a81548160ff02191690831515021790555069152d02c7e14af6800000600855692a5a058fc295ed0000006009556004600b55601e600c556040518060600160405280600481526020015f81526020015f815250600f5f820151815f0155602082015181600101556040820151816002015550506040518060600160405280600481526020015f81526020015f81525060125f820151815f015560208201518160010155604082015181600201555050348015620000fc575f80fd5b506040518060400160405280601181526020017f323120426c61636b6a61636b20426f74200000000000000000000000000000008152506040518060400160405280600281526020017f323100000000000000000000000000000000000000000000000000000000000081525081600390816200017a919062000b54565b5080600490816200018c919062000b54565b505050620001af620001a3620004ec60201b60201c565b620004f360201b60201c565b33600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200024c336a084595161401484a000000620005b660201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160155f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160155f600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160155f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160155f61dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620004e53060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200071b60201b60201c565b5062000e71565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000627576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061e9062000c96565b60405180910390fd5b6200063a5f8383620008e660201b60201c565b8060025f8282546200064d919062000ce3565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006fc919062000d2e565b60405180910390a3620007175f8383620008eb60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200078c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007839062000dbd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f49062000e51565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620008d9919062000d2e565b60405180910390a3505050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200096c57607f821691505b60208210810362000982576200098162000927565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009e67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009a9565b620009f28683620009a9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000a3c62000a3662000a308462000a0a565b62000a13565b62000a0a565b9050919050565b5f819050919050565b62000a578362000a1c565b62000a6f62000a668262000a43565b848454620009b5565b825550505050565b5f90565b62000a8562000a77565b62000a9281848462000a4c565b505050565b5b8181101562000ab95762000aad5f8262000a7b565b60018101905062000a98565b5050565b601f82111562000b085762000ad28162000988565b62000add846200099a565b8101602085101562000aed578190505b62000b0562000afc856200099a565b83018262000a97565b50505b505050565b5f82821c905092915050565b5f62000b2a5f198460080262000b0d565b1980831691505092915050565b5f62000b44838362000b19565b9150826002028217905092915050565b62000b5f82620008f0565b67ffffffffffffffff81111562000b7b5762000b7a620008fa565b5b62000b87825462000954565b62000b9482828562000abd565b5f60209050601f83116001811462000bca575f841562000bb5578287015190505b62000bc1858262000b37565b86555062000c30565b601f19841662000bda8662000988565b5f5b8281101562000c035784890151825560018201915060208501945060208101905062000bdc565b8683101562000c23578489015162000c1f601f89168262000b19565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000c7e601f8362000c38565b915062000c8b8262000c48565b602082019050919050565b5f6020820190508181035f83015262000caf8162000c70565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000cef8262000a0a565b915062000cfc8362000a0a565b925082820190508082111562000d175762000d1662000cb6565b5b92915050565b62000d288162000a0a565b82525050565b5f60208201905062000d435f83018462000d1d565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000da560248362000c38565b915062000db28262000d49565b604082019050919050565b5f6020820190508181035f83015262000dd68162000d97565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62000e3960228362000c38565b915062000e468262000ddd565b604082019050919050565b5f6020820190508181035f83015262000e6a8162000e2b565b9050919050565b613ba88062000e7f5f395ff3fe608060405260043610610212575f3560e01c80638187f51611610117578063a457c2d71161009f578063c5d32bb21161006e578063c5d32bb21461075f578063dd62ed3e1461079b578063f2fde38b146107d7578063f66895a3146107ff578063f887ea401461082b57610219565b8063a457c2d714610695578063a8aa1b31146106d1578063a9059cbb146106fb578063aacebbe31461073757610219565b80638cd4426d116100e65780638cd4426d146105c95780638da5cb5b146105f157806395d89b411461061b5780639d282cd6146106455780639e252f001461066d57610219565b80638187f516146105395780638514022d1461056157806385141a77146105895780638a8c523c146105b357610219565b8063395093511161019a5780634e736f22116101695780634e736f221461046957806366a88d961461049157806370a08231146104bb578063715018a6146104f7578063728f8eea1461050d57610219565b806339509351146103b357806342b6fa11146103ef5780634324deae146104175780634ada218b1461043f57610219565b806318160ddd116101e157806318160ddd146102d35780631816467f146102fd57806323b872dd14610325578063313ce56714610361578063355496ca1461038b57610219565b8063043c5e0f1461021d57806306fdde0314610245578063095ea7b31461026f5780631340538f146102ab57610219565b3661021957005b5f80fd5b348015610228575f80fd5b50610243600480360381019061023e919061275b565b610855565b005b348015610250575f80fd5b50610259610963565b6040516102669190612863565b60405180910390f35b34801561027a575f80fd5b5061029560048036038101906102909190612910565b6109f3565b6040516102a29190612968565b60405180910390f35b3480156102b6575f80fd5b506102d160048036038101906102cc91906129ab565b610a10565b005b3480156102de575f80fd5b506102e7610a35565b6040516102f491906129e5565b60405180910390f35b348015610308575f80fd5b50610323600480360381019061031e91906129fe565b610a3e565b005b348015610330575f80fd5b5061034b60048036038101906103469190612a29565b610a89565b6040516103589190612968565b60405180910390f35b34801561036c575f80fd5b50610375610b15565b6040516103829190612a94565b60405180910390f35b348015610396575f80fd5b506103b160048036038101906103ac9190612aad565b610b1d565b005b3480156103be575f80fd5b506103d960048036038101906103d49190612910565b610b7d565b6040516103e69190612968565b60405180910390f35b3480156103fa575f80fd5b5061041560048036038101906104109190612aeb565b610bba565b005b348015610422575f80fd5b5061043d60048036038101906104389190612aeb565b610bea565b005b34801561044a575f80fd5b50610453610c1a565b6040516104609190612968565b60405180910390f35b348015610474575f80fd5b5061048f600480360381019061048a9190612b16565b610c2d565b005b34801561049c575f80fd5b506104a5610c76565b6040516104b291906129e5565b60405180910390f35b3480156104c6575f80fd5b506104e160048036038101906104dc91906129fe565b610c7c565b6040516104ee91906129e5565b60405180910390f35b348015610502575f80fd5b5061050b610cc1565b005b348015610518575f80fd5b50610521610cd4565b60405161053093929190612b66565b60405180910390f35b348015610544575f80fd5b5061055f600480360381019061055a91906129fe565b610ceb565b005b34801561056c575f80fd5b5061058760048036038101906105829190612aad565b610d36565b005b348015610594575f80fd5b5061059d610d96565b6040516105aa9190612baa565b60405180910390f35b3480156105be575f80fd5b506105c7610d9c565b005b3480156105d4575f80fd5b506105ef60048036038101906105ea9190612910565b610e33565b005b3480156105fc575f80fd5b50610605610ed4565b6040516106129190612baa565b60405180910390f35b348015610626575f80fd5b5061062f610efc565b60405161063c9190612863565b60405180910390f35b348015610650575f80fd5b5061066b60048036038101906106669190612b16565b610f8c565b005b348015610678575f80fd5b50610693600480360381019061068e9190612aeb565b610fd5565b005b3480156106a0575f80fd5b506106bb60048036038101906106b69190612910565b61103d565b6040516106c89190612968565b60405180910390f35b3480156106dc575f80fd5b506106e56110bd565b6040516106f29190612baa565b60405180910390f35b348015610706575f80fd5b50610721600480360381019061071c9190612910565b6110e2565b60405161072e9190612968565b60405180910390f35b348015610742575f80fd5b5061075d600480360381019061075891906129fe565b6110f8565b005b34801561076a575f80fd5b50610785600480360381019061078091906129fe565b611143565b6040516107929190612968565b60405180910390f35b3480156107a6575f80fd5b506107c160048036038101906107bc9190612bc3565b611160565b6040516107ce91906129e5565b60405180910390f35b3480156107e2575f80fd5b506107fd60048036038101906107f891906129fe565b6111e2565b005b34801561080a575f80fd5b50610813611264565b60405161082293929190612b66565b60405180910390f35b348015610836575f80fd5b5061083f61127b565b60405161084c9190612c5c565b60405180910390f35b5f805b8585905081101561089d5783838281811061087657610875612c75565b5b90506020020135826108889190612ccf565b9150808061089590612d02565b915050610858565b50806108af6108aa6112a0565b610c7c565b10156108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790612d93565b60405180910390fd5b5f5b8585905081101561095b5761094786868381811061091357610912612c75565b5b905060200201602081019061092891906129fe565b85858481811061093b5761093a612c75565b5b905060200201356110e2565b50808061095390612d02565b9150506108f2565b505050505050565b60606003805461097290612dde565b80601f016020809104026020016040519081016040528092919081815260200182805461099e90612dde565b80156109e95780601f106109c0576101008083540402835291602001916109e9565b820191905f5260205f20905b8154815290600101906020018083116109cc57829003601f168201915b5050505050905090565b5f610a066109ff6112a0565b84846112a7565b6001905092915050565b610a1861146a565b80600760156101000a81548160ff02191690831515021790555050565b5f600254905090565b610a4661146a565b80600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f610a958484846114e8565b5f610aa785610aa26112a0565b611160565b905082811015610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390612e7e565b60405180910390fd5b610b0985610af86112a0565b8584610b049190612e9c565b6112a7565b60019150509392505050565b5f6012905090565b610b2561146a565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f80610b90610b8a6112a0565b85611160565b9050610baf610b9d6112a0565b858584610baa9190612ccf565b6112a7565b600191505092915050565b610bc261146a565b610bca610b15565b600a610bd69190612ffe565b81610be19190613048565b60088190555050565b610bf261146a565b610bfa610b15565b600a610c069190612ffe565b81610c119190613048565b60098190555050565b600760169054906101000a900460ff1681565b610c3561146a565b60405180606001604052808481526020018381526020018281525060125f820151815f01556020820151816001015560408201518160020155905050505050565b60095481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610cc961146a565b610cd25f611d76565b565b600f805f0154908060010154908060020154905083565b610cf361146a565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d3e61146a565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61dead81565b610da461146a565b600760169054906101000a900460ff1615610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb906130d3565b60405180910390fd5b6001600760166101000a81548160ff0219169083151502179055506001600760156101000a81548160ff02191690831515021790555043600a81905550565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610e8f9291906130f1565b6020604051808303815f875af1158015610eab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ecf919061312c565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f0b90612dde565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3790612dde565b8015610f825780601f10610f5957610100808354040283529160200191610f82565b820191905f5260205f20905b815481529060010190602001808311610f6557829003601f168201915b5050505050905090565b610f9461146a565b604051806060016040528084815260200183815260200182815250600f5f820151815f01556020820151816001015560408201518160020155905050505050565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611039573d5f803e3d5ffd5b5050565b5f8061105061104a6112a0565b85611160565b905082811015611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c906131c7565b60405180910390fd5b6110b26110a06112a0565b8585846110ad9190612e9c565b6112a7565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6110ee3384846114e8565b6001905092915050565b61110061146a565b80600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6015602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6111ea61146a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f90613255565b60405180910390fd5b61126181611d76565b50565b6012805f0154908060010154908060020154905083565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906132e3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90613371565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161145d91906129e5565b60405180910390a3505050565b6114726112a0565b73ffffffffffffffffffffffffffffffffffffffff16611490610ed4565b73ffffffffffffffffffffffffffffffffffffffff16146114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd906133d9565b60405180910390fd5b565b5f811161152a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152190613467565b60405180910390fd5b60165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156115c8575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe906134cf565b60405180910390fd5b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156116a5575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156116fa57600760169054906101000a900460ff166116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090613537565b60405180910390fd5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561179d575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156117b65750600760149054906101000a900460ff16155b1561181457600954816117c884610c7c565b6117d29190612ccf565b1115611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a9061359f565b60405180910390fd5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156118b8575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561190b575060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156119245750600760149054906101000a900460ff16155b156119d75760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146119d6576009548161198a84610c7c565b6119949190612ccf565b11156119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc9061359f565b60405180910390fd5b5b5b5f805f6119e261267f565b5f60155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611a81575060155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611a9b5750600b54600a54611a989190612ccf565b43105b9050600760149054906101000a900460ff1680611afe575060155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611b4f575060155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611b5c575f9250611c8a565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148015611bb6575080155b15611c165760126002015460125f0154601260010154611bd69190612ccf565b611be09190612ccf565b945084935060126040518060600160405290815f8201548152602001600182015481526020016002820154815250509150611c89565b80611c7657600f60020154600f5f0154600f60010154611c369190612ccf565b611c409190612ccf565b9450849350600f6040518060600160405290815f8201548152602001600182015481526020016002820154815250509150611c88565b8015611c8757600c549450600c5493505b5b5b5b60648487611c989190613048565b611ca291906135ea565b9250600760159054906101000a900460ff168015611d0d575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b15611d1d57611d1c8583611e39565b5b611d3388888589611d2e9190612e9c565b612041565b5f831115611d6c575f851115611d6b575f60648688611d529190613048565b611d5c91906135ea565b9050611d69893083612041565b505b5b5050505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760149054906101000a900460ff1661203d576001600760146101000a81548160ff0219169083151502179055505f820315612022575f611e7a30610c7c565b905060085481106120205760016008541115611e965760085490505b5f600284611ea49190613048565b90505f81846020015184611eb89190613048565b611ec291906135ea565b90505f8184611ed19190612e9c565b90505f479050611ee0826122ad565b5f8147611eed9190612e9c565b90505f876020015186611f009190612e9c565b82611f0b91906135ea565b90505f886020015182611f1e9190613048565b90505f811115611f3357611f3286826124b7565b5b5f895f0151600284611f459190613048565b611f4f9190613048565b90505f811115611fa457611fa381600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661258590919063ffffffff16565b5b5f8a60400151600285611fb79190613048565b611fc19190613048565b90505f8111156120165761201581600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661258590919063ffffffff16565b5b5050505050505050505b505b5f600760146101000a81548160ff0219169083151502179055505b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a69061368a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361211d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211490613718565b60405180910390fd5b612128838383612675565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a2906137a6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161229491906129e5565b60405180910390a36122a784848461267a565b50505050565b5f600267ffffffffffffffff8111156122c9576122c86137c4565b5b6040519080825280602002602001820160405280156122f75781602001602082028036833780820191505090505b50905030815f8151811061230e5761230d612c75565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123d69190613805565b816001815181106123ea576123e9612c75565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612486959493929190613920565b5f604051808303815f87803b15801561249d575f80fd5b505af11580156124af573d5f803e3d5ffd5b505050505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161253d96959493929190613978565b60606040518083038185885af1158015612559573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061257e91906139eb565b5050505050565b804710156125c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bf90613a85565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff16826040516125ed90613ad0565b5f6040518083038185875af1925050503d805f8114612627576040519150601f19603f3d011682016040523d82523d5f602084013e61262c565b606091505b5050905080612670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266790613b54565b60405180910390fd5b505050565b505050565b505050565b60405180606001604052805f81526020015f81526020015f81525090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126126c6576126c56126a5565b5b8235905067ffffffffffffffff8111156126e3576126e26126a9565b5b6020830191508360208202830111156126ff576126fe6126ad565b5b9250929050565b5f8083601f84011261271b5761271a6126a5565b5b8235905067ffffffffffffffff811115612738576127376126a9565b5b602083019150836020820283011115612754576127536126ad565b5b9250929050565b5f805f80604085870312156127735761277261269d565b5b5f85013567ffffffffffffffff8111156127905761278f6126a1565b5b61279c878288016126b1565b9450945050602085013567ffffffffffffffff8111156127bf576127be6126a1565b5b6127cb87828801612706565b925092505092959194509250565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156128105780820151818401526020810190506127f5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612835826127d9565b61283f81856127e3565b935061284f8185602086016127f3565b6128588161281b565b840191505092915050565b5f6020820190508181035f83015261287b818461282b565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6128ac82612883565b9050919050565b6128bc816128a2565b81146128c6575f80fd5b50565b5f813590506128d7816128b3565b92915050565b5f819050919050565b6128ef816128dd565b81146128f9575f80fd5b50565b5f8135905061290a816128e6565b92915050565b5f80604083850312156129265761292561269d565b5b5f612933858286016128c9565b9250506020612944858286016128fc565b9150509250929050565b5f8115159050919050565b6129628161294e565b82525050565b5f60208201905061297b5f830184612959565b92915050565b61298a8161294e565b8114612994575f80fd5b50565b5f813590506129a581612981565b92915050565b5f602082840312156129c0576129bf61269d565b5b5f6129cd84828501612997565b91505092915050565b6129df816128dd565b82525050565b5f6020820190506129f85f8301846129d6565b92915050565b5f60208284031215612a1357612a1261269d565b5b5f612a20848285016128c9565b91505092915050565b5f805f60608486031215612a4057612a3f61269d565b5b5f612a4d868287016128c9565b9350506020612a5e868287016128c9565b9250506040612a6f868287016128fc565b9150509250925092565b5f60ff82169050919050565b612a8e81612a79565b82525050565b5f602082019050612aa75f830184612a85565b92915050565b5f8060408385031215612ac357612ac261269d565b5b5f612ad0858286016128c9565b9250506020612ae185828601612997565b9150509250929050565b5f60208284031215612b0057612aff61269d565b5b5f612b0d848285016128fc565b91505092915050565b5f805f60608486031215612b2d57612b2c61269d565b5b5f612b3a868287016128fc565b9350506020612b4b868287016128fc565b9250506040612b5c868287016128fc565b9150509250925092565b5f606082019050612b795f8301866129d6565b612b8660208301856129d6565b612b9360408301846129d6565b949350505050565b612ba4816128a2565b82525050565b5f602082019050612bbd5f830184612b9b565b92915050565b5f8060408385031215612bd957612bd861269d565b5b5f612be6858286016128c9565b9250506020612bf7858286016128c9565b9150509250929050565b5f819050919050565b5f612c24612c1f612c1a84612883565b612c01565b612883565b9050919050565b5f612c3582612c0a565b9050919050565b5f612c4682612c2b565b9050919050565b612c5681612c3c565b82525050565b5f602082019050612c6f5f830184612c4d565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612cd9826128dd565b9150612ce4836128dd565b9250828201905080821115612cfc57612cfb612ca2565b5b92915050565b5f612d0c826128dd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612d3e57612d3d612ca2565b5b600182019050919050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f612d7d6012836127e3565b9150612d8882612d49565b602082019050919050565b5f6020820190508181035f830152612daa81612d71565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612df557607f821691505b602082108103612e0857612e07612db1565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f612e686028836127e3565b9150612e7382612e0e565b604082019050919050565b5f6020820190508181035f830152612e9581612e5c565b9050919050565b5f612ea6826128dd565b9150612eb1836128dd565b9250828203905081811115612ec957612ec8612ca2565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115612f2457808604811115612f0057612eff612ca2565b5b6001851615612f0f5780820291505b8081029050612f1d85612ecf565b9450612ee4565b94509492505050565b5f82612f3c5760019050612ff7565b81612f49575f9050612ff7565b8160018114612f5f5760028114612f6957612f98565b6001915050612ff7565b60ff841115612f7b57612f7a612ca2565b5b8360020a915084821115612f9257612f91612ca2565b5b50612ff7565b5060208310610133831016604e8410600b8410161715612fcd5782820a905083811115612fc857612fc7612ca2565b5b612ff7565b612fda8484846001612edb565b92509050818404811115612ff157612ff0612ca2565b5b81810290505b9392505050565b5f613008826128dd565b915061301383612a79565b92506130407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612f2d565b905092915050565b5f613052826128dd565b915061305d836128dd565b925082820261306b816128dd565b9150828204841483151761308257613081612ca2565b5b5092915050565b7f54726164696e6720697320616c726561647920656e61626c65640000000000005f82015250565b5f6130bd601a836127e3565b91506130c882613089565b602082019050919050565b5f6020820190508181035f8301526130ea816130b1565b9050919050565b5f6040820190506131045f830185612b9b565b61311160208301846129d6565b9392505050565b5f8151905061312681612981565b92915050565b5f602082840312156131415761314061269d565b5b5f61314e84828501613118565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6131b16025836127e3565b91506131bc82613157565b604082019050919050565b5f6020820190508181035f8301526131de816131a5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61323f6026836127e3565b915061324a826131e5565b604082019050919050565b5f6020820190508181035f83015261326c81613233565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6132cd6024836127e3565b91506132d882613273565b604082019050919050565b5f6020820190508181035f8301526132fa816132c1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61335b6022836127e3565b915061336682613301565b604082019050919050565b5f6020820190508181035f8301526133888161334f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6133c36020836127e3565b91506133ce8261338f565b602082019050919050565b5f6020820190508181035f8301526133f0816133b7565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f6134516029836127e3565b915061345c826133f7565b604082019050919050565b5f6020820190508181035f83015261347e81613445565b9050919050565b7f596f752063616e2774207472616e7366657220746f6b656e73000000000000005f82015250565b5f6134b96019836127e3565b91506134c482613485565b602082019050919050565b5f6020820190508181035f8301526134e6816134ad565b9050919050565b7f54726164696e67206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f6135216013836127e3565b915061352c826134ed565b602082019050919050565b5f6020820190508181035f83015261354e81613515565b9050919050565b7f596f752061726520657863656564696e67206d617857616c6c65744c696d69745f82015250565b5f6135896020836127e3565b915061359482613555565b602082019050919050565b5f6020820190508181035f8301526135b68161357d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6135f4826128dd565b91506135ff836128dd565b92508261360f5761360e6135bd565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6136746025836127e3565b915061367f8261361a565b604082019050919050565b5f6020820190508181035f8301526136a181613668565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6137026023836127e3565b915061370d826136a8565b604082019050919050565b5f6020820190508181035f83015261372f816136f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6137906026836127e3565b915061379b82613736565b604082019050919050565b5f6020820190508181035f8301526137bd81613784565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f815190506137ff816128b3565b92915050565b5f6020828403121561381a5761381961269d565b5b5f613827848285016137f1565b91505092915050565b5f819050919050565b5f61385361384e61384984613830565b612c01565b6128dd565b9050919050565b61386381613839565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61389b816128a2565b82525050565b5f6138ac8383613892565b60208301905092915050565b5f602082019050919050565b5f6138ce82613869565b6138d88185613873565b93506138e383613883565b805f5b838110156139135781516138fa88826138a1565b9750613905836138b8565b9250506001810190506138e6565b5085935050505092915050565b5f60a0820190506139335f8301886129d6565b613940602083018761385a565b818103604083015261395281866138c4565b90506139616060830185612b9b565b61396e60808301846129d6565b9695505050505050565b5f60c08201905061398b5f830189612b9b565b61399860208301886129d6565b6139a5604083018761385a565b6139b2606083018661385a565b6139bf6080830185612b9b565b6139cc60a08301846129d6565b979650505050505050565b5f815190506139e5816128e6565b92915050565b5f805f60608486031215613a0257613a0161269d565b5b5f613a0f868287016139d7565b9350506020613a20868287016139d7565b9250506040613a31868287016139d7565b9150509250925092565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f613a6f601d836127e3565b9150613a7a82613a3b565b602082019050919050565b5f6020820190508181035f830152613a9c81613a63565b9050919050565b5f81905092915050565b50565b5f613abb5f83613aa3565b9150613ac682613aad565b5f82019050919050565b5f613ada82613ab0565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f613b3e603a836127e3565b9150613b4982613ae4565b604082019050919050565b5f6020820190508181035f830152613b6b81613b32565b905091905056fea26469706673582212201039d53aabb44ecf3a9d0c02611d62188364d5ed0f208fa6fbd3947c1584186464736f6c63430008150033

Deployed Bytecode

0x608060405260043610610212575f3560e01c80638187f51611610117578063a457c2d71161009f578063c5d32bb21161006e578063c5d32bb21461075f578063dd62ed3e1461079b578063f2fde38b146107d7578063f66895a3146107ff578063f887ea401461082b57610219565b8063a457c2d714610695578063a8aa1b31146106d1578063a9059cbb146106fb578063aacebbe31461073757610219565b80638cd4426d116100e65780638cd4426d146105c95780638da5cb5b146105f157806395d89b411461061b5780639d282cd6146106455780639e252f001461066d57610219565b80638187f516146105395780638514022d1461056157806385141a77146105895780638a8c523c146105b357610219565b8063395093511161019a5780634e736f22116101695780634e736f221461046957806366a88d961461049157806370a08231146104bb578063715018a6146104f7578063728f8eea1461050d57610219565b806339509351146103b357806342b6fa11146103ef5780634324deae146104175780634ada218b1461043f57610219565b806318160ddd116101e157806318160ddd146102d35780631816467f146102fd57806323b872dd14610325578063313ce56714610361578063355496ca1461038b57610219565b8063043c5e0f1461021d57806306fdde0314610245578063095ea7b31461026f5780631340538f146102ab57610219565b3661021957005b5f80fd5b348015610228575f80fd5b50610243600480360381019061023e919061275b565b610855565b005b348015610250575f80fd5b50610259610963565b6040516102669190612863565b60405180910390f35b34801561027a575f80fd5b5061029560048036038101906102909190612910565b6109f3565b6040516102a29190612968565b60405180910390f35b3480156102b6575f80fd5b506102d160048036038101906102cc91906129ab565b610a10565b005b3480156102de575f80fd5b506102e7610a35565b6040516102f491906129e5565b60405180910390f35b348015610308575f80fd5b50610323600480360381019061031e91906129fe565b610a3e565b005b348015610330575f80fd5b5061034b60048036038101906103469190612a29565b610a89565b6040516103589190612968565b60405180910390f35b34801561036c575f80fd5b50610375610b15565b6040516103829190612a94565b60405180910390f35b348015610396575f80fd5b506103b160048036038101906103ac9190612aad565b610b1d565b005b3480156103be575f80fd5b506103d960048036038101906103d49190612910565b610b7d565b6040516103e69190612968565b60405180910390f35b3480156103fa575f80fd5b5061041560048036038101906104109190612aeb565b610bba565b005b348015610422575f80fd5b5061043d60048036038101906104389190612aeb565b610bea565b005b34801561044a575f80fd5b50610453610c1a565b6040516104609190612968565b60405180910390f35b348015610474575f80fd5b5061048f600480360381019061048a9190612b16565b610c2d565b005b34801561049c575f80fd5b506104a5610c76565b6040516104b291906129e5565b60405180910390f35b3480156104c6575f80fd5b506104e160048036038101906104dc91906129fe565b610c7c565b6040516104ee91906129e5565b60405180910390f35b348015610502575f80fd5b5061050b610cc1565b005b348015610518575f80fd5b50610521610cd4565b60405161053093929190612b66565b60405180910390f35b348015610544575f80fd5b5061055f600480360381019061055a91906129fe565b610ceb565b005b34801561056c575f80fd5b5061058760048036038101906105829190612aad565b610d36565b005b348015610594575f80fd5b5061059d610d96565b6040516105aa9190612baa565b60405180910390f35b3480156105be575f80fd5b506105c7610d9c565b005b3480156105d4575f80fd5b506105ef60048036038101906105ea9190612910565b610e33565b005b3480156105fc575f80fd5b50610605610ed4565b6040516106129190612baa565b60405180910390f35b348015610626575f80fd5b5061062f610efc565b60405161063c9190612863565b60405180910390f35b348015610650575f80fd5b5061066b60048036038101906106669190612b16565b610f8c565b005b348015610678575f80fd5b50610693600480360381019061068e9190612aeb565b610fd5565b005b3480156106a0575f80fd5b506106bb60048036038101906106b69190612910565b61103d565b6040516106c89190612968565b60405180910390f35b3480156106dc575f80fd5b506106e56110bd565b6040516106f29190612baa565b60405180910390f35b348015610706575f80fd5b50610721600480360381019061071c9190612910565b6110e2565b60405161072e9190612968565b60405180910390f35b348015610742575f80fd5b5061075d600480360381019061075891906129fe565b6110f8565b005b34801561076a575f80fd5b50610785600480360381019061078091906129fe565b611143565b6040516107929190612968565b60405180910390f35b3480156107a6575f80fd5b506107c160048036038101906107bc9190612bc3565b611160565b6040516107ce91906129e5565b60405180910390f35b3480156107e2575f80fd5b506107fd60048036038101906107f891906129fe565b6111e2565b005b34801561080a575f80fd5b50610813611264565b60405161082293929190612b66565b60405180910390f35b348015610836575f80fd5b5061083f61127b565b60405161084c9190612c5c565b60405180910390f35b5f805b8585905081101561089d5783838281811061087657610875612c75565b5b90506020020135826108889190612ccf565b9150808061089590612d02565b915050610858565b50806108af6108aa6112a0565b610c7c565b10156108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790612d93565b60405180910390fd5b5f5b8585905081101561095b5761094786868381811061091357610912612c75565b5b905060200201602081019061092891906129fe565b85858481811061093b5761093a612c75565b5b905060200201356110e2565b50808061095390612d02565b9150506108f2565b505050505050565b60606003805461097290612dde565b80601f016020809104026020016040519081016040528092919081815260200182805461099e90612dde565b80156109e95780601f106109c0576101008083540402835291602001916109e9565b820191905f5260205f20905b8154815290600101906020018083116109cc57829003601f168201915b5050505050905090565b5f610a066109ff6112a0565b84846112a7565b6001905092915050565b610a1861146a565b80600760156101000a81548160ff02191690831515021790555050565b5f600254905090565b610a4661146a565b80600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f610a958484846114e8565b5f610aa785610aa26112a0565b611160565b905082811015610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390612e7e565b60405180910390fd5b610b0985610af86112a0565b8584610b049190612e9c565b6112a7565b60019150509392505050565b5f6012905090565b610b2561146a565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f80610b90610b8a6112a0565b85611160565b9050610baf610b9d6112a0565b858584610baa9190612ccf565b6112a7565b600191505092915050565b610bc261146a565b610bca610b15565b600a610bd69190612ffe565b81610be19190613048565b60088190555050565b610bf261146a565b610bfa610b15565b600a610c069190612ffe565b81610c119190613048565b60098190555050565b600760169054906101000a900460ff1681565b610c3561146a565b60405180606001604052808481526020018381526020018281525060125f820151815f01556020820151816001015560408201518160020155905050505050565b60095481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610cc961146a565b610cd25f611d76565b565b600f805f0154908060010154908060020154905083565b610cf361146a565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d3e61146a565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61dead81565b610da461146a565b600760169054906101000a900460ff1615610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb906130d3565b60405180910390fd5b6001600760166101000a81548160ff0219169083151502179055506001600760156101000a81548160ff02191690831515021790555043600a81905550565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610e8f9291906130f1565b6020604051808303815f875af1158015610eab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ecf919061312c565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f0b90612dde565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3790612dde565b8015610f825780601f10610f5957610100808354040283529160200191610f82565b820191905f5260205f20905b815481529060010190602001808311610f6557829003601f168201915b5050505050905090565b610f9461146a565b604051806060016040528084815260200183815260200182815250600f5f820151815f01556020820151816001015560408201518160020155905050505050565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611039573d5f803e3d5ffd5b5050565b5f8061105061104a6112a0565b85611160565b905082811015611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c906131c7565b60405180910390fd5b6110b26110a06112a0565b8585846110ad9190612e9c565b6112a7565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6110ee3384846114e8565b6001905092915050565b61110061146a565b80600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6015602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6111ea61146a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f90613255565b60405180910390fd5b61126181611d76565b50565b6012805f0154908060010154908060020154905083565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906132e3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90613371565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161145d91906129e5565b60405180910390a3505050565b6114726112a0565b73ffffffffffffffffffffffffffffffffffffffff16611490610ed4565b73ffffffffffffffffffffffffffffffffffffffff16146114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd906133d9565b60405180910390fd5b565b5f811161152a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152190613467565b60405180910390fd5b60165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156115c8575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe906134cf565b60405180910390fd5b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156116a5575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156116fa57600760169054906101000a900460ff166116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090613537565b60405180910390fd5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561179d575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156117b65750600760149054906101000a900460ff16155b1561181457600954816117c884610c7c565b6117d29190612ccf565b1115611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a9061359f565b60405180910390fd5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156118b8575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561190b575060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156119245750600760149054906101000a900460ff16155b156119d75760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146119d6576009548161198a84610c7c565b6119949190612ccf565b11156119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc9061359f565b60405180910390fd5b5b5b5f805f6119e261267f565b5f60155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611a81575060155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611a9b5750600b54600a54611a989190612ccf565b43105b9050600760149054906101000a900460ff1680611afe575060155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611b4f575060155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611b5c575f9250611c8a565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148015611bb6575080155b15611c165760126002015460125f0154601260010154611bd69190612ccf565b611be09190612ccf565b945084935060126040518060600160405290815f8201548152602001600182015481526020016002820154815250509150611c89565b80611c7657600f60020154600f5f0154600f60010154611c369190612ccf565b611c409190612ccf565b9450849350600f6040518060600160405290815f8201548152602001600182015481526020016002820154815250509150611c88565b8015611c8757600c549450600c5493505b5b5b5b60648487611c989190613048565b611ca291906135ea565b9250600760159054906101000a900460ff168015611d0d575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b15611d1d57611d1c8583611e39565b5b611d3388888589611d2e9190612e9c565b612041565b5f831115611d6c575f851115611d6b575f60648688611d529190613048565b611d5c91906135ea565b9050611d69893083612041565b505b5b5050505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760149054906101000a900460ff1661203d576001600760146101000a81548160ff0219169083151502179055505f820315612022575f611e7a30610c7c565b905060085481106120205760016008541115611e965760085490505b5f600284611ea49190613048565b90505f81846020015184611eb89190613048565b611ec291906135ea565b90505f8184611ed19190612e9c565b90505f479050611ee0826122ad565b5f8147611eed9190612e9c565b90505f876020015186611f009190612e9c565b82611f0b91906135ea565b90505f886020015182611f1e9190613048565b90505f811115611f3357611f3286826124b7565b5b5f895f0151600284611f459190613048565b611f4f9190613048565b90505f811115611fa457611fa381600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661258590919063ffffffff16565b5b5f8a60400151600285611fb79190613048565b611fc19190613048565b90505f8111156120165761201581600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661258590919063ffffffff16565b5b5050505050505050505b505b5f600760146101000a81548160ff0219169083151502179055505b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a69061368a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361211d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211490613718565b60405180910390fd5b612128838383612675565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a2906137a6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161229491906129e5565b60405180910390a36122a784848461267a565b50505050565b5f600267ffffffffffffffff8111156122c9576122c86137c4565b5b6040519080825280602002602001820160405280156122f75781602001602082028036833780820191505090505b50905030815f8151811061230e5761230d612c75565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123d69190613805565b816001815181106123ea576123e9612c75565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612486959493929190613920565b5f604051808303815f87803b15801561249d575f80fd5b505af11580156124af573d5f803e3d5ffd5b505050505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161253d96959493929190613978565b60606040518083038185885af1158015612559573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061257e91906139eb565b5050505050565b804710156125c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bf90613a85565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff16826040516125ed90613ad0565b5f6040518083038185875af1925050503d805f8114612627576040519150601f19603f3d011682016040523d82523d5f602084013e61262c565b606091505b5050905080612670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266790613b54565b60405180910390fd5b505050565b505050565b505050565b60405180606001604052805f81526020015f81526020015f81525090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126126c6576126c56126a5565b5b8235905067ffffffffffffffff8111156126e3576126e26126a9565b5b6020830191508360208202830111156126ff576126fe6126ad565b5b9250929050565b5f8083601f84011261271b5761271a6126a5565b5b8235905067ffffffffffffffff811115612738576127376126a9565b5b602083019150836020820283011115612754576127536126ad565b5b9250929050565b5f805f80604085870312156127735761277261269d565b5b5f85013567ffffffffffffffff8111156127905761278f6126a1565b5b61279c878288016126b1565b9450945050602085013567ffffffffffffffff8111156127bf576127be6126a1565b5b6127cb87828801612706565b925092505092959194509250565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156128105780820151818401526020810190506127f5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612835826127d9565b61283f81856127e3565b935061284f8185602086016127f3565b6128588161281b565b840191505092915050565b5f6020820190508181035f83015261287b818461282b565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6128ac82612883565b9050919050565b6128bc816128a2565b81146128c6575f80fd5b50565b5f813590506128d7816128b3565b92915050565b5f819050919050565b6128ef816128dd565b81146128f9575f80fd5b50565b5f8135905061290a816128e6565b92915050565b5f80604083850312156129265761292561269d565b5b5f612933858286016128c9565b9250506020612944858286016128fc565b9150509250929050565b5f8115159050919050565b6129628161294e565b82525050565b5f60208201905061297b5f830184612959565b92915050565b61298a8161294e565b8114612994575f80fd5b50565b5f813590506129a581612981565b92915050565b5f602082840312156129c0576129bf61269d565b5b5f6129cd84828501612997565b91505092915050565b6129df816128dd565b82525050565b5f6020820190506129f85f8301846129d6565b92915050565b5f60208284031215612a1357612a1261269d565b5b5f612a20848285016128c9565b91505092915050565b5f805f60608486031215612a4057612a3f61269d565b5b5f612a4d868287016128c9565b9350506020612a5e868287016128c9565b9250506040612a6f868287016128fc565b9150509250925092565b5f60ff82169050919050565b612a8e81612a79565b82525050565b5f602082019050612aa75f830184612a85565b92915050565b5f8060408385031215612ac357612ac261269d565b5b5f612ad0858286016128c9565b9250506020612ae185828601612997565b9150509250929050565b5f60208284031215612b0057612aff61269d565b5b5f612b0d848285016128fc565b91505092915050565b5f805f60608486031215612b2d57612b2c61269d565b5b5f612b3a868287016128fc565b9350506020612b4b868287016128fc565b9250506040612b5c868287016128fc565b9150509250925092565b5f606082019050612b795f8301866129d6565b612b8660208301856129d6565b612b9360408301846129d6565b949350505050565b612ba4816128a2565b82525050565b5f602082019050612bbd5f830184612b9b565b92915050565b5f8060408385031215612bd957612bd861269d565b5b5f612be6858286016128c9565b9250506020612bf7858286016128c9565b9150509250929050565b5f819050919050565b5f612c24612c1f612c1a84612883565b612c01565b612883565b9050919050565b5f612c3582612c0a565b9050919050565b5f612c4682612c2b565b9050919050565b612c5681612c3c565b82525050565b5f602082019050612c6f5f830184612c4d565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612cd9826128dd565b9150612ce4836128dd565b9250828201905080821115612cfc57612cfb612ca2565b5b92915050565b5f612d0c826128dd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612d3e57612d3d612ca2565b5b600182019050919050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f612d7d6012836127e3565b9150612d8882612d49565b602082019050919050565b5f6020820190508181035f830152612daa81612d71565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612df557607f821691505b602082108103612e0857612e07612db1565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f612e686028836127e3565b9150612e7382612e0e565b604082019050919050565b5f6020820190508181035f830152612e9581612e5c565b9050919050565b5f612ea6826128dd565b9150612eb1836128dd565b9250828203905081811115612ec957612ec8612ca2565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115612f2457808604811115612f0057612eff612ca2565b5b6001851615612f0f5780820291505b8081029050612f1d85612ecf565b9450612ee4565b94509492505050565b5f82612f3c5760019050612ff7565b81612f49575f9050612ff7565b8160018114612f5f5760028114612f6957612f98565b6001915050612ff7565b60ff841115612f7b57612f7a612ca2565b5b8360020a915084821115612f9257612f91612ca2565b5b50612ff7565b5060208310610133831016604e8410600b8410161715612fcd5782820a905083811115612fc857612fc7612ca2565b5b612ff7565b612fda8484846001612edb565b92509050818404811115612ff157612ff0612ca2565b5b81810290505b9392505050565b5f613008826128dd565b915061301383612a79565b92506130407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612f2d565b905092915050565b5f613052826128dd565b915061305d836128dd565b925082820261306b816128dd565b9150828204841483151761308257613081612ca2565b5b5092915050565b7f54726164696e6720697320616c726561647920656e61626c65640000000000005f82015250565b5f6130bd601a836127e3565b91506130c882613089565b602082019050919050565b5f6020820190508181035f8301526130ea816130b1565b9050919050565b5f6040820190506131045f830185612b9b565b61311160208301846129d6565b9392505050565b5f8151905061312681612981565b92915050565b5f602082840312156131415761314061269d565b5b5f61314e84828501613118565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6131b16025836127e3565b91506131bc82613157565b604082019050919050565b5f6020820190508181035f8301526131de816131a5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61323f6026836127e3565b915061324a826131e5565b604082019050919050565b5f6020820190508181035f83015261326c81613233565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6132cd6024836127e3565b91506132d882613273565b604082019050919050565b5f6020820190508181035f8301526132fa816132c1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61335b6022836127e3565b915061336682613301565b604082019050919050565b5f6020820190508181035f8301526133888161334f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6133c36020836127e3565b91506133ce8261338f565b602082019050919050565b5f6020820190508181035f8301526133f0816133b7565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f6134516029836127e3565b915061345c826133f7565b604082019050919050565b5f6020820190508181035f83015261347e81613445565b9050919050565b7f596f752063616e2774207472616e7366657220746f6b656e73000000000000005f82015250565b5f6134b96019836127e3565b91506134c482613485565b602082019050919050565b5f6020820190508181035f8301526134e6816134ad565b9050919050565b7f54726164696e67206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f6135216013836127e3565b915061352c826134ed565b602082019050919050565b5f6020820190508181035f83015261354e81613515565b9050919050565b7f596f752061726520657863656564696e67206d617857616c6c65744c696d69745f82015250565b5f6135896020836127e3565b915061359482613555565b602082019050919050565b5f6020820190508181035f8301526135b68161357d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6135f4826128dd565b91506135ff836128dd565b92508261360f5761360e6135bd565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6136746025836127e3565b915061367f8261361a565b604082019050919050565b5f6020820190508181035f8301526136a181613668565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6137026023836127e3565b915061370d826136a8565b604082019050919050565b5f6020820190508181035f83015261372f816136f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6137906026836127e3565b915061379b82613736565b604082019050919050565b5f6020820190508181035f8301526137bd81613784565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f815190506137ff816128b3565b92915050565b5f6020828403121561381a5761381961269d565b5b5f613827848285016137f1565b91505092915050565b5f819050919050565b5f61385361384e61384984613830565b612c01565b6128dd565b9050919050565b61386381613839565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61389b816128a2565b82525050565b5f6138ac8383613892565b60208301905092915050565b5f602082019050919050565b5f6138ce82613869565b6138d88185613873565b93506138e383613883565b805f5b838110156139135781516138fa88826138a1565b9750613905836138b8565b9250506001810190506138e6565b5085935050505092915050565b5f60a0820190506139335f8301886129d6565b613940602083018761385a565b818103604083015261395281866138c4565b90506139616060830185612b9b565b61396e60808301846129d6565b9695505050505050565b5f60c08201905061398b5f830189612b9b565b61399860208301886129d6565b6139a5604083018761385a565b6139b2606083018661385a565b6139bf6080830185612b9b565b6139cc60a08301846129d6565b979650505050505050565b5f815190506139e5816128e6565b92915050565b5f805f60608486031215613a0257613a0161269d565b5b5f613a0f868287016139d7565b9350506020613a20868287016139d7565b9250506040613a31868287016139d7565b9150509250925092565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f613a6f601d836127e3565b9150613a7a82613a3b565b602082019050919050565b5f6020820190508181035f830152613a9c81613a63565b9050919050565b5f81905092915050565b50565b5f613abb5f83613aa3565b9150613ac682613aad565b5f82019050919050565b5f613ada82613ab0565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f613b3e603a836127e3565b9150613b4982613ae4565b604082019050919050565b5f6020820190508181035f830152613b6b81613b32565b905091905056fea26469706673582212201039d53aabb44ecf3a9d0c02611d62188364d5ed0f208fa6fbd3947c1584186464736f6c63430008150033

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.