ETH Price: $3,254.71 (+3.19%)
Gas: 3 Gwei

Token

DeFi Season (SZN)
 

Overview

Max Total Supply

100,000,000 SZN

Holders

66

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
950,000 SZN

Value
$0.00
0xc26239d7787ff8042b1e878608c1ef31ab3c7b79
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:
DEFISEASON

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.8.15;

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

contract DEFISEASON is Context, IERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 private uniswapV2Router;

    mapping (address => uint) private cd;

    mapping (address => uint256) private _rOwned;

    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) private _isExcludedFromTxLimits;
    mapping (address => bool) private _isBot;

    bool public tradingOpen;
    bool public launched;
    bool private swapping;
    bool private swapEnabled = false;
    bool public cdEnabled = false;

    string private constant _name = "DeFi Season";
    string private constant _symbol = "SZN";

    uint8 private constant _decimals = 18;

    uint256 private constant _tTotal = 1e8 * (10**_decimals);
    uint256 public maxBuy = _tTotal;
    uint256 public maxSell = _tTotal;
    uint256 public maxWallet = _tTotal;
    uint256 public tradingActiveBlock = 0;
    uint256 private _deadBlocks = 1;
    uint256 private _cdBlocks = 1;
    uint256 private constant FEE_DIVISOR = 1000;
    uint256 private _buyLiqFee = 20;
    uint256 private _previousBuyLiqFee = _buyLiqFee;
    uint256 private _buyVaultFee = 30;
    uint256 private _previousBuyVaultFee = _buyVaultFee;
    uint256 private _sellLiqFee = 20;
    uint256 private _previousSellLiqFee = _sellLiqFee;
    uint256 private _sellVaultFee = 30;
    uint256 private _previousSellVaultFee = _sellVaultFee;
    uint256 private tokensForLiq;
    uint256 private tokensForVault;
    uint256 private swapTokensAtAmount = 0;

    address payable private _liquidityWalletAddress;
    address payable private _vaultWalletAddress;
    address private uniswapV2Pair;
    address private DEAD = 0x000000000000000000000000000000000000dEaD;
    address private ZERO = 0x0000000000000000000000000000000000000000;
    
    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity);
    
    constructor (address liquidityWalletAddress, address vaultWalletAddress) {
        _liquidityWalletAddress = payable(liquidityWalletAddress);
        _vaultWalletAddress = payable(vaultWalletAddress);
        _rOwned[_msgSender()] = _tTotal;
        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[DEAD] = true;
        _isExcludedFromTxLimits[owner()] = true;
        _isExcludedFromTxLimits[address(this)] = true;
        _isExcludedFromTxLimits[DEAD] = true;
        emit Transfer(ZERO, _msgSender(), _tTotal);
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public pure override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _rOwned[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        INTERNAL_transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

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

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        INTERNAL_transfer(sender, recipient, amount);
        INTERNAL_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function INTERNAL_approve(address owner, address spender, uint256 amount) private {
        require(owner != ZERO, "ERC20: approve from the zero address");
        require(spender != ZERO, "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function INTERNAL_transfer(address from, address to, uint256 amount) private {
        require(from != ZERO, "ERC20: transfer from the zero address");
        require(to != ZERO, "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        bool takeFee = true;
        bool shouldSwap = false;
        if (from != owner() && to != owner() && to != ZERO && to != DEAD && !swapping) {
            require(!_isBot[from] && !_isBot[to]);

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

            if (cdEnabled) {
                if (to != address(uniswapV2Router) && to != address(uniswapV2Pair)) {
                    require(cd[tx.origin] < block.number - _cdBlocks && cd[to] < block.number - _cdBlocks, "Transfer delay enabled. Try again later.");
                    cd[tx.origin] = block.number;
                    cd[to] = block.number;
                }
            }

            if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromTxLimits[to]) {
                require(amount <= maxBuy, "Transfer amount exceeds the maxBuyAmount.");
                require(balanceOf(to) + amount <= maxWallet, "Exceeds maximum wallet token amount.");
            }
            
            if (to == uniswapV2Pair && from != address(uniswapV2Router) && !_isExcludedFromTxLimits[from]) {
                require(amount <= maxSell, "Transfer amount exceeds the maxSellAmount.");
                shouldSwap = true;
            }
        }

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

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = (contractTokenBalance > swapTokensAtAmount) && shouldSwap;

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

        INTERNAL_tokenTransfer(from, to, amount, takeFee, shouldSwap);
    }

    function INTERNAL_swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiq + tokensForVault;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 5) {
            contractBalance = swapTokensAtAmount * 5;
        }
        
        uint256 liqTokens = contractBalance * tokensForLiq / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liqTokens);
        
        uint256 initialETHBalance = address(this).balance;

        INTERNAL_swapTokensForETH(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        uint256 ethForVault = ethBalance.mul(tokensForVault).div(totalTokensToSwap);
        uint256 ethForLiq = ethBalance - ethForVault;
        
        tokensForLiq = 0;
        tokensForVault = 0;
        
        if(liqTokens > 0 && ethForLiq > 0) {
            INTERNAL_addLiquidity(liqTokens, ethForLiq);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiq, tokensForLiq);
        }
        
        (success,) = address(_vaultWalletAddress).call{value: address(this).balance}("");
    }

    function INTERNAL_swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        INTERNAL_approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function INTERNAL_addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        INTERNAL_approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            _liquidityWalletAddress,
            block.timestamp
        );
    }
        
    function INTERNAL_sendETHToFee(uint256 amount) private {
        _vaultWalletAddress.transfer(amount);
    }
    
    function initialize() public onlyOwner {
        require(!launched,"Trading is already open");
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        INTERNAL_approve(address(this), address(uniswapV2Router), _tTotal);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        swapEnabled = true;
        cdEnabled = true;
        maxBuy = 1e6 * (10**_decimals);
        maxSell = 1e6 * (10**_decimals);
        maxWallet = 2e6 * (10**_decimals);
        swapTokensAtAmount = 5e4 * (10**_decimals);
        launched = true;
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
    }
    
    function letsGo() public onlyOwner {
        require(!tradingOpen && launched,"Trading is already open");
        tradingOpen = true;
        tradingActiveBlock = block.number;
    }

    function CONFIG_setMaxBuy(uint256 amount) public onlyOwner {
        require(amount >= 1e4 * (10**_decimals), "Max buy cannot be lower than 0.01% total supply.");
        maxBuy = amount;
    }

    function CONFIG_setMaxSell(uint256 amount) public onlyOwner {
        require(amount >= 1e4 * (10**_decimals), "Max sell cannot be lower than 0.01% total supply.");
        maxSell = amount;
    }
    
    function CONFIG_setMaxWallet(uint256 amount) public onlyOwner {
        require(amount >= 1e5 * (10**_decimals), "Max wallet cannot be lower than 0.1% total supply.");
        maxWallet = amount;
    }
    
    function CONFIG_setSwapTokensAtAmount(uint256 amount) public onlyOwner {
        require(amount >= 1e3 * (10**_decimals), "Swap amount cannot be lower than 0.001% total supply.");
        require(amount <= 5e5 * (10**_decimals), "Swap amount cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = amount;
    }

    function CONFIG_setLiquidityWalletAddress(address walletAddress) public onlyOwner {
        require(walletAddress != ZERO, "liquidityWallet address cannot be 0");
        _isExcludedFromFees[_liquidityWalletAddress] = false;
        _isExcludedFromTxLimits[_liquidityWalletAddress] = false;
        _liquidityWalletAddress = payable(walletAddress);
        _isExcludedFromFees[_liquidityWalletAddress] = true;
        _isExcludedFromTxLimits[_liquidityWalletAddress] = true;
    }

    function CONFIG_setVaultWalletAddress(address walletAddress) public onlyOwner {
        require(walletAddress != ZERO, "vaultWallet address cannot be 0");
        _isExcludedFromFees[_vaultWalletAddress] = false;
        _isExcludedFromTxLimits[_vaultWalletAddress] = false;
        _vaultWalletAddress = payable(walletAddress);
        _isExcludedFromFees[_vaultWalletAddress] = true;
        _isExcludedFromTxLimits[_vaultWalletAddress] = true;
    }

    function CONFIG_setExcludedFromFees(address[] memory accounts, bool isEx) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = isEx;
        }
    }
    
    function CONFIG_setExcludedFromTxLimits(address[] memory accounts, bool isEx) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            _isExcludedFromTxLimits[accounts[i]] = isEx;
        }
    }
    
    function CONFIG_setBots(address[] memory accounts, bool exempt) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            _isBot[accounts[i]] = exempt;
        }
    }

    function CONFIG_setBuyFees(uint256 buyLiquidityFee, uint256 buyVaultFee) public onlyOwner {
        require(buyLiquidityFee + buyVaultFee <= 200, "Must keep buy taxes below 20%");
        _buyLiqFee = buyLiquidityFee;
        _buyVaultFee = buyVaultFee;
    }

    function CONFIG_setSellFees(uint256 sellLiquidityFee, uint256 sellVaultFee) public onlyOwner {
        require(sellLiquidityFee + sellVaultFee <= 200, "Must keep sell taxes below 20%");
        _sellLiqFee = sellLiquidityFee;
        _sellVaultFee = sellVaultFee;
    }

    function CONFIG_setCDEnabled(bool onoff) public onlyOwner {
        cdEnabled = onoff;
    }

    function CONFIG_setSwapEnabled(bool onoff) public onlyOwner {
        swapEnabled = onoff;
    }

    function CONFIG_setDeadBlocks(uint256 blocks) public onlyOwner {
        _deadBlocks = blocks;
    }

    function CONFIG_setCDBlocks(uint256 blocks) public onlyOwner {
        _cdBlocks = blocks;
    }

    function INTERNAL_removeFees() private {
        if(_buyLiqFee == 0 && _buyVaultFee == 0 && _sellLiqFee == 0 && _sellVaultFee == 0) return;
        
        _previousBuyLiqFee = _buyLiqFee;
        _previousBuyVaultFee = _buyVaultFee;
        _previousSellLiqFee = _sellLiqFee;
        _previousSellVaultFee = _sellVaultFee;
        
        _buyLiqFee = 0;
        _buyVaultFee = 0;
        _sellLiqFee = 0;
        _sellVaultFee = 0;
    }
    
    function INTERNAL_restoreFees() private {
        _buyLiqFee = _previousBuyLiqFee;
        _buyVaultFee = _previousBuyVaultFee;
        _sellLiqFee = _previousSellLiqFee;
        _sellVaultFee = _previousSellVaultFee;
    }
        
    function INTERNAL_tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee, bool isSell) private {
        if(!takeFee) {
            INTERNAL_removeFees();
        } else {
            amount = INTERNAL_takeFees(sender, amount, isSell);
        }

        INTERNAL_vanillaTransfer(sender, recipient, amount);
        
        if(!takeFee) {
            INTERNAL_restoreFees();
        }
    }

    function INTERNAL_vanillaTransfer(address sender, address recipient, uint256 tAmount) private {
        _rOwned[sender] = _rOwned[sender].sub(tAmount);
        _rOwned[recipient] = _rOwned[recipient].add(tAmount);
        emit Transfer(sender, recipient, tAmount);
    }

    function INTERNAL_takeFees(address sender, uint256 amount, bool isSell) private returns (uint256) {
        uint256 _totalFees;
        uint256 liqFee;
        uint256 vaultFee;
        if(tradingActiveBlock + _deadBlocks >= block.number) {
            _totalFees = 999;
            liqFee = 10;
            vaultFee = 989;
        } else {
            _totalFees = INTERNAL_getTotalFees(isSell);
            if (isSell) {
                liqFee = _sellLiqFee;
                vaultFee = _sellVaultFee;
            } else {
                liqFee = _buyLiqFee;
                vaultFee = _buyVaultFee;
            }
        }

        uint256 fees = amount.mul(_totalFees).div(FEE_DIVISOR);
        tokensForLiq += fees * liqFee / _totalFees;
        tokensForVault += fees * vaultFee / _totalFees;
            
        if(fees > 0) {
            INTERNAL_vanillaTransfer(sender, address(this), fees);
        }
            
        return amount -= fees;
    }

    function INTERNAL_getTotalFees(bool isSell) private view returns(uint256) {
        if (isSell) {
            return _sellLiqFee + _sellVaultFee;
        }
        return _buyLiqFee + _buyVaultFee;
    }

    receive() external payable {}
    fallback() external payable {}
    
    function CONFIG_unclogContract() public {
        require(_vaultWalletAddress == msg.sender);      
        uint256 contractBalance = balanceOf(address(this));
        INTERNAL_swapTokensForETH(contractBalance);
    }
    
    function CONFIG_distributeFeesAfterUnclog() public {
        require(_vaultWalletAddress == msg.sender);      
        uint256 contractETHBalance = address(this).balance;
        INTERNAL_sendETHToFee(contractETHBalance);
    }

    function CONFIG_rescueStuckETH() public {
        require(_vaultWalletAddress == msg.sender);      
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }

    function CONFIG_rescueStuckTokens(address tkn) public {
        require(_vaultWalletAddress == msg.sender);      
        require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
        uint amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }

    function CONFIG_removeTradingLimits() public onlyOwner {
        maxBuy = _tTotal;
        maxSell = _tTotal;
        maxWallet = _tTotal;
        cdEnabled = false;
    }

}

