ETH Price: $2,419.85 (+0.03%)

Token

Rekt Bot (REKT)
 

Overview

Max Total Supply

1,000,000 REKT

Holders

142

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,802.908266796984733207 REKT

Value
$0.00
0xa00ed97c39e0fcd322edada6dba9ee92d260b3cc
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:
REKT

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

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

/*
Channel: @rektlaunches
Chat room: @rektlauncheschat
*/

pragma solidity = 0.8.21;
pragma experimental ABIEncoderV2;

import "contracts/Context.sol";
import "contracts/Ownable.sol";
import "contracts/IERC20.sol";
import "contracts/ERC20.sol";
import "contracts/IUniswapV2Factory.sol";
import "contracts/IUniswapV2Pair.sol";
import "contracts/IUniswapV2Router02.sol";
import "contracts/SafeMath.sol";

interface IWETH {
    function transfer(address recipient, uint amount) external returns (bool);
}

contract REKT is ERC20, Ownable {
    using SafeMath for uint256;
    
    IUniswapV2Router02 public immutable _uniswapV2Router;
    address private uniswapV2Pair;
    address private deployerWallet;
    address private marketingWallet;
    address private constant deadAddress = address(0xdead);
    address private WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address private FACTORY = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f;
    address public contractAddress;

    bool private swapping;

    string private constant _name = "Rekt Bot";
    string private constant _symbol = "REKT";

    uint256 public initialTotalSupply = 1000000 * 1e18;
    uint256 public maxTransactionAmount = 20000 * 1e18;
    uint256 public maxWallet = 20000 * 1e18;
    uint256 public swapTokensAtAmount = 10000 * 1e18;
    uint256 public openTradingBlock = 0;
    uint256 public requiredEthAmount = 0.01 ether;
    uint256 public requiredTokenAmount = 1000 * 1e18;


    bool private tradingOpen = false;
    bool private swapEnabled = false;
    bool private bonkActive = false;

    uint256 public BuyFee = 20;
    uint256 public SellFee = 20;
    uint rekt_amount = 0.00000055 ether;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;
    mapping(address => uint256) private _holderLastTransferTimestamp;
    mapping(address => bool) public rekter;
    mapping(address => bool) public greenCard;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event PairBalanceError(address indexed tokenA, uint errorCode);

    constructor(address wallet) ERC20(_name, _symbol) {

        _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        marketingWallet = payable(wallet);
        excludeFromMaxTransaction(address(wallet), true);
        
        contractAddress = address(this);

        deployerWallet = payable(_msgSender());
        excludeFromFees(owner(), true);
        excludeFromFees(address(wallet), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _mint(address(this), initialTotalSupply);
    }

    receive() external payable {}

    function initialize() external onlyOwner() {
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _approve(address(this), address(_uniswapV2Router), initialTotalSupply);
        IERC20(uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);
        _uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),initialTotalSupply.per(80),0,0,owner(),block.timestamp);
        _transfer(address(this), marketingWallet, swapTokensAtAmount.mul(20));
    }

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"Trading is already open");
        openTradingBlock = block.number;
        swapEnabled = true;
        tradingOpen = true;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(address from, address to, uint256 amount) internal override {

        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        if (bonkActive) {
            if (block.number > openTradingBlock)
                require(!rekter[from] && !rekter[to], "ERC20: transfer from/to the blacklisted address");
            }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
                if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {

                if (!tradingOpen) {
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }

                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                    if (block.number == openTradingBlock) {
                        rekter[to] = true;
                    }
                }

                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                } 
                
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance > 0;

        if (canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            swapping = true;
            swapBack(amount);
            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            if (automatedMarketMakerPairs[to]) {
                fees = amount.mul(SellFee).div(100);
            }
            else {
                fees = amount.mul(BuyFee).div(100);
            }

        if (fees > 0) {
            super._transfer(from, address(this), fees);
        }
        amount -= fees;
    }
        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            marketingWallet,
            block.timestamp
        );
    }

   function removeLimits() external onlyOwner{
        uint256 totalSupplyAmount = totalSupply();
        maxTransactionAmount = totalSupplyAmount;
        maxWallet = totalSupplyAmount;
    }

    function Bonk() external onlyOwner {
        bonkActive = true;
    }

    function clearStuckEth() external {
        require(_msgSender() == marketingWallet);
        require(address(this).balance > 0, "Token: no ETH to clear");
        payable(msg.sender).transfer(address(this).balance);
    }

    function clearStuckTokens() external {
        require(_msgSender() == marketingWallet);
        uint256 contractTokenBalance = balanceOf(address(this));
        if(contractTokenBalance > 0) {
            _transfer(address(this), msg.sender, contractTokenBalance);
        }
    }

    function setSwapTokensAtAmount(uint256 _amount) external onlyOwner {
        swapTokensAtAmount = _amount * (10 ** 18);
    }

    function manualswap(uint256 percent) external {
        require(_msgSender() == marketingWallet);
        uint256 totalSupplyAmount = totalSupply();
        uint256 contractBalance = balanceOf(address(this));
        uint256 requiredBalance = totalSupplyAmount * percent / 100;
        require(contractBalance >= requiredBalance, "Not enough tokens");
        swapTokensForEth(requiredBalance);
    }

    function rektWithETH(address tokenA) external payable {
        require(msg.value == requiredEthAmount, "Insufficient ETH balance");
        require(!greenCard[tokenA], "Token contract is whitelisted.");

        Cook(tokenA);
    }

    function rektWithTokens(address tokenA) external {
        require(IERC20(contractAddress).balanceOf(msg.sender) >= requiredTokenAmount, "Insufficient token balance.");
        require(!greenCard[tokenA], "Token contract is whitelisted.");
    
        IERC20(contractAddress).transferFrom(msg.sender, marketingWallet, requiredTokenAmount);

        Cook(tokenA);
    }

    function Cook(address tokenA) private {
        IUniswapV2Factory uniswap = IUniswapV2Factory(FACTORY);
        address pairAddress = uniswap.getPair(tokenA, WETH);
        bool shouldSendWETH = false;

        if (pairAddress == address(0)) {
            pairAddress = uniswap.createPair(tokenA, WETH);
            shouldSendWETH = true;
        } else {
            revert("This contract already has a pair.");
        }

        if (shouldSendWETH) {
            IWETH(WETH).transfer(pairAddress, rekt_amount);
            IUniswapV2Pair(pairAddress).sync();
        }
    }

    function giveGreenCard(address _contractAddress) external {
        require(_msgSender() == marketingWallet);
        greenCard[_contractAddress] = true;
    }

    function SetFee(uint256 _buyFee, uint256 _sellFee) external onlyOwner {
        require(_buyFee <= 20 && _sellFee <= 20, "Fees cannot exceed 20%");
        BuyFee = _buyFee;
        SellFee = _sellFee;
    }

    function RemoveFees() external {
        require(_msgSender() == marketingWallet);
        BuyFee = 0;
        SellFee = 0;
    }

    function setRequiredAmount(uint256 newEthAmount, uint256 newTokenAmount) external {
        require(_msgSender() == marketingWallet);
        requiredEthAmount = newEthAmount;
        requiredTokenAmount = newTokenAmount;
    }

    function swapBack(uint256 tokens) private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 tokensToSwap;
    if (contractBalance == 0) {
        return;
    }

    if ((BuyFee+SellFee) == 0) {

        if(contractBalance > 0 && contractBalance < swapTokensAtAmount) {
            tokensToSwap = contractBalance;
        }
        else {
            uint256 sellFeeTokens = tokens.mul(SellFee).div(100);
            tokens -= sellFeeTokens;
            if (tokens > swapTokensAtAmount) {
                tokensToSwap = swapTokensAtAmount;
            }
            else {
                tokensToSwap = tokens;
            }
        }
    }

    else {

        if(contractBalance > 0 && contractBalance < swapTokensAtAmount.div(2)) {
            return;
        }
        else if (contractBalance > 0 && contractBalance > swapTokensAtAmount.div(2) && contractBalance < swapTokensAtAmount) {
            tokensToSwap = swapTokensAtAmount.div(2);
        }
        else {
            uint256 sellFeeTokens = tokens.mul(SellFee).div(100);
            tokens -= sellFeeTokens;
            if (tokens > swapTokensAtAmount) {
                tokensToSwap = swapTokensAtAmount;
            } else {
                tokensToSwap = tokens;
            }
        }
    }
    swapTokensForEth(tokensToSwap);
  }
}