File 2 of 8 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 3 of 8 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 4 of 8 : 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 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 5 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

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

File 6 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

File 8 of 8 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"liquidityWalletAddress","type":"address"},{"internalType":"address","name":"vaultWalletAddress","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"CONFIG_distributeFeesAfterUnclog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"CONFIG_removeTradingLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"CONFIG_rescueStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"CONFIG_rescueStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"CONFIG_setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"buyVaultFee","type":"uint256"}],"name":"CONFIG_setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blocks","type":"uint256"}],"name":"CONFIG_setCDBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"CONFIG_setCDEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blocks","type":"uint256"}],"name":"CONFIG_setDeadBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"CONFIG_setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"CONFIG_setExcludedFromTxLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"CONFIG_setLiquidityWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CONFIG_setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CONFIG_setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CONFIG_setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellVaultFee","type":"uint256"}],"name":"CONFIG_setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"CONFIG_setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CONFIG_setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"CONFIG_setVaultWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"CONFIG_unclogContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cdEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"letsGo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","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":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526008805464ffff00000019169055620000206012600a620003b5565b62000030906305f5e100620003cd565b600955620000416012600a620003b5565b62000051906305f5e100620003cd565b600a556012600a620000649190620003b5565b62000074906305f5e100620003cd565b600b556000600c8190556001600d819055600e556014600f8190556010819055601e60118190556012819055601382905590805560158190556016819055601991909155601d80546001600160a01b031990811661dead179091558154169055348015620000e157600080fd5b50604051620032d5380380620032d583398101604081905262000104916200040c565b6200010f3362000250565b601a80546001600160a01b038085166001600160a01b031992831617909255601b8054928416929091169190911790556200014d6012600a620003b5565b6200015d906305f5e100620003cd565b3360008181526003602090815260408083209490945581546001600160a01b039081168352600582528483208054600160ff199182168117909255308086528786208054831684179055601d80548516875288872080548416851790558654851687526006909552878620805483168417905585528685208054821683179055925482168452949092208054909116909317909255601e549091167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002276012600a620003b5565b62000237906305f5e100620003cd565b60405190815260200160405180910390a3505062000444565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002f7578160001904821115620002db57620002db620002a0565b80851615620002e957918102915b93841c9390800290620002bb565b509250929050565b6000826200031057506001620003af565b816200031f57506000620003af565b8160018114620003385760028114620003435762000363565b6001915050620003af565b60ff841115620003575762000357620002a0565b50506001821b620003af565b5060208310610133831016604e8410600b841016171562000388575081810a620003af565b620003948383620002b6565b8060001904821115620003ab57620003ab620002a0565b0290505b92915050565b6000620003c660ff841683620002ff565b9392505050565b6000816000190483118215151615620003ea57620003ea620002a0565b500290565b80516001600160a01b03811681146200040757600080fd5b919050565b600080604083850312156200042057600080fd5b6200042b83620003ef565b91506200043b60208401620003ef565b90509250929050565b612e8180620004546000396000f3fe6080604052600436106102325760003560e01c806394c8d8721161012d578063c8c6b7ab116100b0578063f3af859911610077578063f3af8599146106c1578063f68748e3146106e1578063f6f70d6f14610701578063f8b45b0514610721578063f92beaa414610737578063ffb54a991461074c57005b8063c8c6b7ab14610605578063dd62ed3e14610625578063ee40166e1461066b578063f1311fc014610681578063f2fde38b146106a157005b8063af2facdc116100f4578063af2facdc1461056d578063b21a29151461058d578063b6ba8264146105ad578063b8eb3546146105cf578063b982c0eb146105e557005b806394c8d872146104c157806395d89b41146104e1578063a47d75b11461050d578063a9059cbb1461052d578063ad9f2aef1461054d57005b8063313ce567116101b5578063715018a61161017c578063715018a6146104305780638091f3bf146104455780638129fc1c146104645780638d24ea8a146104795780638da5cb5b1461049957005b8063313ce56714610388578063453645e2146103a457806352f616ab146103c457806370a08231146103e457806370db69d61461041a57005b8063107c0778116101f9578063107c07781461030657806318160ddd1461031b5780631cb6950c1461033e57806323b872dd14610353578063306963181461037357005b806305469b3b1461023b57806306fdde031461025b578063095ea7b3146102a157806309e7a276146102d15780631058bec8146102f157005b3661023957005b005b34801561024757600080fd5b5061023961025636600461287e565b610766565b34801561026757600080fd5b5060408051808201909152600b81526a2232a3349029b2b0b9b7b760a91b60208201525b6040516102989190612897565b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612911565b610821565b6040519015158152602001610298565b3480156102dd57600080fd5b506102396102ec36600461287e565b610838565b3480156102fd57600080fd5b50610239610867565b34801561031257600080fd5b50610239610904565b34801561032757600080fd5b50610330610968565b604051908152602001610298565b34801561034a57600080fd5b50610239610989565b34801561035f57600080fd5b506102c161036e36600461293d565b610a1c565b34801561037f57600080fd5b50610239610a85565b34801561039457600080fd5b5060405160128152602001610298565b3480156103b057600080fd5b506102396103bf36600461287e565b610aa9565b3480156103d057600080fd5b506102396103df36600461287e565b610be2565b3480156103f057600080fd5b506103306103ff36600461297e565b6001600160a01b031660009081526003602052604090205490565b34801561042657600080fd5b5061033060095481565b34801561043c57600080fd5b50610239610c92565b34801561045157600080fd5b506008546102c190610100900460ff1681565b34801561047057600080fd5b50610239610cc8565b34801561048557600080fd5b506102396104943660046129b4565b6110a8565b3480156104a557600080fd5b506000546040516001600160a01b039091168152602001610298565b3480156104cd57600080fd5b506102396104dc36600461287e565b6110f2565b3480156104ed57600080fd5b5060408051808201909152600381526229ad2760e91b602082015261028b565b34801561051957600080fd5b506102396105283660046129e7565b611121565b34801561053957600080fd5b506102c1610548366004612911565b6111b7565b34801561055957600080fd5b506102396105683660046129e7565b6111c4565b34801561057957600080fd5b5061023961058836600461297e565b611255565b34801561059957600080fd5b506102396105a836600461297e565b611367565b3480156105b957600080fd5b506008546102c190640100000000900460ff1681565b3480156105db57600080fd5b50610330600a5481565b3480156105f157600080fd5b50610239610600366004612abe565b611501565b34801561061157600080fd5b506102396106203660046129e7565b611590565b34801561063157600080fd5b50610330610640366004612ae0565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561067757600080fd5b50610330600c5481565b34801561068d57600080fd5b5061023961069c3660046129b4565b611621565b3480156106ad57600080fd5b506102396106bc36600461297e565b611669565b3480156106cd57600080fd5b506102396106dc36600461297e565b611701565b3480156106ed57600080fd5b506102396106fc366004612abe565b611807565b34801561070d57600080fd5b5061023961071c36600461287e565b611896565b34801561072d57600080fd5b50610330600b5481565b34801561074357600080fd5b50610239611945565b34801561075857600080fd5b506008546102c19060ff1681565b6000546001600160a01b031633146107995760405162461bcd60e51b815260040161079090612b19565b60405180910390fd5b6107a56012600a612c48565b6107b290620186a0612c57565b81101561081c5760405162461bcd60e51b815260206004820152603260248201527f4d61782077616c6c65742063616e6e6f74206265206c6f776572207468616e2060448201527118171892903a37ba30b61039bab838363c9760711b6064820152608401610790565b600b55565b600061082e338484611975565b5060015b92915050565b6000546001600160a01b031633146108625760405162461bcd60e51b815260040161079090612b19565b600e55565b6000546001600160a01b031633146108915760405162461bcd60e51b815260040161079090612b19565b60085460ff161580156108ab5750600854610100900460ff165b6108f15760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b99030b63932b0b23c9037b832b760491b6044820152606401610790565b6008805460ff1916600117905543600c55565b601b546001600160a01b0316331461091b57600080fd5b604051600090339047908381818185875af1925050503d806000811461095d576040519150601f19603f3d011682016040523d82523d6000602084013e610962565b606091505b50505050565b60006109766012600a612c48565b610984906305f5e100612c57565b905090565b6000546001600160a01b031633146109b35760405162461bcd60e51b815260040161079090612b19565b6109bf6012600a612c48565b6109cd906305f5e100612c57565b6009556109dc6012600a612c48565b6109ea906305f5e100612c57565b600a9081556109fb90601290612c48565b610a09906305f5e100612c57565b600b556008805464ff0000000019169055565b6000610a29848484611aaa565b610a7b8433610a7685604051806060016040528060288152602001612e24602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190612189565b611975565b5060019392505050565b601b546001600160a01b03163314610a9c57600080fd5b47610aa6816121b5565b50565b6000546001600160a01b03163314610ad35760405162461bcd60e51b815260040161079090612b19565b610adf6012600a612c48565b610aeb906103e8612c57565b811015610b585760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610790565b610b646012600a612c48565b610b71906207a120612c57565b811115610bdd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610790565b601955565b6000546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161079090612b19565b610c186012600a612c48565b610c2490612710612c57565b811015610c8d5760405162461bcd60e51b815260206004820152603160248201527f4d61782073656c6c2063616e6e6f74206265206c6f776572207468616e20302e604482015270181892903a37ba30b61039bab838363c9760791b6064820152608401610790565b600a55565b6000546001600160a01b03163314610cbc5760405162461bcd60e51b815260040161079090612b19565b610cc660006121ef565b565b6000546001600160a01b03163314610cf25760405162461bcd60e51b815260040161079090612b19565b600854610100900460ff1615610d445760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b99030b63932b0b23c9037b832b760491b6044820152606401610790565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610d8c3082610d7e6012600a612c48565b610a76906305f5e100612c57565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dee9190612c76565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5f9190612c76565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610eac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed09190612c76565b601c80546001600160a01b039283166001600160a01b03199091161790556001541663f305d7194730610f18816001600160a01b031660009081526003602052604090205490565b600080610f2d6000546001600160a01b031690565b426040518863ffffffff1660e01b8152600401610f4f96959493929190612c93565b60606040518083038185885af1158015610f6d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f929190612cce565b50506008805464ffff000000191664010100000017905550610fb66012600a612c48565b610fc390620f4240612c57565b600955610fd26012600a612c48565b610fdf90620f4240612c57565b600a908155610ff090601290612c48565b610ffd90621e8480612c57565b600b5561100c6012600a612c48565b6110189061c350612c57565b6019556008805461ff001916610100179055601c5460015460405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015611080573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a49190612cfc565b5050565b6000546001600160a01b031633146110d25760405162461bcd60e51b815260040161079090612b19565b600880549115156401000000000264ff0000000019909216919091179055565b6000546001600160a01b0316331461111c5760405162461bcd60e51b815260040161079090612b19565b600d55565b6000546001600160a01b0316331461114b5760405162461bcd60e51b815260040161079090612b19565b60005b82518110156111b257816005600085848151811061116e5761116e612d19565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806111aa81612d2f565b91505061114e565b505050565b600061082e338484611aaa565b6000546001600160a01b031633146111ee5760405162461bcd60e51b815260040161079090612b19565b60005b82518110156111b257816006600085848151811061121157611211612d19565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061124d81612d2f565b9150506111f1565b6000546001600160a01b0316331461127f5760405162461bcd60e51b815260040161079090612b19565b601e546001600160a01b03908116908216036112e95760405162461bcd60e51b815260206004820152602360248201527f6c697175696469747957616c6c657420616464726573732063616e6e6f74206260448201526206520360ec1b6064820152608401610790565b601a80546001600160a01b039081166000908152600560208181526040808420805460ff19908116909155865486168552600680845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b601b546001600160a01b0316331461137e57600080fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156113c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e99190612d48565b116114225760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610790565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611469573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148d9190612d48565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156114dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b29190612cfc565b6000546001600160a01b0316331461152b5760405162461bcd60e51b815260040161079090612b19565b60c86115378284612d61565b11156115855760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206275792074617865732062656c6f77203230250000006044820152606401610790565b600f91909155601155565b6000546001600160a01b031633146115ba5760405162461bcd60e51b815260040161079090612b19565b60005b82518110156111b25781600760008584815181106115dd576115dd612d19565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061161981612d2f565b9150506115bd565b6000546001600160a01b0316331461164b5760405162461bcd60e51b815260040161079090612b19565b6008805491151563010000000263ff00000019909216919091179055565b6000546001600160a01b031633146116935760405162461bcd60e51b815260040161079090612b19565b6001600160a01b0381166116f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610790565b610aa6816121ef565b6000546001600160a01b0316331461172b5760405162461bcd60e51b815260040161079090612b19565b601e546001600160a01b03908116908216036117895760405162461bcd60e51b815260206004820152601f60248201527f7661756c7457616c6c657420616464726573732063616e6e6f742062652030006044820152606401610790565b601b80546001600160a01b039081166000908152600560208181526040808420805460ff19908116909155865486168552600680845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b6000546001600160a01b031633146118315760405162461bcd60e51b815260040161079090612b19565b60c861183d8284612d61565b111561188b5760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b6565702073656c6c2074617865732062656c6f772032302500006044820152606401610790565b601391909155601555565b6000546001600160a01b031633146118c05760405162461bcd60e51b815260040161079090612b19565b6118cc6012600a612c48565b6118d890612710612c57565b8110156119405760405162461bcd60e51b815260206004820152603060248201527f4d6178206275792063616e6e6f74206265206c6f776572207468616e20302e3060448201526f1892903a37ba30b61039bab838363c9760811b6064820152608401610790565b600955565b601b546001600160a01b0316331461195c57600080fd5b30600090815260036020526040902054610aa68161223f565b601e546001600160a01b03908116908416036119df5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610790565b601e546001600160a01b0390811690831603611a485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610790565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601e546001600160a01b0390811690841603611b165760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610790565b601e546001600160a01b0390811690831603611b805760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610790565b60008111611be25760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610790565b60016000611bf86000546001600160a01b031690565b6001600160a01b0316856001600160a01b031614158015611c2757506000546001600160a01b03858116911614155b8015611c415750601e546001600160a01b03858116911614155b8015611c5b5750601d546001600160a01b03858116911614155b8015611c70575060085462010000900460ff16155b15612066576001600160a01b03851660009081526007602052604090205460ff16158015611cb757506001600160a01b03841660009081526007602052604090205460ff16155b611cc057600080fd5b60085460ff16611d55576001600160a01b03851660009081526005602052604090205460ff1680611d0957506001600160a01b03841660009081526005602052604090205460ff165b611d555760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e00000000006044820152606401610790565b600854640100000000900460ff1615611e68576001546001600160a01b03858116911614801590611d945750601c546001600160a01b03858116911614155b15611e6857600e54611da69043612d79565b32600090815260026020526040902054108015611de65750600e54611dcb9043612d79565b6001600160a01b038516600090815260026020526040902054105b611e435760405162461bcd60e51b815260206004820152602860248201527f5472616e736665722064656c617920656e61626c65642e20547279206167616960448201526737103630ba32b91760c11b6064820152608401610790565b3260009081526002602052604080822043908190556001600160a01b03871683529120555b601c546001600160a01b038681169116148015611e9357506001546001600160a01b03858116911614155b8015611eb857506001600160a01b03841660009081526006602052604090205460ff16155b15611fa857600954831115611f215760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b6064820152608401610790565b600b5483611f44866001600160a01b031660009081526003602052604090205490565b611f4e9190612d61565b1115611fa85760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610790565b601c546001600160a01b038581169116148015611fd357506001546001600160a01b03868116911614155b8015611ff857506001600160a01b03851660009081526006602052604090205460ff16155b1561206657600a548311156120625760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b6064820152608401610790565b5060015b6001600160a01b03851660009081526005602052604090205460ff16806120a557506001600160a01b03841660009081526005602052604090205460ff165b156120af57600091505b3060009081526003602052604081205490506000601954821180156120d15750825b90508080156120e957506008546301000000900460ff165b80156120fe575060085462010000900460ff16155b801561212357506001600160a01b03871660009081526005602052604090205460ff16155b801561214857506001600160a01b03861660009081526005602052604090205460ff16155b15612173576008805462ff0000191662010000179055612166612399565b6008805462ff0000191690555b6121808787878787612548565b50505050505050565b600081848411156121ad5760405162461bcd60e51b81526004016107909190612897565b505050900390565b601b546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156110a4573d6000803e3d6000fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061227457612274612d19565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156122cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122f19190612c76565b8160018151811061230457612304612d19565b6001600160a01b03928316602091820292909201015260015461232a9130911684611975565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac94790612363908590600090869030904290600401612d90565b600060405180830381600087803b15801561237d57600080fd5b505af1158015612391573d6000803e3d6000fd5b505050505050565b30600090815260036020526040812054905060006018546017546123bd9190612d61565b905060008215806123cc575081155b156123d657505050565b6019546123e4906005612c57565b8311156123fc576019546123f9906005612c57565b92505b60006002836017548661240f9190612c57565b6124199190612e01565b6124239190612e01565b90506000612431858361259c565b90504761243d8261223f565b6000612449478361259c565b9050600061246c87612466601854856125af90919063ffffffff16565b906125bb565b9050600061247a8284612d79565b60006017819055601855905085158015906124955750600081115b156124e8576124a486826125c7565b601754604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b601b546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612535576040519150601f19603f3d011682016040523d82523d6000602084013e61253a565b606091505b505050505050505050505050565b8161255a57612555612662565b612568565b6125658584836126bd565b92505b6125738585856127a4565b8161259557612595601054600f55601254601155601454601355601654601555565b5050505050565b60006125a88284612d79565b9392505050565b60006125a88284612c57565b60006125a88284612e01565b6001546125df9030906001600160a01b031684611975565b600154601a5460405163f305d71960e01b81526001600160a01b039283169263f305d71992859261261f9230928992600092839216904290600401612c93565b60606040518083038185885af115801561263d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906125959190612cce565b600f541580156126725750601154155b801561267e5750601354155b801561268a5750601554155b1561269157565b600f80546010556011805460125560138054601455601580546016556000938490559183905582905555565b60008060008043600d54600c546126d49190612d61565b106126eb57506103e79150600a90506103dd612712565b6126f48561284a565b92508415612709575050601354601554612712565b5050600f546011545b60006127246103e861246689876125af565b9050836127318483612c57565b61273b9190612e01565b6017600082825461274c9190612d61565b9091555084905061275d8383612c57565b6127679190612e01565b601860008282546127789190612d61565b9091555050801561278e5761278e8830836127a4565b6127988188612d79565b98975050505050505050565b6001600160a01b0383166000908152600360205260409020546127c7908261259c565b6001600160a01b0380851660009081526003602052604080822093909355908416815220546127f69082612872565b6001600160a01b0380841660008181526003602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611a9d9085815260200190565b60008115612862576015546013546108329190612d61565b601154600f546108329190612d61565b60006125a88284612d61565b60006020828403121561289057600080fd5b5035919050565b600060208083528351808285015260005b818110156128c4578581018301518582016040015282016128a8565b818111156128d6576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610aa657600080fd5b803561290c816128ec565b919050565b6000806040838503121561292457600080fd5b823561292f816128ec565b946020939093013593505050565b60008060006060848603121561295257600080fd5b833561295d816128ec565b9250602084013561296d816128ec565b929592945050506040919091013590565b60006020828403121561299057600080fd5b81356125a8816128ec565b8015158114610aa657600080fd5b803561290c8161299b565b6000602082840312156129c657600080fd5b81356125a88161299b565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156129fa57600080fd5b823567ffffffffffffffff80821115612a1257600080fd5b818501915085601f830112612a2657600080fd5b8135602082821115612a3a57612a3a6129d1565b8160051b604051601f19603f83011681018181108682111715612a5f57612a5f6129d1565b604052928352818301935084810182019289841115612a7d57600080fd5b948201945b83861015612aa257612a9386612901565b85529482019493820193612a82565b9650612ab190508782016129a9565b9450505050509250929050565b60008060408385031215612ad157600080fd5b50508035926020909101359150565b60008060408385031215612af357600080fd5b8235612afe816128ec565b91506020830135612b0e816128ec565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115612b9f578160001904821115612b8557612b85612b4e565b80851615612b9257918102915b93841c9390800290612b69565b509250929050565b600082612bb657506001610832565b81612bc357506000610832565b8160018114612bd95760028114612be357612bff565b6001915050610832565b60ff841115612bf457612bf4612b4e565b50506001821b610832565b5060208310610133831016604e8410600b8410161715612c22575081810a610832565b612c2c8383612b64565b8060001904821115612c4057612c40612b4e565b029392505050565b60006125a860ff841683612ba7565b6000816000190483118215151615612c7157612c71612b4e565b500290565b600060208284031215612c8857600080fd5b81516125a8816128ec565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600080600060608486031215612ce357600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215612d0e57600080fd5b81516125a88161299b565b634e487b7160e01b600052603260045260246000fd5b600060018201612d4157612d41612b4e565b5060010190565b600060208284031215612d5a57600080fd5b5051919050565b60008219821115612d7457612d74612b4e565b500190565b600082821015612d8b57612d8b612b4e565b500390565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612de05784516001600160a01b031683529383019391830191600101612dbb565b50506001600160a01b03969096166060850152505050608001529392505050565b600082612e1e57634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220bd5dbd02ce46f286038859a3b4116652e77bf0c7d42fbca34662245f4ca01fa164736f6c634300080f003300000000000000000000000003107bc93978fcd40d6a1ac1aded03e58768375800000000000000000000000003107bc93978fcd40d6a1ac1aded03e587683758