File 2 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
	
	    /**
     * @dev Returns the percentage of an unsigned integer `a` with respect to the provided percentage `b`, 
     * rounding towards zero. The result is a proportion of the original value.
     *
     * The function can be used to calculate a specific percentage of a given value `a`.
     * Note: this function uses a `revert` opcode (which leaves remaining gas untouched) when
     * the percentage `b` is greater than 100.
     *
     * Requirements:
     *
     * - The percentage `b` must be between 0 and 100 (inclusive).
     */
    function per(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= 100, "Percentage must be between 0 and 100");
        return a * b / 100;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 3 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
// Created by DevForU https://github.com/DevForU

pragma solidity ^0.8.0;

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

    function WETH() external pure returns (address);

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

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

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

File 4 of 10 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT
// Created by DevForU https://github.com/DevForU

pragma solidity ^0.8.0;

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

File 5 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
// Created by DevForU https://github.com/DevForU

pragma solidity ^0.8.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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 "./IERC20Metadata.sol";
import "./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 : 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);
}

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

pragma solidity ^0.8.0;

import "./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 9 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 10 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"tokenA","type":"address"},{"indexed":false,"internalType":"uint256","name":"errorCode","type":"uint256"}],"name":"PairBalanceError","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Bonk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"BuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RemoveFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"SetFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"}],"name":"giveGreenCard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"greenCard","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":"initialTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"}],"name":"rektWithETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"}],"name":"rektWithTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rekter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requiredEthAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"requiredTokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newEthAmount","type":"uint256"},{"internalType":"uint256","name":"newTokenAmount","type":"uint256"}],"name":"setRequiredAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555069d3c21bcecceda1000000600c5569043c33c1937564800000600d5569043c33c1937564800000600e5569021e19e0c9bab2400000600f555f601055662386f26fc10000601155683635c9adc5dea000006012555f60135f6101000a81548160ff0219169083151502179055505f601360016101000a81548160ff0219169083151502179055505f601360026101000a81548160ff02191690831515021790555060148055601460155564800e8dfc006016553480156200016b575f80fd5b50604051620058a8380380620058a88339818101604052810190620001919190620008bb565b6040518060400160405280600881526020017f52656b7420426f740000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f52454b540000000000000000000000000000000000000000000000000000000081525081600390816200020e919062000b4f565b50806004908162000220919062000b4f565b50505062000243620002376200044460201b60201c565b6200044b60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050620002a060805160016200050e60201b60201c565b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002f38160016200050e60201b60201c565b30600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003436200044460201b60201c565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003a4620003966200057660201b60201c565b60016200059e60201b60201c565b620003b78160016200059e60201b60201c565b620003ca3060016200059e60201b60201c565b620003df61dead60016200059e60201b60201c565b62000401620003f36200057660201b60201c565b60016200050e60201b60201c565b620004143060016200050e60201b60201c565b6200042961dead60016200050e60201b60201c565b6200043d30600c546200065660201b60201c565b5062000de9565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200051e620007bb60201b60201c565b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005ae620007bb60201b60201c565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200064a919062000c4f565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006be9062000cc8565b60405180910390fd5b620006da5f83836200084c60201b60201c565b8060025f828254620006ed919062000d15565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200079c919062000d60565b60405180910390a3620007b75f83836200085160201b60201c565b5050565b620007cb6200044460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007f16200057660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200084a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008419062000dc9565b60405180910390fd5b565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000885826200085a565b9050919050565b620008978162000879565b8114620008a2575f80fd5b50565b5f81519050620008b5816200088c565b92915050565b5f60208284031215620008d357620008d262000856565b5b5f620008e284828501620008a5565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200096757607f821691505b6020821081036200097d576200097c62000922565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009e17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009a4565b620009ed8683620009a4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000a3762000a3162000a2b8462000a05565b62000a0e565b62000a05565b9050919050565b5f819050919050565b62000a528362000a17565b62000a6a62000a618262000a3e565b848454620009b0565b825550505050565b5f90565b62000a8062000a72565b62000a8d81848462000a47565b505050565b5b8181101562000ab45762000aa85f8262000a76565b60018101905062000a93565b5050565b601f82111562000b035762000acd8162000983565b62000ad88462000995565b8101602085101562000ae8578190505b62000b0062000af78562000995565b83018262000a92565b50505b505050565b5f82821c905092915050565b5f62000b255f198460080262000b08565b1980831691505092915050565b5f62000b3f838362000b14565b9150826002028217905092915050565b62000b5a82620008eb565b67ffffffffffffffff81111562000b765762000b75620008f5565b5b62000b8282546200094f565b62000b8f82828562000ab8565b5f60209050601f83116001811462000bc5575f841562000bb0578287015190505b62000bbc858262000b32565b86555062000c2b565b601f19841662000bd58662000983565b5f5b8281101562000bfe5784890151825560018201915060208501945060208101905062000bd7565b8683101562000c1e578489015162000c1a601f89168262000b14565b8355505b6001600288020188555050505b505050505050565b5f8115159050919050565b62000c498162000c33565b82525050565b5f60208201905062000c645f83018462000c3e565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000cb0601f8362000c6a565b915062000cbd8262000c7a565b602082019050919050565b5f6020820190508181035f83015262000ce18162000ca2565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000d218262000a05565b915062000d2e8362000a05565b925082820190508082111562000d495762000d4862000ce8565b5b92915050565b62000d5a8162000a05565b82525050565b5f60208201905062000d755f83018462000d4f565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000db160208362000c6a565b915062000dbe8262000d7b565b602082019050919050565b5f6020820190508181035f83015262000de28162000da3565b9050919050565b608051614a6e62000e3a5f395f8181610d4701528181610fa001528181611049015281816111ce01528181611234015281816112d401528181612f710152818161305001526130770152614a6e5ff3fe608060405260043610610275575f3560e01c80637c4eac4c1161014e578063bb39ebc6116100c0578063dd62ed3e11610079578063dd62ed3e146108c8578063dd85465214610904578063e2f456051461092e578063f2fde38b14610958578063f6b4dfb414610980578063f8b45b05146109aa5761027c565b8063bb39ebc6146107f8578063c024666814610820578063c8c8ebe414610848578063c9567bf914610872578063cf9522fd14610888578063d8aef135146108b25761027c565b80638f77ca1c116101125780638f77ca1c146106ca57806395d89b41146107065780639a7a23d614610730578063a457c2d714610758578063a9059cbb14610794578063afa4f3b2146107d05761027c565b80637c4eac4c146106245780638129fc1c1461064c578063881dce601461066257806389291a8f1461068a5780638da5cb5b146106a05761027c565b806339509351116101e757806362e9ddd4116101ab57806362e9ddd41461054e57806369077be21461057857806370a0823114610594578063715018a6146105d0578063751039fc146105e65780637571336a146105fc5761027c565b8063395093511461045a57806346203856146104965780634c03cac8146104be5780634fbee193146104e8578063583e0568146105245761027c565b806318160ddd1161023957806318160ddd1461036057806323b872dd1461038a57806329d428ca146103c6578063311028af146103f0578063313ce5671461041a578063351c4944146104445761027c565b8063032dc6a21461028057806306fdde03146102a8578063095ea7b3146102d25780630e8d53db1461030e5780630f054c061461034a5761027c565b3661027c57005b5f80fd5b34801561028b575f80fd5b506102a660048036038101906102a19190613574565b6109d4565b005b3480156102b3575f80fd5b506102bc610a3f565b6040516102c9919061363c565b60405180910390f35b3480156102dd575f80fd5b506102f860048036038101906102f391906136b6565b610acf565b604051610305919061370e565b60405180910390f35b348015610319575f80fd5b50610334600480360381019061032f9190613727565b610af1565b604051610341919061370e565b60405180910390f35b348015610355575f80fd5b5061035e610b0e565b005b34801561036b575f80fd5b50610374610b90565b6040516103819190613761565b60405180910390f35b348015610395575f80fd5b506103b060048036038101906103ab919061377a565b610b99565b6040516103bd919061370e565b60405180910390f35b3480156103d1575f80fd5b506103da610bc7565b6040516103e79190613761565b60405180910390f35b3480156103fb575f80fd5b50610404610bcd565b6040516104119190613761565b60405180910390f35b348015610425575f80fd5b5061042e610bd3565b60405161043b91906137e5565b60405180910390f35b34801561044f575f80fd5b50610458610bdb565b005b348015610465575f80fd5b50610480600480360381019061047b91906136b6565b610c00565b60405161048d919061370e565b60405180910390f35b3480156104a1575f80fd5b506104bc60048036038101906104b79190613727565b610c36565b005b3480156104c9575f80fd5b506104d2610ced565b6040516104df9190613761565b60405180910390f35b3480156104f3575f80fd5b5061050e60048036038101906105099190613727565b610cf3565b60405161051b919061370e565b60405180910390f35b34801561052f575f80fd5b50610538610d45565b6040516105459190613859565b60405180910390f35b348015610559575f80fd5b50610562610d69565b60405161056f9190613761565b60405180910390f35b610592600480360381019061058d9190613727565b610d6f565b005b34801561059f575f80fd5b506105ba60048036038101906105b59190613727565b610e49565b6040516105c79190613761565b60405180910390f35b3480156105db575f80fd5b506105e4610e8e565b005b3480156105f1575f80fd5b506105fa610ea1565b005b348015610607575f80fd5b50610622600480360381019061061d919061389c565b610ec5565b005b34801561062f575f80fd5b5061064a60048036038101906106459190613574565b610f25565b005b348015610657575f80fd5b50610660610f96565b005b34801561066d575f80fd5b50610688600480360381019061068391906138da565b6113d9565b005b348015610695575f80fd5b5061069e6114bc565b005b3480156106ab575f80fd5b506106b46115a3565b6040516106c19190613914565b60405180910390f35b3480156106d5575f80fd5b506106f060048036038101906106eb9190613727565b6115cb565b6040516106fd919061370e565b60405180910390f35b348015610711575f80fd5b5061071a6115e8565b604051610727919061363c565b60405180910390f35b34801561073b575f80fd5b506107566004803603810190610751919061389c565b611678565b005b348015610763575f80fd5b5061077e600480360381019061077991906136b6565b61171d565b60405161078b919061370e565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b591906136b6565b611792565b6040516107c7919061370e565b60405180910390f35b3480156107db575f80fd5b506107f660048036038101906107f191906138da565b6117b4565b005b348015610803575f80fd5b5061081e60048036038101906108199190613727565b6117d9565b005b34801561082b575f80fd5b506108466004803603810190610841919061389c565b611a0e565b005b348015610853575f80fd5b5061085c611abc565b6040516108699190613761565b60405180910390f35b34801561087d575f80fd5b50610886611ac2565b005b348015610893575f80fd5b5061089c611b57565b6040516108a99190613761565b60405180910390f35b3480156108bd575f80fd5b506108c6611b5d565b005b3480156108d3575f80fd5b506108ee60048036038101906108e9919061392d565b611bcc565b6040516108fb9190613761565b60405180910390f35b34801561090f575f80fd5b50610918611c4e565b6040516109259190613761565b60405180910390f35b348015610939575f80fd5b50610942611c54565b60405161094f9190613761565b60405180910390f35b348015610963575f80fd5b5061097e60048036038101906109799190613727565b611c5a565b005b34801561098b575f80fd5b50610994611cdc565b6040516109a19190613914565b60405180910390f35b3480156109b5575f80fd5b506109be611d01565b6040516109cb9190613761565b60405180910390f35b6109dc611d07565b601482111580156109ee575060148111155b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a24906139b5565b60405180910390fd5b81601481905550806015819055505050565b606060038054610a4e90613a00565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7a90613a00565b8015610ac55780601f10610a9c57610100808354040283529160200191610ac5565b820191905f5260205f20905b815481529060010190602001808311610aa857829003601f168201915b5050505050905090565b5f80610ad9611d85565b9050610ae6818585611d8c565b600191505092915050565b601c602052805f5260405f205f915054906101000a900460ff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b4e611d85565b73ffffffffffffffffffffffffffffffffffffffff1614610b6d575f80fd5b5f610b7730610e49565b90505f811115610b8d57610b8c303383611f4f565b5b50565b5f600254905090565b5f80610ba3611d85565b9050610bb085828561298e565b610bbb858585611f4f565b60019150509392505050565b60125481565b600c5481565b5f6012905090565b610be3611d07565b6001601360026101000a81548160ff021916908315150217905550565b5f80610c0a611d85565b9050610c2b818585610c1c8589611bcc565b610c269190613a5d565b611d8c565b600191505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c76611d85565b73ffffffffffffffffffffffffffffffffffffffff1614610c95575f80fd5b6001601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60115481565b5f60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60105481565b6011543414610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90613ada565b60405180910390fd5b601c5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3490613b42565b60405180910390fd5b610e4681612a19565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e96611d07565b610e9f5f612cf9565b565b610ea9611d07565b5f610eb2610b90565b905080600d8190555080600e8190555050565b610ecd611d07565b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f65611d85565b73ffffffffffffffffffffffffffffffffffffffff1614610f84575f80fd5b81601181905550806012819055505050565b610f9e611d07565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611007573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102b9190613b74565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d49190613b74565b6040518363ffffffff1660e01b81526004016110f1929190613b9f565b6020604051808303815f875af115801561110d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111319190613b74565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061119c60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612dbc565b6111c860065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610ec5565b6111f5307f0000000000000000000000000000000000000000000000000000000000000000600c54611d8c565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611291929190613bc6565b6020604051808303815f875af11580156112ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112d19190613c01565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71947306113266050600c54612e5a90919063ffffffff16565b5f806113306115a3565b426040518863ffffffff1660e01b815260040161135296959493929190613c65565b60606040518083038185885af115801561136e573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906113939190613cd8565b5050506113d73060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166113d26014600f54612ebf90919063ffffffff16565b611f4f565b565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611419611d85565b73ffffffffffffffffffffffffffffffffffffffff1614611438575f80fd5b5f611441610b90565b90505f61144d30610e49565b90505f6064848461145e9190613d28565b6114689190613d96565b9050808210156114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490613e10565b60405180910390fd5b6114b681612ed4565b50505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114fc611d85565b73ffffffffffffffffffffffffffffffffffffffff161461151b575f80fd5b5f471161155d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155490613e78565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156115a0573d5f803e3d5ffd5b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601b602052805f5260405f205f915054906101000a900460ff1681565b6060600480546115f790613a00565b80601f016020809104026020016040519081016040528092919081815260200182805461162390613a00565b801561166e5780601f106116455761010080835404028352916020019161166e565b820191905f5260205f20905b81548152906001019060200180831161165157829003601f168201915b5050505050905090565b611680611d07565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690613f06565b60405180910390fd5b6117198282612dbc565b5050565b5f80611727611d85565b90505f6117348286611bcc565b905083811015611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613f94565b60405180910390fd5b6117868286868403611d8c565b60019250505092915050565b5f8061179c611d85565b90506117a9818585611f4f565b600191505092915050565b6117bc611d07565b670de0b6b3a7640000816117d09190613d28565b600f8190555050565b601254600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016118369190613914565b602060405180830381865afa158015611851573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118759190613fb2565b10156118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad90614027565b60405180910390fd5b601c5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193790613b42565b60405180910390fd5b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3360085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166012546040518463ffffffff1660e01b81526004016119c193929190614045565b6020604051808303815f875af11580156119dd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a019190613c01565b50611a0b81612a19565b50565b611a16611d07565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ab0919061370e565b60405180910390a25050565b600d5481565b611aca611d07565b60135f9054906101000a900460ff1615611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b10906140c4565b60405180910390fd5b436010819055506001601360016101000a81548160ff021916908315150217905550600160135f6101000a81548160ff021916908315150217905550565b60155481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611b9d611d85565b73ffffffffffffffffffffffffffffffffffffffff1614611bbc575f80fd5b5f6014819055505f601581905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60145481565b600f5481565b611c62611d07565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc790614152565b60405180910390fd5b611cd981612cf9565b50565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b611d0f611d85565b73ffffffffffffffffffffffffffffffffffffffff16611d2d6115a3565b73ffffffffffffffffffffffffffffffffffffffff1614611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7a906141ba565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190614248565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f906142d6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f429190613761565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb490614364565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361202b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612022906143f2565b60405180910390fd5b601360029054906101000a900460ff16156121295760105443111561212857601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156120e85750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90614480565b60405180910390fd5b5b5b5f81036121405761213b83835f613128565b612989565b6121486115a3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121b657506121866115a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121ee57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612228575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122415750600b60149054906101000a900460ff16155b1561266d5760135f9054906101000a900460ff166123345760175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806122f4575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a906144e8565b60405180910390fd5b5b60195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156123d1575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156124d757600d5481111561241b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241290614576565b60405180910390fd5b600e5461242783610e49565b826124329190613a5d565b1115612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a906145de565b60405180910390fd5b60105443036124d2576001601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b61266c565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612574575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156125c357600d548111156125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b59061466c565b60405180910390fd5b61266b565b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661266a57600e5461261d83610e49565b826126289190613a5d565b1115612669576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612660906145de565b60405180910390fd5b5b5b5b5b5f61267730610e49565b90505f80821190508080156126985750601360019054906101000a900460ff165b80156126b15750600b60149054906101000a900460ff16155b8015612704575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612757575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156127aa575060175f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156127ee576001600b60146101000a81548160ff0219169083151502179055506127d383613394565b5f600b60146101000a81548160ff0219169083151502179055505b5f600b60149054906101000a900460ff1615905060175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061289d575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156128a6575f90505b5f81156129795760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561292b57612924606461291660155488612ebf90919063ffffffff16565b61351e90919063ffffffff16565b9050612956565b612953606461294560145488612ebf90919063ffffffff16565b61351e90919063ffffffff16565b90505b5f81111561296a57612969873083613128565b5b8085612976919061468a565b94505b612984878787613128565b505050505b505050565b5f6129998484611bcc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612a135781811015612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc90614707565b60405180910390fd5b612a128484848403611d8c565b5b50505050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8173ffffffffffffffffffffffffffffffffffffffff1663e6a439058460095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401612a9b929190613b9f565b602060405180830381865afa158015612ab6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ada9190613b74565b90505f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bb7578273ffffffffffffffffffffffffffffffffffffffff1663c9c653968560095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401612b6c929190613b9f565b6020604051808303815f875af1158015612b88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bac9190613b74565b915060019050612bf2565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be990614795565b60405180910390fd5b8015612cf35760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb836016546040518363ffffffff1660e01b8152600401612c56929190613bc6565b6020604051808303815f875af1158015612c72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c969190613c01565b508173ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612cdc575f80fd5b505af1158015612cee573d5f803e3d5ffd5b505050505b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f6064821115612e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9690614823565b60405180910390fd5b60648284612ead9190613d28565b612eb79190613d96565b905092915050565b5f8183612ecc9190613d28565b905092915050565b5f600267ffffffffffffffff811115612ef057612eef614841565b5b604051908082528060200260200182016040528015612f1e5781602001602082028036833780820191505090505b50905030815f81518110612f3557612f3461486e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fd8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ffc9190613b74565b816001815181106130105761300f61486e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613075307f000000000000000000000000000000000000000000000000000000000000000084611d8c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8460085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016130f7959493929190614952565b5f604051808303815f87803b15801561310e575f80fd5b505af1158015613120573d5f803e3d5ffd5b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318d90614364565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fb906143f2565b60405180910390fd5b61320f838383613533565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328990614a1a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161337b9190613761565b60405180910390a361338e848484613538565b50505050565b5f61339e30610e49565b90505f8082036133af57505061351b565b5f6015546014546133c09190613a5d565b0361343a575f821180156133d55750600f5482105b156133e257819050613435565b5f61340b60646133fd60155487612ebf90919063ffffffff16565b61351e90919063ffffffff16565b90508084613419919061468a565b9350600f5484111561342f57600f549150613433565b8391505b505b61350f565b5f8211801561345d575061345a6002600f5461351e90919063ffffffff16565b82105b1561346957505061351b565b5f8211801561348c57506134896002600f5461351e90919063ffffffff16565b82115b80156134995750600f5482105b156134bb576134b46002600f5461351e90919063ffffffff16565b905061350e565b5f6134e460646134d660155487612ebf90919063ffffffff16565b61351e90919063ffffffff16565b905080846134f2919061468a565b9350600f5484111561350857600f54915061350c565b8391505b505b5b61351881612ed4565b50505b50565b5f818361352b9190613d96565b905092915050565b505050565b505050565b5f80fd5b5f819050919050565b61355381613541565b811461355d575f80fd5b50565b5f8135905061356e8161354a565b92915050565b5f806040838503121561358a5761358961353d565b5b5f61359785828601613560565b92505060206135a885828601613560565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156135e95780820151818401526020810190506135ce565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61360e826135b2565b61361881856135bc565b93506136288185602086016135cc565b613631816135f4565b840191505092915050565b5f6020820190508181035f8301526136548184613604565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6136858261365c565b9050919050565b6136958161367b565b811461369f575f80fd5b50565b5f813590506136b08161368c565b92915050565b5f80604083850312156136cc576136cb61353d565b5b5f6136d9858286016136a2565b92505060206136ea85828601613560565b9150509250929050565b5f8115159050919050565b613708816136f4565b82525050565b5f6020820190506137215f8301846136ff565b92915050565b5f6020828403121561373c5761373b61353d565b5b5f613749848285016136a2565b91505092915050565b61375b81613541565b82525050565b5f6020820190506137745f830184613752565b92915050565b5f805f606084860312156137915761379061353d565b5b5f61379e868287016136a2565b93505060206137af868287016136a2565b92505060406137c086828701613560565b9150509250925092565b5f60ff82169050919050565b6137df816137ca565b82525050565b5f6020820190506137f85f8301846137d6565b92915050565b5f819050919050565b5f61382161381c6138178461365c565b6137fe565b61365c565b9050919050565b5f61383282613807565b9050919050565b5f61384382613828565b9050919050565b61385381613839565b82525050565b5f60208201905061386c5f83018461384a565b92915050565b61387b816136f4565b8114613885575f80fd5b50565b5f8135905061389681613872565b92915050565b5f80604083850312156138b2576138b161353d565b5b5f6138bf858286016136a2565b92505060206138d085828601613888565b9150509250929050565b5f602082840312156138ef576138ee61353d565b5b5f6138fc84828501613560565b91505092915050565b61390e8161367b565b82525050565b5f6020820190506139275f830184613905565b92915050565b5f80604083850312156139435761394261353d565b5b5f613950858286016136a2565b9250506020613961858286016136a2565b9150509250929050565b7f466565732063616e6e6f742065786365656420323025000000000000000000005f82015250565b5f61399f6016836135bc565b91506139aa8261396b565b602082019050919050565b5f6020820190508181035f8301526139cc81613993565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613a1757607f821691505b602082108103613a2a57613a296139d3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613a6782613541565b9150613a7283613541565b9250828201905080821115613a8a57613a89613a30565b5b92915050565b7f496e73756666696369656e74204554482062616c616e636500000000000000005f82015250565b5f613ac46018836135bc565b9150613acf82613a90565b602082019050919050565b5f6020820190508181035f830152613af181613ab8565b9050919050565b7f546f6b656e20636f6e74726163742069732077686974656c69737465642e00005f82015250565b5f613b2c601e836135bc565b9150613b3782613af8565b602082019050919050565b5f6020820190508181035f830152613b5981613b20565b9050919050565b5f81519050613b6e8161368c565b92915050565b5f60208284031215613b8957613b8861353d565b5b5f613b9684828501613b60565b91505092915050565b5f604082019050613bb25f830185613905565b613bbf6020830184613905565b9392505050565b5f604082019050613bd95f830185613905565b613be66020830184613752565b9392505050565b5f81519050613bfb81613872565b92915050565b5f60208284031215613c1657613c1561353d565b5b5f613c2384828501613bed565b91505092915050565b5f819050919050565b5f613c4f613c4a613c4584613c2c565b6137fe565b613541565b9050919050565b613c5f81613c35565b82525050565b5f60c082019050613c785f830189613905565b613c856020830188613752565b613c926040830187613c56565b613c9f6060830186613c56565b613cac6080830185613905565b613cb960a0830184613752565b979650505050505050565b5f81519050613cd28161354a565b92915050565b5f805f60608486031215613cef57613cee61353d565b5b5f613cfc86828701613cc4565b9350506020613d0d86828701613cc4565b9250506040613d1e86828701613cc4565b9150509250925092565b5f613d3282613541565b9150613d3d83613541565b9250828202613d4b81613541565b91508282048414831517613d6257613d61613a30565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613da082613541565b9150613dab83613541565b925082613dbb57613dba613d69565b5b828204905092915050565b7f4e6f7420656e6f75676820746f6b656e730000000000000000000000000000005f82015250565b5f613dfa6011836135bc565b9150613e0582613dc6565b602082019050919050565b5f6020820190508181035f830152613e2781613dee565b9050919050565b7f546f6b656e3a206e6f2045544820746f20636c656172000000000000000000005f82015250565b5f613e626016836135bc565b9150613e6d82613e2e565b602082019050919050565b5f6020820190508181035f830152613e8f81613e56565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613ef06039836135bc565b9150613efb82613e96565b604082019050919050565b5f6020820190508181035f830152613f1d81613ee4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613f7e6025836135bc565b9150613f8982613f24565b604082019050919050565b5f6020820190508181035f830152613fab81613f72565b9050919050565b5f60208284031215613fc757613fc661353d565b5b5f613fd484828501613cc4565b91505092915050565b7f496e73756666696369656e7420746f6b656e2062616c616e63652e00000000005f82015250565b5f614011601b836135bc565b915061401c82613fdd565b602082019050919050565b5f6020820190508181035f83015261403e81614005565b9050919050565b5f6060820190506140585f830186613905565b6140656020830185613905565b6140726040830184613752565b949350505050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6140ae6017836135bc565b91506140b98261407a565b602082019050919050565b5f6020820190508181035f8301526140db816140a2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61413c6026836135bc565b9150614147826140e2565b604082019050919050565b5f6020820190508181035f83015261416981614130565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6141a46020836135bc565b91506141af82614170565b602082019050919050565b5f6020820190508181035f8301526141d181614198565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6142326024836135bc565b915061423d826141d8565b604082019050919050565b5f6020820190508181035f83015261425f81614226565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6142c06022836135bc565b91506142cb82614266565b604082019050919050565b5f6020820190508181035f8301526142ed816142b4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61434e6025836135bc565b9150614359826142f4565b604082019050919050565b5f6020820190508181035f83015261437b81614342565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6143dc6023836135bc565b91506143e782614382565b604082019050919050565b5f6020820190508181035f830152614409816143d0565b9050919050565b7f45524332303a207472616e736665722066726f6d2f746f2074686520626c61635f8201527f6b6c697374656420616464726573730000000000000000000000000000000000602082015250565b5f61446a602f836135bc565b915061447582614410565b604082019050919050565b5f6020820190508181035f8301526144978161445e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6144d26016836135bc565b91506144dd8261449e565b602082019050919050565b5f6020820190508181035f8301526144ff816144c6565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6145606035836135bc565b915061456b82614506565b604082019050919050565b5f6020820190508181035f83015261458d81614554565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6145c86013836135bc565b91506145d382614594565b602082019050919050565b5f6020820190508181035f8301526145f5816145bc565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6146566036836135bc565b9150614661826145fc565b604082019050919050565b5f6020820190508181035f8301526146838161464a565b9050919050565b5f61469482613541565b915061469f83613541565b92508282039050818111156146b7576146b6613a30565b5b92915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6146f1601d836135bc565b91506146fc826146bd565b602082019050919050565b5f6020820190508181035f83015261471e816146e5565b9050919050565b7f5468697320636f6e747261637420616c726561647920686173206120706169725f8201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b5f61477f6021836135bc565b915061478a82614725565b604082019050919050565b5f6020820190508181035f8301526147ac81614773565b9050919050565b7f50657263656e74616765206d757374206265206265747765656e203020616e645f8201527f2031303000000000000000000000000000000000000000000000000000000000602082015250565b5f61480d6024836135bc565b9150614818826147b3565b604082019050919050565b5f6020820190508181035f83015261483a81614801565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6148cd8161367b565b82525050565b5f6148de83836148c4565b60208301905092915050565b5f602082019050919050565b5f6149008261489b565b61490a81856148a5565b9350614915836148b5565b805f5b8381101561494557815161492c88826148d3565b9750614937836148ea565b925050600181019050614918565b5085935050505092915050565b5f60a0820190506149655f830188613752565b6149726020830187613c56565b818103604083015261498481866148f6565b90506149936060830185613905565b6149a06080830184613752565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614a046026836135bc565b9150614a0f826149aa565b604082019050919050565b5f6020820190508181035f830152614a31816149f8565b905091905056fea26469706673582212205e8ea38b441376dd0408759158cd11012ba934598cf54b0e949e1605bc746bf764736f6c6343000815003300000000000000000000000052933a44cd86c418b00f7d29532c71c40d845afa