Deployed Bytecode

0x6080604052600436106102325760003560e01c806394c8d8721161012d578063c8c6b7ab116100b0578063f3af859911610077578063f3af8599146106c1578063f68748e3146106e1578063f6f70d6f14610701578063f8b45b0514610721578063f92beaa414610737578063ffb54a991461074c57005b8063c8c6b7ab14610605578063dd62ed3e14610625578063ee40166e1461066b578063f1311fc014610681578063f2fde38b146106a157005b8063af2facdc116100f4578063af2facdc1461056d578063b21a29151461058d578063b6ba8264146105ad578063b8eb3546146105cf578063b982c0eb146105e557005b806394c8d872146104c157806395d89b41146104e1578063a47d75b11461050d578063a9059cbb1461052d578063ad9f2aef1461054d57005b8063313ce567116101b5578063715018a61161017c578063715018a6146104305780638091f3bf146104455780638129fc1c146104645780638d24ea8a146104795780638da5cb5b1461049957005b8063313ce56714610388578063453645e2146103a457806352f616ab146103c457806370a08231146103e457806370db69d61461041a57005b8063107c0778116101f9578063107c07781461030657806318160ddd1461031b5780631cb6950c1461033e57806323b872dd14610353578063306963181461037357005b806305469b3b1461023b57806306fdde031461025b578063095ea7b3146102a157806309e7a276146102d15780631058bec8146102f157005b3661023957005b005b34801561024757600080fd5b5061023961025636600461287e565b610766565b34801561026757600080fd5b5060408051808201909152600b81526a2232a3349029b2b0b9b7b760a91b60208201525b6040516102989190612897565b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612911565b610821565b6040519015158152602001610298565b3480156102dd57600080fd5b506102396102ec36600461287e565b610838565b3480156102fd57600080fd5b50610239610867565b34801561031257600080fd5b50610239610904565b34801561032757600080fd5b50610330610968565b604051908152602001610298565b34801561034a57600080fd5b50610239610989565b34801561035f57600080fd5b506102c161036e36600461293d565b610a1c565b34801561037f57600080fd5b50610239610a85565b34801561039457600080fd5b5060405160128152602001610298565b3480156103b057600080fd5b506102396103bf36600461287e565b610aa9565b3480156103d057600080fd5b506102396103df36600461287e565b610be2565b3480156103f057600080fd5b506103306103ff36600461297e565b6001600160a01b031660009081526003602052604090205490565b34801561042657600080fd5b5061033060095481565b34801561043c57600080fd5b50610239610c92565b34801561045157600080fd5b506008546102c190610100900460ff1681565b34801561047057600080fd5b50610239610cc8565b34801561048557600080fd5b506102396104943660046129b4565b6110a8565b3480156104a557600080fd5b506000546040516001600160a01b039091168152602001610298565b3480156104cd57600080fd5b506102396104dc36600461287e565b6110f2565b3480156104ed57600080fd5b5060408051808201909152600381526229ad2760e91b602082015261028b565b34801561051957600080fd5b506102396105283660046129e7565b611121565b34801561053957600080fd5b506102c1610548366004612911565b6111b7565b34801561055957600080fd5b506102396105683660046129e7565b6111c4565b34801561057957600080fd5b5061023961058836600461297e565b611255565b34801561059957600080fd5b506102396105a836600461297e565b611367565b3480156105b957600080fd5b506008546102c190640100000000900460ff1681565b3480156105db57600080fd5b50610330600a5481565b3480156105f157600080fd5b50610239610600366004612abe565b611501565b34801561061157600080fd5b506102396106203660046129e7565b611590565b34801561063157600080fd5b50610330610640366004612ae0565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561067757600080fd5b50610330600c5481565b34801561068d57600080fd5b5061023961069c3660046129b4565b611621565b3480156106ad57600080fd5b506102396106bc36600461297e565b611669565b3480156106cd57600080fd5b506102396106dc36600461297e565b611701565b3480156106ed57600080fd5b506102396106fc366004612abe565b611807565b34801561070d57600080fd5b5061023961071c36600461287e565b611896565b34801561072d57600080fd5b50610330600b5481565b34801561074357600080fd5b50610239611945565b34801561075857600080fd5b506008546102c19060ff1681565b6000546001600160a01b031633146107995760405162461bcd60e51b815260040161079090612b19565b60405180910390fd5b6107a56012600a612c48565b6107b290620186a0612c57565b81101561081c5760405162461bcd60e51b815260206004820152603260248201527f4d61782077616c6c65742063616e6e6f74206265206c6f776572207468616e2060448201527118171892903a37ba30b61039bab838363c9760711b6064820152608401610790565b600b55565b600061082e338484611975565b5060015b92915050565b6000546001600160a01b031633146108625760405162461bcd60e51b815260040161079090612b19565b600e55565b6000546001600160a01b031633146108915760405162461bcd60e51b815260040161079090612b19565b60085460ff161580156108ab5750600854610100900460ff165b6108f15760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b99030b63932b0b23c9037b832b760491b6044820152606401610790565b6008805460ff1916600117905543600c55565b601b546001600160a01b0316331461091b57600080fd5b604051600090339047908381818185875af1925050503d806000811461095d576040519150601f19603f3d011682016040523d82523d6000602084013e610962565b606091505b50505050565b60006109766012600a612c48565b610984906305f5e100612c57565b905090565b6000546001600160a01b031633146109b35760405162461bcd60e51b815260040161079090612b19565b6109bf6012600a612c48565b6109cd906305f5e100612c57565b6009556109dc6012600a612c48565b6109ea906305f5e100612c57565b600a9081556109fb90601290612c48565b610a09906305f5e100612c57565b600b556008805464ff0000000019169055565b6000610a29848484611aaa565b610a7b8433610a7685604051806060016040528060288152602001612e24602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190612189565b611975565b5060019392505050565b601b546001600160a01b03163314610a9c57600080fd5b47610aa6816121b5565b50565b6000546001600160a01b03163314610ad35760405162461bcd60e51b815260040161079090612b19565b610adf6012600a612c48565b610aeb906103e8612c57565b811015610b585760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610790565b610b646012600a612c48565b610b71906207a120612c57565b811115610bdd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610790565b601955565b6000546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161079090612b19565b610c186012600a612c48565b610c2490612710612c57565b811015610c8d5760405162461bcd60e51b815260206004820152603160248201527f4d61782073656c6c2063616e6e6f74206265206c6f776572207468616e20302e604482015270181892903a37ba30b61039bab838363c9760791b6064820152608401610790565b600a55565b6000546001600160a01b03163314610cbc5760405162461bcd60e51b815260040161079090612b19565b610cc660006121ef565b565b6000546001600160a01b03163314610cf25760405162461bcd60e51b815260040161079090612b19565b600854610100900460ff1615610d445760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b99030b63932b0b23c9037b832b760491b6044820152606401610790565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610d8c3082610d7e6012600a612c48565b610a76906305f5e100612c57565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dee9190612c76565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5f9190612c76565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610eac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed09190612c76565b601c80546001600160a01b039283166001600160a01b03199091161790556001541663f305d7194730610f18816001600160a01b031660009081526003602052604090205490565b600080610f2d6000546001600160a01b031690565b426040518863ffffffff1660e01b8152600401610f4f96959493929190612c93565b60606040518083038185885af1158015610f6d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f929190612cce565b50506008805464ffff000000191664010100000017905550610fb66012600a612c48565b610fc390620f4240612c57565b600955610fd26012600a612c48565b610fdf90620f4240612c57565b600a908155610ff090601290612c48565b610ffd90621e8480612c57565b600b5561100c6012600a612c48565b6110189061c350612c57565b6019556008805461ff001916610100179055601c5460015460405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015611080573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a49190612cfc565b5050565b6000546001600160a01b031633146110d25760405162461bcd60e51b815260040161079090612b19565b600880549115156401000000000264ff0000000019909216919091179055565b6000546001600160a01b0316331461111c5760405162461bcd60e51b815260040161079090612b19565b600d55565b6000546001600160a01b0316331461114b5760405162461bcd60e51b815260040161079090612b19565b60005b82518110156111b257816005600085848151811061116e5761116e612d19565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806111aa81612d2f565b91505061114e565b505050565b600061082e338484611aaa565b6000546001600160a01b031633146111ee5760405162461bcd60e51b815260040161079090612b19565b60005b82518110156111b257816006600085848151811061121157611211612d19565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061124d81612d2f565b9150506111f1565b6000546001600160a01b0316331461127f5760405162461bcd60e51b815260040161079090612b19565b601e546001600160a01b03908116908216036112e95760405162461bcd60e51b815260206004820152602360248201527f6c697175696469747957616c6c657420616464726573732063616e6e6f74206260448201526206520360ec1b6064820152608401610790565b601a80546001600160a01b039081166000908152600560208181526040808420805460ff19908116909155865486168552600680845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b601b546001600160a01b0316331461137e57600080fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156113c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e99190612d48565b116114225760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610790565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611469573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148d9190612d48565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156114dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b29190612cfc565b6000546001600160a01b0316331461152b5760405162461bcd60e51b815260040161079090612b19565b60c86115378284612d61565b11156115855760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206275792074617865732062656c6f77203230250000006044820152606401610790565b600f91909155601155565b6000546001600160a01b031633146115ba5760405162461bcd60e51b815260040161079090612b19565b60005b82518110156111b25781600760008584815181106115dd576115dd612d19565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061161981612d2f565b9150506115bd565b6000546001600160a01b0316331461164b5760405162461bcd60e51b815260040161079090612b19565b6008805491151563010000000263ff00000019909216919091179055565b6000546001600160a01b031633146116935760405162461bcd60e51b815260040161079090612b19565b6001600160a01b0381166116f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610790565b610aa6816121ef565b6000546001600160a01b0316331461172b5760405162461bcd60e51b815260040161079090612b19565b601e546001600160a01b03908116908216036117895760405162461bcd60e51b815260206004820152601f60248201527f7661756c7457616c6c657420616464726573732063616e6e6f742062652030006044820152606401610790565b601b80546001600160a01b039081166000908152600560208181526040808420805460ff19908116909155865486168552600680845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b6000546001600160a01b031633146118315760405162461bcd60e51b815260040161079090612b19565b60c861183d8284612d61565b111561188b5760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b6565702073656c6c2074617865732062656c6f772032302500006044820152606401610790565b601391909155601555565b6000546001600160a01b031633146118c05760405162461bcd60e51b815260040161079090612b19565b6118cc6012600a612c48565b6118d890612710612c57565b8110156119405760405162461bcd60e51b815260206004820152603060248201527f4d6178206275792063616e6e6f74206265206c6f776572207468616e20302e3060448201526f1892903a37ba30b61039bab838363c9760811b6064820152608401610790565b600955565b601b546001600160a01b0316331461195c57600080fd5b30600090815260036020526040902054610aa68161223f565b601e546001600160a01b03908116908416036119df5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610790565b601e546001600160a01b0390811690831603611a485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610790565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601e546001600160a01b0390811690841603611b165760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610790565b601e546001600160a01b0390811690831603611b805760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610790565b60008111611be25760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610790565b60016000611bf86000546001600160a01b031690565b6001600160a01b0316856001600160a01b031614158015611c2757506000546001600160a01b03858116911614155b8015611c415750601e546001600160a01b03858116911614155b8015611c5b5750601d546001600160a01b03858116911614155b8015611c70575060085462010000900460ff16155b15612066576001600160a01b03851660009081526007602052604090205460ff16158015611cb757506001600160a01b03841660009081526007602052604090205460ff16155b611cc057600080fd5b60085460ff16611d55576001600160a01b03851660009081526005602052604090205460ff1680611d0957506001600160a01b03841660009081526005602052604090205460ff165b611d555760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e00000000006044820152606401610790565b600854640100000000900460ff1615611e68576001546001600160a01b03858116911614801590611d945750601c546001600160a01b03858116911614155b15611e6857600e54611da69043612d79565b32600090815260026020526040902054108015611de65750600e54611dcb9043612d79565b6001600160a01b038516600090815260026020526040902054105b611e435760405162461bcd60e51b815260206004820152602860248201527f5472616e736665722064656c617920656e61626c65642e20547279206167616960448201526737103630ba32b91760c11b6064820152608401610790565b3260009081526002602052604080822043908190556001600160a01b03871683529120555b601c546001600160a01b038681169116148015611e9357506001546001600160a01b03858116911614155b8015611eb857506001600160a01b03841660009081526006602052604090205460ff16155b15611fa857600954831115611f215760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b6064820152608401610790565b600b5483611f44866001600160a01b031660009081526003602052604090205490565b611f4e9190612d61565b1115611fa85760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610790565b601c546001600160a01b038581169116148015611fd357506001546001600160a01b03868116911614155b8015611ff857506001600160a01b03851660009081526006602052604090205460ff16155b1561206657600a548311156120625760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b6064820152608401610790565b5060015b6001600160a01b03851660009081526005602052604090205460ff16806120a557506001600160a01b03841660009081526005602052604090205460ff165b156120af57600091505b3060009081526003602052604081205490506000601954821180156120d15750825b90508080156120e957506008546301000000900460ff165b80156120fe575060085462010000900460ff16155b801561212357506001600160a01b03871660009081526005602052604090205460ff16155b801561214857506001600160a01b03861660009081526005602052604090205460ff16155b15612173576008805462ff0000191662010000179055612166612399565b6008805462ff0000191690555b6121808787878787612548565b50505050505050565b600081848411156121ad5760405162461bcd60e51b81526004016107909190612897565b505050900390565b601b546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156110a4573d6000803e3d6000fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061227457612274612d19565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156122cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122f19190612c76565b8160018151811061230457612304612d19565b6001600160a01b03928316602091820292909201015260015461232a9130911684611975565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac94790612363908590600090869030904290600401612d90565b600060405180830381600087803b15801561237d57600080fd5b505af1158015612391573d6000803e3d6000fd5b505050505050565b30600090815260036020526040812054905060006018546017546123bd9190612d61565b905060008215806123cc575081155b156123d657505050565b6019546123e4906005612c57565b8311156123fc576019546123f9906005612c57565b92505b60006002836017548661240f9190612c57565b6124199190612e01565b6124239190612e01565b90506000612431858361259c565b90504761243d8261223f565b6000612449478361259c565b9050600061246c87612466601854856125af90919063ffffffff16565b906125bb565b9050600061247a8284612d79565b60006017819055601855905085158015906124955750600081115b156124e8576124a486826125c7565b601754604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b601b546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612535576040519150601f19603f3d011682016040523d82523d6000602084013e61253a565b606091505b505050505050505050505050565b8161255a57612555612662565b612568565b6125658584836126bd565b92505b6125738585856127a4565b8161259557612595601054600f55601254601155601454601355601654601555565b5050505050565b60006125a88284612d79565b9392505050565b60006125a88284612c57565b60006125a88284612e01565b6001546125df9030906001600160a01b031684611975565b600154601a5460405163f305d71960e01b81526001600160a01b039283169263f305d71992859261261f9230928992600092839216904290600401612c93565b60606040518083038185885af115801561263d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906125959190612cce565b600f541580156126725750601154155b801561267e5750601354155b801561268a5750601554155b1561269157565b600f80546010556011805460125560138054601455601580546016556000938490559183905582905555565b60008060008043600d54600c546126d49190612d61565b106126eb57506103e79150600a90506103dd612712565b6126f48561284a565b92508415612709575050601354601554612712565b5050600f546011545b60006127246103e861246689876125af565b9050836127318483612c57565b61273b9190612e01565b6017600082825461274c9190612d61565b9091555084905061275d8383612c57565b6127679190612e01565b601860008282546127789190612d61565b9091555050801561278e5761278e8830836127a4565b6127988188612d79565b98975050505050505050565b6001600160a01b0383166000908152600360205260409020546127c7908261259c565b6001600160a01b0380851660009081526003602052604080822093909355908416815220546127f69082612872565b6001600160a01b0380841660008181526003602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611a9d9085815260200190565b60008115612862576015546013546108329190612d61565b601154600f546108329190612d61565b60006125a88284612d61565b60006020828403121561289057600080fd5b5035919050565b600060208083528351808285015260005b818110156128c4578581018301518582016040015282016128a8565b818111156128d6576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610aa657600080fd5b803561290c816128ec565b919050565b6000806040838503121561292457600080fd5b823561292f816128ec565b946020939093013593505050565b60008060006060848603121561295257600080fd5b833561295d816128ec565b9250602084013561296d816128ec565b929592945050506040919091013590565b60006020828403121561299057600080fd5b81356125a8816128ec565b8015158114610aa657600080fd5b803561290c8161299b565b6000602082840312156129c657600080fd5b81356125a88161299b565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156129fa57600080fd5b823567ffffffffffffffff80821115612a1257600080fd5b818501915085601f830112612a2657600080fd5b8135602082821115612a3a57612a3a6129d1565b8160051b604051601f19603f83011681018181108682111715612a5f57612a5f6129d1565b604052928352818301935084810182019289841115612a7d57600080fd5b948201945b83861015612aa257612a9386612901565b85529482019493820193612a82565b9650612ab190508782016129a9565b9450505050509250929050565b60008060408385031215612ad157600080fd5b50508035926020909101359150565b60008060408385031215612af357600080fd5b8235612afe816128ec565b91506020830135612b0e816128ec565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115612b9f578160001904821115612b8557612b85612b4e565b80851615612b9257918102915b93841c9390800290612b69565b509250929050565b600082612bb657506001610832565b81612bc357506000610832565b8160018114612bd95760028114612be357612bff565b6001915050610832565b60ff841115612bf457612bf4612b4e565b50506001821b610832565b5060208310610133831016604e8410600b8410161715612c22575081810a610832565b612c2c8383612b64565b8060001904821115612c4057612c40612b4e565b029392505050565b60006125a860ff841683612ba7565b6000816000190483118215151615612c7157612c71612b4e565b500290565b600060208284031215612c8857600080fd5b81516125a8816128ec565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600080600060608486031215612ce357600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215612d0e57600080fd5b81516125a88161299b565b634e487b7160e01b600052603260045260246000fd5b600060018201612d4157612d41612b4e565b5060010190565b600060208284031215612d5a57600080fd5b5051919050565b60008219821115612d7457612d74612b4e565b500190565b600082821015612d8b57612d8b612b4e565b500390565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612de05784516001600160a01b031683529383019391830191600101612dbb565b50506001600160a01b03969096166060850152505050608001529392505050565b600082612e1e57634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220bd5dbd02ce46f286038859a3b4116652e77bf0c7d42fbca34662245f4ca01fa164736f6c634300080f0033

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

00000000000000000000000003107bc93978fcd40d6a1ac1aded03e58768375800000000000000000000000003107bc93978fcd40d6a1ac1aded03e587683758

-----Decoded View---------------
Arg [0] : liquidityWalletAddress (address): 0x03107BC93978FcD40d6A1AC1Aded03E587683758
Arg [1] : vaultWalletAddress (address): 0x03107BC93978FcD40d6A1AC1Aded03E587683758

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000003107bc93978fcd40d6a1ac1aded03e587683758
Arg [1] : 00000000000000000000000003107bc93978fcd40d6a1ac1aded03e587683758


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.