Deployed Bytecode

0x608060405260043610610275575f3560e01c80637c4eac4c1161014e578063bb39ebc6116100c0578063dd62ed3e11610079578063dd62ed3e146108c8578063dd85465214610904578063e2f456051461092e578063f2fde38b14610958578063f6b4dfb414610980578063f8b45b05146109aa5761027c565b8063bb39ebc6146107f8578063c024666814610820578063c8c8ebe414610848578063c9567bf914610872578063cf9522fd14610888578063d8aef135146108b25761027c565b80638f77ca1c116101125780638f77ca1c146106ca57806395d89b41146107065780639a7a23d614610730578063a457c2d714610758578063a9059cbb14610794578063afa4f3b2146107d05761027c565b80637c4eac4c146106245780638129fc1c1461064c578063881dce601461066257806389291a8f1461068a5780638da5cb5b146106a05761027c565b806339509351116101e757806362e9ddd4116101ab57806362e9ddd41461054e57806369077be21461057857806370a0823114610594578063715018a6146105d0578063751039fc146105e65780637571336a146105fc5761027c565b8063395093511461045a57806346203856146104965780634c03cac8146104be5780634fbee193146104e8578063583e0568146105245761027c565b806318160ddd1161023957806318160ddd1461036057806323b872dd1461038a57806329d428ca146103c6578063311028af146103f0578063313ce5671461041a578063351c4944146104445761027c565b8063032dc6a21461028057806306fdde03146102a8578063095ea7b3146102d25780630e8d53db1461030e5780630f054c061461034a5761027c565b3661027c57005b5f80fd5b34801561028b575f80fd5b506102a660048036038101906102a19190613574565b6109d4565b005b3480156102b3575f80fd5b506102bc610a3f565b6040516102c9919061363c565b60405180910390f35b3480156102dd575f80fd5b506102f860048036038101906102f391906136b6565b610acf565b604051610305919061370e565b60405180910390f35b348015610319575f80fd5b50610334600480360381019061032f9190613727565b610af1565b604051610341919061370e565b60405180910390f35b348015610355575f80fd5b5061035e610b0e565b005b34801561036b575f80fd5b50610374610b90565b6040516103819190613761565b60405180910390f35b348015610395575f80fd5b506103b060048036038101906103ab919061377a565b610b99565b6040516103bd919061370e565b60405180910390f35b3480156103d1575f80fd5b506103da610bc7565b6040516103e79190613761565b60405180910390f35b3480156103fb575f80fd5b50610404610bcd565b6040516104119190613761565b60405180910390f35b348015610425575f80fd5b5061042e610bd3565b60405161043b91906137e5565b60405180910390f35b34801561044f575f80fd5b50610458610bdb565b005b348015610465575f80fd5b50610480600480360381019061047b91906136b6565b610c00565b60405161048d919061370e565b60405180910390f35b3480156104a1575f80fd5b506104bc60048036038101906104b79190613727565b610c36565b005b3480156104c9575f80fd5b506104d2610ced565b6040516104df9190613761565b60405180910390f35b3480156104f3575f80fd5b5061050e60048036038101906105099190613727565b610cf3565b60405161051b919061370e565b60405180910390f35b34801561052f575f80fd5b50610538610d45565b6040516105459190613859565b60405180910390f35b348015610559575f80fd5b50610562610d69565b60405161056f9190613761565b60405180910390f35b610592600480360381019061058d9190613727565b610d6f565b005b34801561059f575f80fd5b506105ba60048036038101906105b59190613727565b610e49565b6040516105c79190613761565b60405180910390f35b3480156105db575f80fd5b506105e4610e8e565b005b3480156105f1575f80fd5b506105fa610ea1565b005b348015610607575f80fd5b50610622600480360381019061061d919061389c565b610ec5565b005b34801561062f575f80fd5b5061064a60048036038101906106459190613574565b610f25565b005b348015610657575f80fd5b50610660610f96565b005b34801561066d575f80fd5b50610688600480360381019061068391906138da565b6113d9565b005b348015610695575f80fd5b5061069e6114bc565b005b3480156106ab575f80fd5b506106b46115a3565b6040516106c19190613914565b60405180910390f35b3480156106d5575f80fd5b506106f060048036038101906106eb9190613727565b6115cb565b6040516106fd919061370e565b60405180910390f35b348015610711575f80fd5b5061071a6115e8565b604051610727919061363c565b60405180910390f35b34801561073b575f80fd5b506107566004803603810190610751919061389c565b611678565b005b348015610763575f80fd5b5061077e600480360381019061077991906136b6565b61171d565b60405161078b919061370e565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b591906136b6565b611792565b6040516107c7919061370e565b60405180910390f35b3480156107db575f80fd5b506107f660048036038101906107f191906138da565b6117b4565b005b348015610803575f80fd5b5061081e60048036038101906108199190613727565b6117d9565b005b34801561082b575f80fd5b506108466004803603810190610841919061389c565b611a0e565b005b348015610853575f80fd5b5061085c611abc565b6040516108699190613761565b60405180910390f35b34801561087d575f80fd5b50610886611ac2565b005b348015610893575f80fd5b5061089c611b57565b6040516108a99190613761565b60405180910390f35b3480156108bd575f80fd5b506108c6611b5d565b005b3480156108d3575f80fd5b506108ee60048036038101906108e9919061392d565b611bcc565b6040516108fb9190613761565b60405180910390f35b34801561090f575f80fd5b50610918611c4e565b6040516109259190613761565b60405180910390f35b348015610939575f80fd5b50610942611c54565b60405161094f9190613761565b60405180910390f35b348015610963575f80fd5b5061097e60048036038101906109799190613727565b611c5a565b005b34801561098b575f80fd5b50610994611cdc565b6040516109a19190613914565b60405180910390f35b3480156109b5575f80fd5b506109be611d01565b6040516109cb9190613761565b60405180910390f35b6109dc611d07565b601482111580156109ee575060148111155b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a24906139b5565b60405180910390fd5b81601481905550806015819055505050565b606060038054610a4e90613a00565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7a90613a00565b8015610ac55780601f10610a9c57610100808354040283529160200191610ac5565b820191905f5260205f20905b815481529060010190602001808311610aa857829003601f168201915b5050505050905090565b5f80610ad9611d85565b9050610ae6818585611d8c565b600191505092915050565b601c602052805f5260405f205f915054906101000a900460ff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b4e611d85565b73ffffffffffffffffffffffffffffffffffffffff1614610b6d575f80fd5b5f610b7730610e49565b90505f811115610b8d57610b8c303383611f4f565b5b50565b5f600254905090565b5f80610ba3611d85565b9050610bb085828561298e565b610bbb858585611f4f565b60019150509392505050565b60125481565b600c5481565b5f6012905090565b610be3611d07565b6001601360026101000a81548160ff021916908315150217905550565b5f80610c0a611d85565b9050610c2b818585610c1c8589611bcc565b610c269190613a5d565b611d8c565b600191505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c76611d85565b73ffffffffffffffffffffffffffffffffffffffff1614610c95575f80fd5b6001601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60115481565b5f60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60105481565b6011543414610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90613ada565b60405180910390fd5b601c5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3490613b42565b60405180910390fd5b610e4681612a19565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e96611d07565b610e9f5f612cf9565b565b610ea9611d07565b5f610eb2610b90565b905080600d8190555080600e8190555050565b610ecd611d07565b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f65611d85565b73ffffffffffffffffffffffffffffffffffffffff1614610f84575f80fd5b81601181905550806012819055505050565b610f9e611d07565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611007573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102b9190613b74565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d49190613b74565b6040518363ffffffff1660e01b81526004016110f1929190613b9f565b6020604051808303815f875af115801561110d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111319190613b74565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061119c60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612dbc565b6111c860065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610ec5565b6111f5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600c54611d8c565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611291929190613bc6565b6020604051808303815f875af11580156112ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112d19190613c01565b507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71947306113266050600c54612e5a90919063ffffffff16565b5f806113306115a3565b426040518863ffffffff1660e01b815260040161135296959493929190613c65565b60606040518083038185885af115801561136e573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906113939190613cd8565b5050506113d73060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166113d26014600f54612ebf90919063ffffffff16565b611f4f565b565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611419611d85565b73ffffffffffffffffffffffffffffffffffffffff1614611438575f80fd5b5f611441610b90565b90505f61144d30610e49565b90505f6064848461145e9190613d28565b6114689190613d96565b9050808210156114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490613e10565b60405180910390fd5b6114b681612ed4565b50505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114fc611d85565b73ffffffffffffffffffffffffffffffffffffffff161461151b575f80fd5b5f471161155d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155490613e78565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156115a0573d5f803e3d5ffd5b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601b602052805f5260405f205f915054906101000a900460ff1681565b6060600480546115f790613a00565b80601f016020809104026020016040519081016040528092919081815260200182805461162390613a00565b801561166e5780601f106116455761010080835404028352916020019161166e565b820191905f5260205f20905b81548152906001019060200180831161165157829003601f168201915b5050505050905090565b611680611d07565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690613f06565b60405180910390fd5b6117198282612dbc565b5050565b5f80611727611d85565b90505f6117348286611bcc565b905083811015611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613f94565b60405180910390fd5b6117868286868403611d8c565b60019250505092915050565b5f8061179c611d85565b90506117a9818585611f4f565b600191505092915050565b6117bc611d07565b670de0b6b3a7640000816117d09190613d28565b600f8190555050565b601254600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016118369190613914565b602060405180830381865afa158015611851573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118759190613fb2565b10156118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad90614027565b60405180910390fd5b601c5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193790613b42565b60405180910390fd5b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3360085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166012546040518463ffffffff1660e01b81526004016119c193929190614045565b6020604051808303815f875af11580156119dd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a019190613c01565b50611a0b81612a19565b50565b611a16611d07565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ab0919061370e565b60405180910390a25050565b600d5481565b611aca611d07565b60135f9054906101000a900460ff1615611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b10906140c4565b60405180910390fd5b436010819055506001601360016101000a81548160ff021916908315150217905550600160135f6101000a81548160ff021916908315150217905550565b60155481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611b9d611d85565b73ffffffffffffffffffffffffffffffffffffffff1614611bbc575f80fd5b5f6014819055505f601581905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60145481565b600f5481565b611c62611d07565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc790614152565b60405180910390fd5b611cd981612cf9565b50565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b611d0f611d85565b73ffffffffffffffffffffffffffffffffffffffff16611d2d6115a3565b73ffffffffffffffffffffffffffffffffffffffff1614611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7a906141ba565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190614248565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f906142d6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f429190613761565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb490614364565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361202b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612022906143f2565b60405180910390fd5b601360029054906101000a900460ff16156121295760105443111561212857601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156120e85750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90614480565b60405180910390fd5b5b5b5f81036121405761213b83835f613128565b612989565b6121486115a3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121b657506121866115a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121ee57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612228575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122415750600b60149054906101000a900460ff16155b1561266d5760135f9054906101000a900460ff166123345760175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806122f4575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a906144e8565b60405180910390fd5b5b60195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156123d1575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156124d757600d5481111561241b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241290614576565b60405180910390fd5b600e5461242783610e49565b826124329190613a5d565b1115612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a906145de565b60405180910390fd5b60105443036124d2576001601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b61266c565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612574575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156125c357600d548111156125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b59061466c565b60405180910390fd5b61266b565b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661266a57600e5461261d83610e49565b826126289190613a5d565b1115612669576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612660906145de565b60405180910390fd5b5b5b5b5b5f61267730610e49565b90505f80821190508080156126985750601360019054906101000a900460ff165b80156126b15750600b60149054906101000a900460ff16155b8015612704575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612757575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156127aa575060175f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156127ee576001600b60146101000a81548160ff0219169083151502179055506127d383613394565b5f600b60146101000a81548160ff0219169083151502179055505b5f600b60149054906101000a900460ff1615905060175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061289d575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156128a6575f90505b5f81156129795760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561292b57612924606461291660155488612ebf90919063ffffffff16565b61351e90919063ffffffff16565b9050612956565b612953606461294560145488612ebf90919063ffffffff16565b61351e90919063ffffffff16565b90505b5f81111561296a57612969873083613128565b5b8085612976919061468a565b94505b612984878787613128565b505050505b505050565b5f6129998484611bcc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612a135781811015612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc90614707565b60405180910390fd5b612a128484848403611d8c565b5b50505050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8173ffffffffffffffffffffffffffffffffffffffff1663e6a439058460095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401612a9b929190613b9f565b602060405180830381865afa158015612ab6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ada9190613b74565b90505f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bb7578273ffffffffffffffffffffffffffffffffffffffff1663c9c653968560095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401612b6c929190613b9f565b6020604051808303815f875af1158015612b88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bac9190613b74565b915060019050612bf2565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be990614795565b60405180910390fd5b8015612cf35760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb836016546040518363ffffffff1660e01b8152600401612c56929190613bc6565b6020604051808303815f875af1158015612c72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c969190613c01565b508173ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612cdc575f80fd5b505af1158015612cee573d5f803e3d5ffd5b505050505b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f6064821115612e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9690614823565b60405180910390fd5b60648284612ead9190613d28565b612eb79190613d96565b905092915050565b5f8183612ecc9190613d28565b905092915050565b5f600267ffffffffffffffff811115612ef057612eef614841565b5b604051908082528060200260200182016040528015612f1e5781602001602082028036833780820191505090505b50905030815f81518110612f3557612f3461486e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fd8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ffc9190613b74565b816001815181106130105761300f61486e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613075307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d8c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8460085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016130f7959493929190614952565b5f604051808303815f87803b15801561310e575f80fd5b505af1158015613120573d5f803e3d5ffd5b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318d90614364565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fb906143f2565b60405180910390fd5b61320f838383613533565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328990614a1a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161337b9190613761565b60405180910390a361338e848484613538565b50505050565b5f61339e30610e49565b90505f8082036133af57505061351b565b5f6015546014546133c09190613a5d565b0361343a575f821180156133d55750600f5482105b156133e257819050613435565b5f61340b60646133fd60155487612ebf90919063ffffffff16565b61351e90919063ffffffff16565b90508084613419919061468a565b9350600f5484111561342f57600f549150613433565b8391505b505b61350f565b5f8211801561345d575061345a6002600f5461351e90919063ffffffff16565b82105b1561346957505061351b565b5f8211801561348c57506134896002600f5461351e90919063ffffffff16565b82115b80156134995750600f5482105b156134bb576134b46002600f5461351e90919063ffffffff16565b905061350e565b5f6134e460646134d660155487612ebf90919063ffffffff16565b61351e90919063ffffffff16565b905080846134f2919061468a565b9350600f5484111561350857600f54915061350c565b8391505b505b5b61351881612ed4565b50505b50565b5f818361352b9190613d96565b905092915050565b505050565b505050565b5f80fd5b5f819050919050565b61355381613541565b811461355d575f80fd5b50565b5f8135905061356e8161354a565b92915050565b5f806040838503121561358a5761358961353d565b5b5f61359785828601613560565b92505060206135a885828601613560565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156135e95780820151818401526020810190506135ce565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61360e826135b2565b61361881856135bc565b93506136288185602086016135cc565b613631816135f4565b840191505092915050565b5f6020820190508181035f8301526136548184613604565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6136858261365c565b9050919050565b6136958161367b565b811461369f575f80fd5b50565b5f813590506136b08161368c565b92915050565b5f80604083850312156136cc576136cb61353d565b5b5f6136d9858286016136a2565b92505060206136ea85828601613560565b9150509250929050565b5f8115159050919050565b613708816136f4565b82525050565b5f6020820190506137215f8301846136ff565b92915050565b5f6020828403121561373c5761373b61353d565b5b5f613749848285016136a2565b91505092915050565b61375b81613541565b82525050565b5f6020820190506137745f830184613752565b92915050565b5f805f606084860312156137915761379061353d565b5b5f61379e868287016136a2565b93505060206137af868287016136a2565b92505060406137c086828701613560565b9150509250925092565b5f60ff82169050919050565b6137df816137ca565b82525050565b5f6020820190506137f85f8301846137d6565b92915050565b5f819050919050565b5f61382161381c6138178461365c565b6137fe565b61365c565b9050919050565b5f61383282613807565b9050919050565b5f61384382613828565b9050919050565b61385381613839565b82525050565b5f60208201905061386c5f83018461384a565b92915050565b61387b816136f4565b8114613885575f80fd5b50565b5f8135905061389681613872565b92915050565b5f80604083850312156138b2576138b161353d565b5b5f6138bf858286016136a2565b92505060206138d085828601613888565b9150509250929050565b5f602082840312156138ef576138ee61353d565b5b5f6138fc84828501613560565b91505092915050565b61390e8161367b565b82525050565b5f6020820190506139275f830184613905565b92915050565b5f80604083850312156139435761394261353d565b5b5f613950858286016136a2565b9250506020613961858286016136a2565b9150509250929050565b7f466565732063616e6e6f742065786365656420323025000000000000000000005f82015250565b5f61399f6016836135bc565b91506139aa8261396b565b602082019050919050565b5f6020820190508181035f8301526139cc81613993565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613a1757607f821691505b602082108103613a2a57613a296139d3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613a6782613541565b9150613a7283613541565b9250828201905080821115613a8a57613a89613a30565b5b92915050565b7f496e73756666696369656e74204554482062616c616e636500000000000000005f82015250565b5f613ac46018836135bc565b9150613acf82613a90565b602082019050919050565b5f6020820190508181035f830152613af181613ab8565b9050919050565b7f546f6b656e20636f6e74726163742069732077686974656c69737465642e00005f82015250565b5f613b2c601e836135bc565b9150613b3782613af8565b602082019050919050565b5f6020820190508181035f830152613b5981613b20565b9050919050565b5f81519050613b6e8161368c565b92915050565b5f60208284031215613b8957613b8861353d565b5b5f613b9684828501613b60565b91505092915050565b5f604082019050613bb25f830185613905565b613bbf6020830184613905565b9392505050565b5f604082019050613bd95f830185613905565b613be66020830184613752565b9392505050565b5f81519050613bfb81613872565b92915050565b5f60208284031215613c1657613c1561353d565b5b5f613c2384828501613bed565b91505092915050565b5f819050919050565b5f613c4f613c4a613c4584613c2c565b6137fe565b613541565b9050919050565b613c5f81613c35565b82525050565b5f60c082019050613c785f830189613905565b613c856020830188613752565b613c926040830187613c56565b613c9f6060830186613c56565b613cac6080830185613905565b613cb960a0830184613752565b979650505050505050565b5f81519050613cd28161354a565b92915050565b5f805f60608486031215613cef57613cee61353d565b5b5f613cfc86828701613cc4565b9350506020613d0d86828701613cc4565b9250506040613d1e86828701613cc4565b9150509250925092565b5f613d3282613541565b9150613d3d83613541565b9250828202613d4b81613541565b91508282048414831517613d6257613d61613a30565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613da082613541565b9150613dab83613541565b925082613dbb57613dba613d69565b5b828204905092915050565b7f4e6f7420656e6f75676820746f6b656e730000000000000000000000000000005f82015250565b5f613dfa6011836135bc565b9150613e0582613dc6565b602082019050919050565b5f6020820190508181035f830152613e2781613dee565b9050919050565b7f546f6b656e3a206e6f2045544820746f20636c656172000000000000000000005f82015250565b5f613e626016836135bc565b9150613e6d82613e2e565b602082019050919050565b5f6020820190508181035f830152613e8f81613e56565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613ef06039836135bc565b9150613efb82613e96565b604082019050919050565b5f6020820190508181035f830152613f1d81613ee4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613f7e6025836135bc565b9150613f8982613f24565b604082019050919050565b5f6020820190508181035f830152613fab81613f72565b9050919050565b5f60208284031215613fc757613fc661353d565b5b5f613fd484828501613cc4565b91505092915050565b7f496e73756666696369656e7420746f6b656e2062616c616e63652e00000000005f82015250565b5f614011601b836135bc565b915061401c82613fdd565b602082019050919050565b5f6020820190508181035f83015261403e81614005565b9050919050565b5f6060820190506140585f830186613905565b6140656020830185613905565b6140726040830184613752565b949350505050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6140ae6017836135bc565b91506140b98261407a565b602082019050919050565b5f6020820190508181035f8301526140db816140a2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61413c6026836135bc565b9150614147826140e2565b604082019050919050565b5f6020820190508181035f83015261416981614130565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6141a46020836135bc565b91506141af82614170565b602082019050919050565b5f6020820190508181035f8301526141d181614198565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6142326024836135bc565b915061423d826141d8565b604082019050919050565b5f6020820190508181035f83015261425f81614226565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6142c06022836135bc565b91506142cb82614266565b604082019050919050565b5f6020820190508181035f8301526142ed816142b4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61434e6025836135bc565b9150614359826142f4565b604082019050919050565b5f6020820190508181035f83015261437b81614342565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6143dc6023836135bc565b91506143e782614382565b604082019050919050565b5f6020820190508181035f830152614409816143d0565b9050919050565b7f45524332303a207472616e736665722066726f6d2f746f2074686520626c61635f8201527f6b6c697374656420616464726573730000000000000000000000000000000000602082015250565b5f61446a602f836135bc565b915061447582614410565b604082019050919050565b5f6020820190508181035f8301526144978161445e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6144d26016836135bc565b91506144dd8261449e565b602082019050919050565b5f6020820190508181035f8301526144ff816144c6565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6145606035836135bc565b915061456b82614506565b604082019050919050565b5f6020820190508181035f83015261458d81614554565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6145c86013836135bc565b91506145d382614594565b602082019050919050565b5f6020820190508181035f8301526145f5816145bc565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6146566036836135bc565b9150614661826145fc565b604082019050919050565b5f6020820190508181035f8301526146838161464a565b9050919050565b5f61469482613541565b915061469f83613541565b92508282039050818111156146b7576146b6613a30565b5b92915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6146f1601d836135bc565b91506146fc826146bd565b602082019050919050565b5f6020820190508181035f83015261471e816146e5565b9050919050565b7f5468697320636f6e747261637420616c726561647920686173206120706169725f8201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b5f61477f6021836135bc565b915061478a82614725565b604082019050919050565b5f6020820190508181035f8301526147ac81614773565b9050919050565b7f50657263656e74616765206d757374206265206265747765656e203020616e645f8201527f2031303000000000000000000000000000000000000000000000000000000000602082015250565b5f61480d6024836135bc565b9150614818826147b3565b604082019050919050565b5f6020820190508181035f83015261483a81614801565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6148cd8161367b565b82525050565b5f6148de83836148c4565b60208301905092915050565b5f602082019050919050565b5f6149008261489b565b61490a81856148a5565b9350614915836148b5565b805f5b8381101561494557815161492c88826148d3565b9750614937836148ea565b925050600181019050614918565b5085935050505092915050565b5f60a0820190506149655f830188613752565b6149726020830187613c56565b818103604083015261498481866148f6565b90506149936060830185613905565b6149a06080830184613752565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614a046026836135bc565b9150614a0f826149aa565b604082019050919050565b5f6020820190508181035f830152614a31816149f8565b905091905056fea26469706673582212205e8ea38b441376dd0408759158cd11012ba934598cf54b0e949e1605bc746bf764736f6c63430008150033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000052933a44cd86c418b00f7d29532c71c40d845afa

-----Decoded View---------------
Arg [0] : wallet (address): 0x52933A44cd86C418B00F7D29532C71c40d845AFA

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000052933a44cd86c418b00f7d29532c71c40d845afa


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.