ETH Price: $3,253.67 (+2.46%)
Gas: 2 Gwei

Token

Number23 (23)
 

Overview

Max Total Supply

23 23

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.136258318561804886 23

Value
$0.00
0xD911b02F8E8EB6eF5FA86e3B2e40e9763D9714D5
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:
Number23

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

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

/**
Safu contract.
We are the number 23 lovers.
Join us, chill, we have a surprise for ya ;)

https://twitter.com/Number23_real
https://number23.network/
*/

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";


contract Number23 is Context, IERC20Metadata, Ownable {
    using SafeMath for uint256;

    //Transfer Type
    uint8 constant FEE_EXEMPT = 0;
    uint8 constant TRANSFER = 1;
    uint8 constant BUY = 2;
    uint8 constant SELL = 3;

    //Basic info
    string private constant NAME = "Number23";
    string private constant SYMBOL = "23";
    uint8 private constant DECIMALS = 18;

    uint256 private constant _totalSupply = 23 * 10 ** DECIMALS;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => uint256) private _balances;

    //Fees
    uint256 public _marketingBuyFee;
    uint256 public _rewardBuyFee;
    uint256 public _liquidityBuyFee;
    uint256 public _marketingSellFee;
    uint256 public _rewardSellFee;
    uint256 public _liquiditySellFee;
    uint256 public constant _maxFeePercentage = 10;
    address public _marketingWallet;
    address public _liquidityWallet;
    uint256 private _marketingBalance;
    uint256 private _rewardBalance;
    uint256 private _liquidityBalance;
    mapping(address => bool) private _feeExclusions;

    //Sixty nine
    uint256 public _rewardCounter;
    uint256 public _rewardMinBuy = 1 * 10 ** (DECIMALS) / 10; //0.1 eth
    address public _lastWinner;
    uint256 private constant TWENTY_THREE = 23;
    uint256 private constant ROUTER_FEE_PCT = 25; //uniswap take 0.25%
    uint256 private constant MAX_PCT = 10000;

    //Limit transaction
    uint256 public _transactionUpperLimit = _totalSupply;
    uint256 private constant MIN_TRANS_UPPER_LIMIT = _totalSupply / 1000;
    mapping(address => bool) private _limitExclusions;

    //Router & pair
    IUniswapV2Router02 private _swapRouter;
    address public _swapPair;
    bool private _inSwap;

    //event
    event UpdateRewardCounter(
        uint256 currentCounter
    );

    event Reward(
        address winner,
        uint256 tokenAmount
    );

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

    //// constructor
    constructor(address routerAddress) {
        _balances[_msgSender()] = totalSupply();

        _feeExclusions[address(this)] = true;
        _feeExclusions[_msgSender()] = true;

        _marketingWallet = _msgSender();
        _liquidityWallet = _msgSender();

        setFees(3, 2, 1, 5, 3, 1);
        setTransactionUpperLimit(_totalSupply / 50);
        if (routerAddress != address(0)) {
            setSwapRouter(routerAddress);
        }

        emit Transfer(address(0), _msgSender(), totalSupply());
    }

    //// modifier
    modifier swapping() {
        _inSwap = true;
        _;
        _inSwap = false;
    }

    //// receive
    receive() external payable {}
    //// fallback
    //// external
    function setFeeWallets(
        address marketingWallet,
        address liquidityWallet
    )
    external
    onlyOwner
    {
        _marketingWallet = marketingWallet;
        _liquidityWallet = liquidityWallet;
    }

    function setExcludedFromFees(address addr, bool value) external onlyOwner {
        _feeExclusions[addr] = value;
    }

    function setRewardMinBuy(uint256 rewardMinBuy) external onlyOwner {
        _rewardMinBuy = _rewardMinBuy;
    }

    //// public
    function setFees(
        uint256 marketingBuyFee,
        uint256 rewardBuyFee,
        uint256 liquidityBuyFee,
        uint256 marketingSellFee,
        uint256 rewardSellFee,
        uint256 liquiditySellFee
    )
    public
    onlyOwner
    {
        require(_maxFeePercentage >= marketingBuyFee + rewardBuyFee + liquidityBuyFee);
        require(_maxFeePercentage >= marketingSellFee + rewardSellFee + liquiditySellFee);
        _marketingBuyFee = marketingBuyFee;
        _rewardBuyFee = rewardBuyFee;
        _liquidityBuyFee = liquidityBuyFee;
        _marketingSellFee = marketingSellFee;
        _rewardSellFee = rewardSellFee;
        _liquiditySellFee = liquiditySellFee;
    }

    function isExcludedFromFees(address addr)
    public
    view
    returns (bool)
    {
        return _feeExclusions[addr];
    }


    function setTransactionUpperLimit(uint256 limit) public onlyOwner {
        require(limit > MIN_TRANS_UPPER_LIMIT);
        _transactionUpperLimit = limit;
    }

    function setLimitExclusions(address addr, bool value) public onlyOwner {
        _limitExclusions[addr] = value;
    }

    function isExcludedFromLimit(address addr)
    public
    view
    returns (bool)
    {
        return _limitExclusions[addr];
    }

    function setSwapRouter(address routerAddress) public onlyOwner {
        require(routerAddress != address(0), "Invalid router address");

        _swapRouter = IUniswapV2Router02(routerAddress);
        _approve(address(this), routerAddress, type(uint256).max);

        _swapPair = IUniswapV2Factory(_swapRouter.factory()).getPair(address(this), _swapRouter.WETH());
        if (_swapPair == address(0)) {// pair doesn't exist beforehand
            _swapPair = IUniswapV2Factory(_swapRouter.factory()).createPair(address(this), _swapRouter.WETH());
        }
    }

    //// internal
    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "Invalid owner address");
        require(spender != address(0), "Invalid spender address");

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

    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "Invalid sender address");
        require(recipient != address(0), "Invalid recipient address");
        require(amount > 0, "Invalid transferring amount");

        if (!isExcludedFromLimit(sender) && !isExcludedFromLimit(recipient)) {
            require(amount <= _transactionUpperLimit, "Transferring amount exceeds the maximum allowed");
        }

        if (_inSwap) {
            basicTransfer(sender, recipient, amount);
            return;
        }

        _balances[sender] = _balances[sender].sub(amount, "Insufficient balance");
        uint8 transferType = transferType(sender, recipient);
        uint256 afterFeeAmount = takeFees(amount, transferType);
        _balances[recipient] = _balances[recipient].add(afterFeeAmount);


        if (transferType == BUY || transferType == SELL) {
            _rewardCounter++;
            if (shouldReward(amount, transferType)) {
                //Only reward on BUY transaction => Then we send the reward for recipient (buyer)
                reward(recipient);
            }
            emit UpdateRewardCounter(_rewardCounter);
        }

        emit Transfer(sender, recipient, afterFeeAmount);
    }

    function transferType(address from, address to) internal view returns (uint8) {
        if (isExcludedFromFees(from) || isExcludedFromFees(to)) return FEE_EXEMPT;
        if (from == _swapPair) return BUY;
        if (to == _swapPair) return SELL;
        return TRANSFER;
    }

    function basicTransfer(address sender, address recipient, uint256 amount) internal {
        _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function takeFees(uint256 amount, uint8 transferType) private returns (uint256) {
        if (transferType != BUY && transferType != SELL) {
            return amount;
        }
        uint256 marketingPercentage = transferType == BUY ? _marketingBuyFee : _marketingSellFee;
        uint256 rewardPercentage = transferType == BUY ? _rewardBuyFee : _rewardSellFee;
        uint256 liquidityPercentage = transferType == BUY ? _liquidityBuyFee : _liquiditySellFee;

        uint256 marketingFee = amount.mul(marketingPercentage).div(100);
        uint256 rewardFee = amount.mul(rewardPercentage).div(100);
        uint256 liquidityFee = amount.mul(liquidityPercentage).div(100);

        _marketingBalance += marketingFee;
        _rewardBalance += rewardFee;
        _liquidityBalance += liquidityFee;

        uint256 totalFee = marketingFee.add(rewardFee).add(liquidityFee);
        _balances[address(this)] = _balances[address(this)].add(totalFee);
        uint256 afterFeeAmount = amount.sub(totalFee, "Insufficient amount");

        if (shouldSwapFees(transferType)) {
            swapFees();
            swapAndLiquify();
        }

        return afterFeeAmount;
    }

    function shouldSwapFees(uint8 transferType) private returns (bool) {
        return transferType == SELL && balanceOf(address(this)) > 0;
    }

    function swapFees() private swapping {
        uint256 ethToMarketing = swapTokensForEth(_marketingBalance);
        (bool successSentMarketing,) = _marketingWallet.call{value : ethToMarketing}("");
        _marketingBalance = 0;
    }

    function swapAndLiquify() private swapping {
        uint256 half = _liquidityBalance.div(2);
        uint256 otherHalf = _liquidityBalance.sub(half);
        uint256 ethToLiquidity = swapTokensForEth(half);
        _swapRouter.addLiquidityETH{value : ethToLiquidity}(
            address(this),
            otherHalf,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            _liquidityWallet,
            block.timestamp
        );
        _liquidityBalance = 0;

        emit SwapAndLiquify(half, ethToLiquidity, otherHalf);
    }

    function swapTokensForEth(uint256 amount) internal returns (uint256) {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _swapRouter.WETH();

        // Swap
        _swapRouter.swapExactTokensForETH(amount, 0, path, address(this), block.timestamp + 360);

        // Return the amount received
        return address(this).balance;
    }

    function shouldReward(uint256 amount, uint8 transferType) private returns (bool){
        if (transferType != BUY) {
            return false;
        }
        if (_rewardCounter < TWENTY_THREE) {
            return false;
        }
        if (_rewardMinBuy == 0) {
            return true;
        }
        address[] memory path = new address[](2);
        path[0] = _swapRouter.WETH();
        path[1] = address(this);

        // We don't subtract the buy fee since the amount is pre-tax
        uint256 tokensOut = _swapRouter.getAmountsOut(_rewardMinBuy, path)[1].mul(MAX_PCT.sub(ROUTER_FEE_PCT)).div(MAX_PCT);
        return amount >= tokensOut;
    }

    function reward(address winner) private {
        uint256 rewardAmount = _rewardBalance;
        _lastWinner = winner;
        _rewardCounter = 0;
        _rewardBalance = 0;
        basicTransfer(address(this), winner, rewardAmount);

        emit Reward(winner, rewardAmount);
    }

    //// private
    //// view / pure
    function totalFee()
    external
    view
    returns (uint256)
    {
        return _marketingBuyFee.add(_rewardBuyFee).add(_liquidityBuyFee);
    }

    //region IERC20
    function totalSupply()
    public
    override
    pure
    returns (uint256) {
        return _totalSupply;
    }

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

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

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    )
    public
    override
    returns (bool)
    {
        if (_allowances[sender][msg.sender] != type(uint256).max) {
            _allowances[sender][_msgSender()] = _allowances[sender][_msgSender()].sub(amount, "Insufficient allowance");
        }
        _transfer(sender, recipient, amount);
        return true;
    }

    //region IERC20Metadata
    function name()
    public
    override
    pure
    returns (string memory)
    {
        return NAME;
    }

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

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

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

pragma solidity ^0.8.0;

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

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

File 3 of 9 : 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 4 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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 6 of 9 : 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 7 of 9 : 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 8 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"routerAddress","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":"address","name":"winner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"Reward","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"currentCounter","type":"uint256"}],"name":"UpdateRewardCounter","type":"event"},{"inputs":[],"name":"_lastWinner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFeePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rewardBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rewardCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rewardMinBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rewardSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_transactionUpperLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"marketingWallet","type":"address"},{"internalType":"address","name":"liquidityWallet","type":"address"}],"name":"setFeeWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingBuyFee","type":"uint256"},{"internalType":"uint256","name":"rewardBuyFee","type":"uint256"},{"internalType":"uint256","name":"liquidityBuyFee","type":"uint256"},{"internalType":"uint256","name":"marketingSellFee","type":"uint256"},{"internalType":"uint256","name":"rewardSellFee","type":"uint256"},{"internalType":"uint256","name":"liquiditySellFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setLimitExclusions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rewardMinBuy","type":"uint256"}],"name":"setRewardMinBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"name":"setSwapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setTransactionUpperLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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"}]

6080604052600a6012600a62000016919062000eb2565b600162000024919062000f03565b62000030919062000f93565b6010556012600a62000043919062000eb2565b601762000051919062000f03565b6012553480156200006157600080fd5b5060405162004f5338038062004f53833981810160405281019062000087919062001035565b620000a76200009b6200039460201b60201c565b6200039c60201b60201c565b620000b76200046060201b60201c565b60026000620000cb6200039460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000620001776200039460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001d86200039460201b60201c565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002286200039460201b60201c565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002846003600260016005600360016200048560201b60201c565b620002c060326012600a6200029a919062000eb2565b6017620002a8919062000f03565b620002b4919062000f93565b6200051960201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614620003075762000306816200056c60201b60201c565b5b620003176200039460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620003766200046060201b60201c565b60405162000385919062001078565b60405180910390a35062001309565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012600a62000472919062000eb2565b601762000480919062000f03565b905090565b6200049562000a8d60201b60201c565b838587620004a4919062001095565b620004b0919062001095565b600a1015620004be57600080fd5b808284620004cd919062001095565b620004d9919062001095565b600a1015620004e757600080fd5b856003819055508460048190555083600581905550826006819055508160078190555080600881905550505050505050565b6200052962000a8d60201b60201c565b6103e86012600a6200053c919062000eb2565b60176200054a919062000f03565b62000556919062000f93565b81116200056257600080fd5b8060128190555050565b6200057c62000a8d60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620005ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e59062001153565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200066230827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000b1e60201b60201c565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620006d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006f6919062001035565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000780573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007a6919062001035565b6040518363ffffffff1660e01b8152600401620007c592919062001186565b602060405180830381865afa158015620007e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000809919062001035565b601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000a8a57601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200090e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000934919062001035565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620009be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009e4919062001035565b6040518363ffffffff1660e01b815260040162000a0392919062001186565b6020604051808303816000875af115801562000a23573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a49919062001035565b601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b62000a9d6200039460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000ac362000cef60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000b1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b139062001203565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b879062001275565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bf990620012e7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000ce2919062001078565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000da65780860481111562000d7e5762000d7d62000d18565b5b600185161562000d8e5780820291505b808102905062000d9e8562000d47565b945062000d5e565b94509492505050565b60008262000dc1576001905062000e94565b8162000dd1576000905062000e94565b816001811462000dea576002811462000df55762000e2b565b600191505062000e94565b60ff84111562000e0a5762000e0962000d18565b5b8360020a91508482111562000e245762000e2362000d18565b5b5062000e94565b5060208310610133831016604e8410600b841016171562000e655782820a90508381111562000e5f5762000e5e62000d18565b5b62000e94565b62000e74848484600162000d54565b9250905081840481111562000e8e5762000e8d62000d18565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000ebf8262000e9b565b915062000ecc8362000ea5565b925062000efb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000daf565b905092915050565b600062000f108262000e9b565b915062000f1d8362000e9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000f595762000f5862000d18565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fa08262000e9b565b915062000fad8362000e9b565b92508262000fc05762000fbf62000f64565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ffd8262000fd0565b9050919050565b6200100f8162000ff0565b81146200101b57600080fd5b50565b6000815190506200102f8162001004565b92915050565b6000602082840312156200104e576200104d62000fcb565b5b60006200105e848285016200101e565b91505092915050565b620010728162000e9b565b82525050565b60006020820190506200108f600083018462001067565b92915050565b6000620010a28262000e9b565b9150620010af8362000e9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620010e757620010e662000d18565b5b828201905092915050565b600082825260208201905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b60006200113b601683620010f2565b9150620011488262001103565b602082019050919050565b600060208201905081810360008301526200116e816200112c565b9050919050565b620011808162000ff0565b82525050565b60006040820190506200119d600083018562001175565b620011ac602083018462001175565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620011eb602083620010f2565b9150620011f882620011b3565b602082019050919050565b600060208201905081810360008301526200121e81620011dc565b9050919050565b7f496e76616c6964206f776e657220616464726573730000000000000000000000600082015250565b60006200125d601583620010f2565b91506200126a8262001225565b602082019050919050565b6000602082019050818103600083015262001290816200124e565b9050919050565b7f496e76616c6964207370656e6465722061646472657373000000000000000000600082015250565b6000620012cf601783620010f2565b9150620012dc8262001297565b602082019050919050565b600060208201905081810360008301526200130281620012c0565b9050919050565b613c3a80620013196000396000f3fe6080604052600436106102135760003560e01c806385f36cde11610118578063dac11380116100a0578063e3624bba1161006f578063e3624bba146107b2578063eb487451146107dd578063ef97672614610808578063f2fde38b14610833578063fd1fb6051461085c5761021a565b8063dac11380146106f6578063dca5127714610721578063dd62ed3e1461074a578063e1254602146107875761021a565b8063962dfc75116100e7578063962dfc75146105fb578063a9059cbb14610626578063a93a0fd014610663578063cef52df91461068e578063d94160e0146106b95761021a565b806385f36cde1461055157806386f6c3c11461057c5780638da5cb5b146105a557806395d89b41146105d05761021a565b8063313ce5671161019b578063590ffdce1161016a578063590ffdce146104805780635b0c2bfd146104a957806370a08231146104d257806370e8e4251461050f578063715018a61461053a5761021a565b8063313ce567146103c457806341273657146103ef5780634eb093c7146104185780634fbee193146104435761021a565b80631df4ccfc116101e25780631df4ccfc146102dd5780631eb26ccc14610308578063226d2c641461033157806323b872dd1461035c578063243a7e31146103995761021a565b806306fdde031461021f578063095ea7b31461024a5780630c0666941461028757806318160ddd146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610885565b6040516102419190612bdb565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c9190612ca5565b6108c2565b60405161027e9190612d00565b60405180910390f35b34801561029357600080fd5b5061029c6108e0565b6040516102a99190612d2a565b60405180910390f35b3480156102be57600080fd5b506102c76108e6565b6040516102d49190612d2a565b60405180910390f35b3480156102e957600080fd5b506102f2610907565b6040516102ff9190612d2a565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612d45565b610939565b005b34801561033d57600080fd5b5061034661094d565b6040516103539190612d81565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612d9c565b610973565b6040516103909190612d00565b60405180910390f35b3480156103a557600080fd5b506103ae610b83565b6040516103bb9190612d81565b60405180910390f35b3480156103d057600080fd5b506103d9610ba9565b6040516103e69190612e0b565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612e26565b610bb2565b005b34801561042457600080fd5b5061042d6110a9565b60405161043a9190612d81565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612e26565b6110cf565b6040516104779190612d00565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190612e7f565b611125565b005b3480156104b557600080fd5b506104d060048036038101906104cb9190612e7f565b611188565b005b3480156104de57600080fd5b506104f960048036038101906104f49190612e26565b6111eb565b6040516105069190612d2a565b60405180910390f35b34801561051b57600080fd5b50610524611234565b6040516105319190612d2a565b60405180910390f35b34801561054657600080fd5b5061054f61123a565b005b34801561055d57600080fd5b5061056661124e565b6040516105739190612d2a565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190612ebf565b611254565b005b3480156105b157600080fd5b506105ba6112d6565b6040516105c79190612d81565b60405180910390f35b3480156105dc57600080fd5b506105e56112ff565b6040516105f29190612bdb565b60405180910390f35b34801561060757600080fd5b5061061061133c565b60405161061d9190612d81565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190612ca5565b611362565b60405161065a9190612d00565b60405180910390f35b34801561066f57600080fd5b50610678611380565b6040516106859190612d2a565b60405180910390f35b34801561069a57600080fd5b506106a3611386565b6040516106b09190612d2a565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190612e26565b61138b565b6040516106ed9190612d00565b60405180910390f35b34801561070257600080fd5b5061070b6113e1565b6040516107189190612d2a565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190612d45565b6113e7565b005b34801561075657600080fd5b50610771600480360381019061076c9190612f4c565b61142b565b60405161077e9190612d2a565b60405180910390f35b34801561079357600080fd5b5061079c6114b2565b6040516107a99190612d2a565b60405180910390f35b3480156107be57600080fd5b506107c76114b8565b6040516107d49190612d2a565b60405180910390f35b3480156107e957600080fd5b506107f26114be565b6040516107ff9190612d2a565b60405180910390f35b34801561081457600080fd5b5061081d6114c4565b60405161082a9190612d2a565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190612e26565b6114ca565b005b34801561086857600080fd5b50610883600480360381019061087e9190612f4c565b61154d565b005b60606040518060400160405280600881526020017f4e756d6265723233000000000000000000000000000000000000000000000000815250905090565b60006108d66108cf6115db565b84846115e3565b6001905092915050565b60125481565b60006012600a6108f691906130ee565b60176109029190613139565b905090565b60006109346005546109266004546003546117ac90919063ffffffff16565b6117ac90919063ffffffff16565b905090565b6109416117c2565b60105460108190555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610b6d57610ae5826040518060400160405280601681526020017f496e73756666696369656e7420616c6c6f77616e636500000000000000000000815250600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a9b6115db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b2e6115db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b610b78848484611895565b600190509392505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b610bba6117c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c20906131df565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c9530827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6115e3565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d269190613214565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610daf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd39190613214565b6040518363ffffffff1660e01b8152600401610df0929190613241565b602060405180830381865afa158015610e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e319190613214565b601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036110a657601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f589190613214565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fe1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110059190613214565b6040518363ffffffff1660e01b8152600401611022929190613241565b6020604051808303816000875af1158015611041573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110659190613214565b601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61112d6117c2565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111906117c2565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60075481565b6112426117c2565b61124c6000611cb7565b565b600f5481565b61125c6117c2565b838587611269919061326a565b611273919061326a565b600a101561128057600080fd5b80828461128d919061326a565b611297919061326a565b600a10156112a457600080fd5b856003819055508460048190555083600581905550826006819055508160078190555080600881905550505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600281526020017f3233000000000000000000000000000000000000000000000000000000000000815250905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061137661136f6115db565b8484611895565b6001905092915050565b60035481565b600a81565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60085481565b6113ef6117c2565b6103e86012600a61140091906130ee565b601761140c9190613139565b61141691906132ef565b811161142157600080fd5b8060128190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60055481565b60065481565b60045481565b60105481565b6114d26117c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890613392565b60405180910390fd5b61154a81611cb7565b50565b6115556117c2565b81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611649906133fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b89061346a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161179f9190612d2a565b60405180910390a3505050565b600081836117ba919061326a565b905092915050565b6117ca6115db565b73ffffffffffffffffffffffffffffffffffffffff166117e86112d6565b73ffffffffffffffffffffffffffffffffffffffff161461183e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611835906134d6565b60405180910390fd5b565b6000838311158290611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f9190612bdb565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90613542565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a906135ae565b60405180910390fd5b600081116119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ad9061361a565b60405180910390fd5b6119bf8361138b565b1580156119d257506119d08261138b565b155b15611a1d57601254811115611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a13906136ac565b60405180910390fd5b5b601560149054906101000a900460ff1615611a4257611a3d838383611d7b565b611cb2565b611acb816040518060400160405280601481526020017f496e73756666696369656e742062616c616e6365000000000000000000000000815250600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000611b1a8484611f46565b90506000611b288383612036565b9050611b7c81600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ac90919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600260ff168260ff161480611bda5750600360ff168260ff16145b15611c4a57600f6000815480929190611bf2906136cc565b9190505550611c0183836122c3565b15611c1057611c0f8461258d565b5b7f4102bc7888eacecbe67d4e64bdc9cf38ae88012217a96df1eb275a8d86901ec0600f54604051611c419190612d2a565b60405180910390a15b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ca79190612d2a565b60405180910390a350505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e04816040518060400160405280601481526020017f496e73756666696369656e742042616c616e6365000000000000000000000000815250600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e9981600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ac90919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611f399190612d2a565b60405180910390a3505050565b6000611f51836110cf565b80611f615750611f60826110cf565b5b15611f6f5760009050612030565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fcd5760029050612030565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361202b5760039050612030565b600190505b92915050565b6000600260ff168260ff16141580156120565750600360ff168260ff1614155b15612063578290506122bd565b6000600260ff168360ff161461207b5760065461207f565b6003545b90506000600260ff168460ff16146120995760075461209d565b6004545b90506000600260ff168560ff16146120b7576008546120bb565b6005545b905060006120e560646120d7868a61262d90919063ffffffff16565b61264390919063ffffffff16565b9050600061210f6064612101868b61262d90919063ffffffff16565b61264390919063ffffffff16565b90506000612139606461212b868c61262d90919063ffffffff16565b61264390919063ffffffff16565b905082600b600082825461214d919061326a565b9250508190555081600c6000828254612166919061326a565b9250508190555080600d600082825461217f919061326a565b9250508190555060006121ad8261219f85876117ac90919063ffffffff16565b6117ac90919063ffffffff16565b905061220181600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ac90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000612290826040518060400160405280601381526020017f496e73756666696369656e7420616d6f756e74000000000000000000000000008152508d6118409092919063ffffffff16565b905061229b8a612659565b156122b1576122a8612680565b6122b061275f565b5b80985050505050505050505b92915050565b6000600260ff168260ff16146122dc5760009050612587565b6017600f5410156122f05760009050612587565b6000601054036123035760019050612587565b6000600267ffffffffffffffff8111156123205761231f613714565b5b60405190808252806020026020018201604052801561234e5781602001602082028036833780820191505090505b509050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e29190613214565b816000815181106123f6576123f5613743565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050308160018151811061244557612444613743565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600061257c61271061256e6124a060196127106128ec90919063ffffffff16565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f601054886040518363ffffffff1660e01b81526004016124ff929190613830565b600060405180830381865afa15801561251c573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612545919061398e565b60018151811061255857612557613743565b5b602002602001015161262d90919063ffffffff16565b61264390919063ffffffff16565b905080851015925050505b92915050565b6000600c54905081601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f819055506000600c819055506125f0308383611d7b565b7f619caafabdd75649b302ba8419e48cccf64f37f1983ac4727cfb38b57703ffc982826040516126219291906139d7565b60405180910390a15050565b6000818361263b9190613139565b905092915050565b6000818361265191906132ef565b905092915050565b6000600360ff168260ff1614801561267957506000612677306111eb565b115b9050919050565b6001601560146101000a81548160ff02191690831515021790555060006126a8600b54612902565b90506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516126f290613a31565b60006040518083038185875af1925050503d806000811461272f576040519150601f19603f3d011682016040523d82523d6000602084013e612734565b606091505b505090506000600b8190555050506000601560146101000a81548160ff021916908315150217905550565b6001601560146101000a81548160ff02191690831515021790555060006127926002600d5461264390919063ffffffff16565b905060006127ab82600d546128ec90919063ffffffff16565b905060006127b883612902565b9050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161284396959493929190613a8b565b60606040518083038185885af1158015612861573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128869190613aec565b5050506000600d819055507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618382846040516128c493929190613b3f565b60405180910390a15050506000601560146101000a81548160ff021916908315150217905550565b600081836128fa9190613b76565b905092915050565b600080600267ffffffffffffffff8111156129205761291f613714565b5b60405190808252806020026020018201604052801561294e5781602001602082028036833780820191505090505b509050308160008151811061296657612965613743565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a319190613214565b81600181518110612a4557612a44613743565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe5846000843061016842612ad0919061326a565b6040518663ffffffff1660e01b8152600401612af0959493929190613baa565b6000604051808303816000875af1158015612b0f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612b38919061398e565b5047915050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b7c578082015181840152602081019050612b61565b83811115612b8b576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bad82612b42565b612bb78185612b4d565b9350612bc7818560208601612b5e565b612bd081612b91565b840191505092915050565b60006020820190508181036000830152612bf58184612ba2565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c3c82612c11565b9050919050565b612c4c81612c31565b8114612c5757600080fd5b50565b600081359050612c6981612c43565b92915050565b6000819050919050565b612c8281612c6f565b8114612c8d57600080fd5b50565b600081359050612c9f81612c79565b92915050565b60008060408385031215612cbc57612cbb612c07565b5b6000612cca85828601612c5a565b9250506020612cdb85828601612c90565b9150509250929050565b60008115159050919050565b612cfa81612ce5565b82525050565b6000602082019050612d156000830184612cf1565b92915050565b612d2481612c6f565b82525050565b6000602082019050612d3f6000830184612d1b565b92915050565b600060208284031215612d5b57612d5a612c07565b5b6000612d6984828501612c90565b91505092915050565b612d7b81612c31565b82525050565b6000602082019050612d966000830184612d72565b92915050565b600080600060608486031215612db557612db4612c07565b5b6000612dc386828701612c5a565b9350506020612dd486828701612c5a565b9250506040612de586828701612c90565b9150509250925092565b600060ff82169050919050565b612e0581612def565b82525050565b6000602082019050612e206000830184612dfc565b92915050565b600060208284031215612e3c57612e3b612c07565b5b6000612e4a84828501612c5a565b91505092915050565b612e5c81612ce5565b8114612e6757600080fd5b50565b600081359050612e7981612e53565b92915050565b60008060408385031215612e9657612e95612c07565b5b6000612ea485828601612c5a565b9250506020612eb585828601612e6a565b9150509250929050565b60008060008060008060c08789031215612edc57612edb612c07565b5b6000612eea89828a01612c90565b9650506020612efb89828a01612c90565b9550506040612f0c89828a01612c90565b9450506060612f1d89828a01612c90565b9350506080612f2e89828a01612c90565b92505060a0612f3f89828a01612c90565b9150509295509295509295565b60008060408385031215612f6357612f62612c07565b5b6000612f7185828601612c5a565b9250506020612f8285828601612c5a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561301257808604811115612fee57612fed612f8c565b5b6001851615612ffd5780820291505b808102905061300b85612fbb565b9450612fd2565b94509492505050565b60008261302b57600190506130e7565b8161303957600090506130e7565b816001811461304f576002811461305957613088565b60019150506130e7565b60ff84111561306b5761306a612f8c565b5b8360020a91508482111561308257613081612f8c565b5b506130e7565b5060208310610133831016604e8410600b84101617156130bd5782820a9050838111156130b8576130b7612f8c565b5b6130e7565b6130ca8484846001612fc8565b925090508184048111156130e1576130e0612f8c565b5b81810290505b9392505050565b60006130f982612c6f565b915061310483612def565b92506131317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461301b565b905092915050565b600061314482612c6f565b915061314f83612c6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561318857613187612f8c565b5b828202905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b60006131c9601683612b4d565b91506131d482613193565b602082019050919050565b600060208201905081810360008301526131f8816131bc565b9050919050565b60008151905061320e81612c43565b92915050565b60006020828403121561322a57613229612c07565b5b6000613238848285016131ff565b91505092915050565b60006040820190506132566000830185612d72565b6132636020830184612d72565b9392505050565b600061327582612c6f565b915061328083612c6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132b5576132b4612f8c565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132fa82612c6f565b915061330583612c6f565b925082613315576133146132c0565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061337c602683612b4d565b915061338782613320565b604082019050919050565b600060208201905081810360008301526133ab8161336f565b9050919050565b7f496e76616c6964206f776e657220616464726573730000000000000000000000600082015250565b60006133e8601583612b4d565b91506133f3826133b2565b602082019050919050565b60006020820190508181036000830152613417816133db565b9050919050565b7f496e76616c6964207370656e6465722061646472657373000000000000000000600082015250565b6000613454601783612b4d565b915061345f8261341e565b602082019050919050565b6000602082019050818103600083015261348381613447565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134c0602083612b4d565b91506134cb8261348a565b602082019050919050565b600060208201905081810360008301526134ef816134b3565b9050919050565b7f496e76616c69642073656e646572206164647265737300000000000000000000600082015250565b600061352c601683612b4d565b9150613537826134f6565b602082019050919050565b6000602082019050818103600083015261355b8161351f565b9050919050565b7f496e76616c696420726563697069656e74206164647265737300000000000000600082015250565b6000613598601983612b4d565b91506135a382613562565b602082019050919050565b600060208201905081810360008301526135c78161358b565b9050919050565b7f496e76616c6964207472616e7366657272696e6720616d6f756e740000000000600082015250565b6000613604601b83612b4d565b915061360f826135ce565b602082019050919050565b60006020820190508181036000830152613633816135f7565b9050919050565b7f5472616e7366657272696e6720616d6f756e742065786365656473207468652060008201527f6d6178696d756d20616c6c6f7765640000000000000000000000000000000000602082015250565b6000613696602f83612b4d565b91506136a18261363a565b604082019050919050565b600060208201905081810360008301526136c581613689565b9050919050565b60006136d782612c6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361370957613708612f8c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6137a781612c31565b82525050565b60006137b9838361379e565b60208301905092915050565b6000602082019050919050565b60006137dd82613772565b6137e7818561377d565b93506137f28361378e565b8060005b8381101561382357815161380a88826137ad565b9750613815836137c5565b9250506001810190506137f6565b5085935050505092915050565b60006040820190506138456000830185612d1b565b818103602083015261385781846137d2565b90509392505050565b600080fd5b61386e82612b91565b810181811067ffffffffffffffff8211171561388d5761388c613714565b5b80604052505050565b60006138a0612bfd565b90506138ac8282613865565b919050565b600067ffffffffffffffff8211156138cc576138cb613714565b5b602082029050602081019050919050565b600080fd5b6000815190506138f181612c79565b92915050565b600061390a613905846138b1565b613896565b9050808382526020820190506020840283018581111561392d5761392c6138dd565b5b835b81811015613956578061394288826138e2565b84526020840193505060208101905061392f565b5050509392505050565b600082601f83011261397557613974613860565b5b81516139858482602086016138f7565b91505092915050565b6000602082840312156139a4576139a3612c07565b5b600082015167ffffffffffffffff8111156139c2576139c1612c0c565b5b6139ce84828501613960565b91505092915050565b60006040820190506139ec6000830185612d72565b6139f96020830184612d1b565b9392505050565b600081905092915050565b50565b6000613a1b600083613a00565b9150613a2682613a0b565b600082019050919050565b6000613a3c82613a0e565b9150819050919050565b6000819050919050565b6000819050919050565b6000613a75613a70613a6b84613a46565b613a50565b612c6f565b9050919050565b613a8581613a5a565b82525050565b600060c082019050613aa06000830189612d72565b613aad6020830188612d1b565b613aba6040830187613a7c565b613ac76060830186613a7c565b613ad46080830185612d72565b613ae160a0830184612d1b565b979650505050505050565b600080600060608486031215613b0557613b04612c07565b5b6000613b13868287016138e2565b9350506020613b24868287016138e2565b9250506040613b35868287016138e2565b9150509250925092565b6000606082019050613b546000830186612d1b565b613b616020830185612d1b565b613b6e6040830184612d1b565b949350505050565b6000613b8182612c6f565b9150613b8c83612c6f565b925082821015613b9f57613b9e612f8c565b5b828203905092915050565b600060a082019050613bbf6000830188612d1b565b613bcc6020830187613a7c565b8181036040830152613bde81866137d2565b9050613bed6060830185612d72565b613bfa6080830184612d1b565b969550505050505056fea26469706673582212206cc0f631a3efd68e9d8098e6ba290ce23bc01d0e810eedf2044aec1156d05cc764736f6c634300080d00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106102135760003560e01c806385f36cde11610118578063dac11380116100a0578063e3624bba1161006f578063e3624bba146107b2578063eb487451146107dd578063ef97672614610808578063f2fde38b14610833578063fd1fb6051461085c5761021a565b8063dac11380146106f6578063dca5127714610721578063dd62ed3e1461074a578063e1254602146107875761021a565b8063962dfc75116100e7578063962dfc75146105fb578063a9059cbb14610626578063a93a0fd014610663578063cef52df91461068e578063d94160e0146106b95761021a565b806385f36cde1461055157806386f6c3c11461057c5780638da5cb5b146105a557806395d89b41146105d05761021a565b8063313ce5671161019b578063590ffdce1161016a578063590ffdce146104805780635b0c2bfd146104a957806370a08231146104d257806370e8e4251461050f578063715018a61461053a5761021a565b8063313ce567146103c457806341273657146103ef5780634eb093c7146104185780634fbee193146104435761021a565b80631df4ccfc116101e25780631df4ccfc146102dd5780631eb26ccc14610308578063226d2c641461033157806323b872dd1461035c578063243a7e31146103995761021a565b806306fdde031461021f578063095ea7b31461024a5780630c0666941461028757806318160ddd146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610885565b6040516102419190612bdb565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c9190612ca5565b6108c2565b60405161027e9190612d00565b60405180910390f35b34801561029357600080fd5b5061029c6108e0565b6040516102a99190612d2a565b60405180910390f35b3480156102be57600080fd5b506102c76108e6565b6040516102d49190612d2a565b60405180910390f35b3480156102e957600080fd5b506102f2610907565b6040516102ff9190612d2a565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612d45565b610939565b005b34801561033d57600080fd5b5061034661094d565b6040516103539190612d81565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612d9c565b610973565b6040516103909190612d00565b60405180910390f35b3480156103a557600080fd5b506103ae610b83565b6040516103bb9190612d81565b60405180910390f35b3480156103d057600080fd5b506103d9610ba9565b6040516103e69190612e0b565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612e26565b610bb2565b005b34801561042457600080fd5b5061042d6110a9565b60405161043a9190612d81565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612e26565b6110cf565b6040516104779190612d00565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190612e7f565b611125565b005b3480156104b557600080fd5b506104d060048036038101906104cb9190612e7f565b611188565b005b3480156104de57600080fd5b506104f960048036038101906104f49190612e26565b6111eb565b6040516105069190612d2a565b60405180910390f35b34801561051b57600080fd5b50610524611234565b6040516105319190612d2a565b60405180910390f35b34801561054657600080fd5b5061054f61123a565b005b34801561055d57600080fd5b5061056661124e565b6040516105739190612d2a565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190612ebf565b611254565b005b3480156105b157600080fd5b506105ba6112d6565b6040516105c79190612d81565b60405180910390f35b3480156105dc57600080fd5b506105e56112ff565b6040516105f29190612bdb565b60405180910390f35b34801561060757600080fd5b5061061061133c565b60405161061d9190612d81565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190612ca5565b611362565b60405161065a9190612d00565b60405180910390f35b34801561066f57600080fd5b50610678611380565b6040516106859190612d2a565b60405180910390f35b34801561069a57600080fd5b506106a3611386565b6040516106b09190612d2a565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190612e26565b61138b565b6040516106ed9190612d00565b60405180910390f35b34801561070257600080fd5b5061070b6113e1565b6040516107189190612d2a565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190612d45565b6113e7565b005b34801561075657600080fd5b50610771600480360381019061076c9190612f4c565b61142b565b60405161077e9190612d2a565b60405180910390f35b34801561079357600080fd5b5061079c6114b2565b6040516107a99190612d2a565b60405180910390f35b3480156107be57600080fd5b506107c76114b8565b6040516107d49190612d2a565b60405180910390f35b3480156107e957600080fd5b506107f26114be565b6040516107ff9190612d2a565b60405180910390f35b34801561081457600080fd5b5061081d6114c4565b60405161082a9190612d2a565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190612e26565b6114ca565b005b34801561086857600080fd5b50610883600480360381019061087e9190612f4c565b61154d565b005b60606040518060400160405280600881526020017f4e756d6265723233000000000000000000000000000000000000000000000000815250905090565b60006108d66108cf6115db565b84846115e3565b6001905092915050565b60125481565b60006012600a6108f691906130ee565b60176109029190613139565b905090565b60006109346005546109266004546003546117ac90919063ffffffff16565b6117ac90919063ffffffff16565b905090565b6109416117c2565b60105460108190555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610b6d57610ae5826040518060400160405280601681526020017f496e73756666696369656e7420616c6c6f77616e636500000000000000000000815250600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a9b6115db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b2e6115db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b610b78848484611895565b600190509392505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b610bba6117c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c20906131df565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c9530827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6115e3565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d269190613214565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610daf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd39190613214565b6040518363ffffffff1660e01b8152600401610df0929190613241565b602060405180830381865afa158015610e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e319190613214565b601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036110a657601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f589190613214565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fe1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110059190613214565b6040518363ffffffff1660e01b8152600401611022929190613241565b6020604051808303816000875af1158015611041573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110659190613214565b601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61112d6117c2565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111906117c2565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60075481565b6112426117c2565b61124c6000611cb7565b565b600f5481565b61125c6117c2565b838587611269919061326a565b611273919061326a565b600a101561128057600080fd5b80828461128d919061326a565b611297919061326a565b600a10156112a457600080fd5b856003819055508460048190555083600581905550826006819055508160078190555080600881905550505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600281526020017f3233000000000000000000000000000000000000000000000000000000000000815250905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061137661136f6115db565b8484611895565b6001905092915050565b60035481565b600a81565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60085481565b6113ef6117c2565b6103e86012600a61140091906130ee565b601761140c9190613139565b61141691906132ef565b811161142157600080fd5b8060128190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60055481565b60065481565b60045481565b60105481565b6114d26117c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890613392565b60405180910390fd5b61154a81611cb7565b50565b6115556117c2565b81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611649906133fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b89061346a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161179f9190612d2a565b60405180910390a3505050565b600081836117ba919061326a565b905092915050565b6117ca6115db565b73ffffffffffffffffffffffffffffffffffffffff166117e86112d6565b73ffffffffffffffffffffffffffffffffffffffff161461183e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611835906134d6565b60405180910390fd5b565b6000838311158290611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f9190612bdb565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90613542565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a906135ae565b60405180910390fd5b600081116119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ad9061361a565b60405180910390fd5b6119bf8361138b565b1580156119d257506119d08261138b565b155b15611a1d57601254811115611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a13906136ac565b60405180910390fd5b5b601560149054906101000a900460ff1615611a4257611a3d838383611d7b565b611cb2565b611acb816040518060400160405280601481526020017f496e73756666696369656e742062616c616e6365000000000000000000000000815250600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000611b1a8484611f46565b90506000611b288383612036565b9050611b7c81600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ac90919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600260ff168260ff161480611bda5750600360ff168260ff16145b15611c4a57600f6000815480929190611bf2906136cc565b9190505550611c0183836122c3565b15611c1057611c0f8461258d565b5b7f4102bc7888eacecbe67d4e64bdc9cf38ae88012217a96df1eb275a8d86901ec0600f54604051611c419190612d2a565b60405180910390a15b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ca79190612d2a565b60405180910390a350505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e04816040518060400160405280601481526020017f496e73756666696369656e742042616c616e6365000000000000000000000000815250600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e9981600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ac90919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611f399190612d2a565b60405180910390a3505050565b6000611f51836110cf565b80611f615750611f60826110cf565b5b15611f6f5760009050612030565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fcd5760029050612030565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361202b5760039050612030565b600190505b92915050565b6000600260ff168260ff16141580156120565750600360ff168260ff1614155b15612063578290506122bd565b6000600260ff168360ff161461207b5760065461207f565b6003545b90506000600260ff168460ff16146120995760075461209d565b6004545b90506000600260ff168560ff16146120b7576008546120bb565b6005545b905060006120e560646120d7868a61262d90919063ffffffff16565b61264390919063ffffffff16565b9050600061210f6064612101868b61262d90919063ffffffff16565b61264390919063ffffffff16565b90506000612139606461212b868c61262d90919063ffffffff16565b61264390919063ffffffff16565b905082600b600082825461214d919061326a565b9250508190555081600c6000828254612166919061326a565b9250508190555080600d600082825461217f919061326a565b9250508190555060006121ad8261219f85876117ac90919063ffffffff16565b6117ac90919063ffffffff16565b905061220181600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ac90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000612290826040518060400160405280601381526020017f496e73756666696369656e7420616d6f756e74000000000000000000000000008152508d6118409092919063ffffffff16565b905061229b8a612659565b156122b1576122a8612680565b6122b061275f565b5b80985050505050505050505b92915050565b6000600260ff168260ff16146122dc5760009050612587565b6017600f5410156122f05760009050612587565b6000601054036123035760019050612587565b6000600267ffffffffffffffff8111156123205761231f613714565b5b60405190808252806020026020018201604052801561234e5781602001602082028036833780820191505090505b509050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e29190613214565b816000815181106123f6576123f5613743565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050308160018151811061244557612444613743565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600061257c61271061256e6124a060196127106128ec90919063ffffffff16565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f601054886040518363ffffffff1660e01b81526004016124ff929190613830565b600060405180830381865afa15801561251c573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612545919061398e565b60018151811061255857612557613743565b5b602002602001015161262d90919063ffffffff16565b61264390919063ffffffff16565b905080851015925050505b92915050565b6000600c54905081601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f819055506000600c819055506125f0308383611d7b565b7f619caafabdd75649b302ba8419e48cccf64f37f1983ac4727cfb38b57703ffc982826040516126219291906139d7565b60405180910390a15050565b6000818361263b9190613139565b905092915050565b6000818361265191906132ef565b905092915050565b6000600360ff168260ff1614801561267957506000612677306111eb565b115b9050919050565b6001601560146101000a81548160ff02191690831515021790555060006126a8600b54612902565b90506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516126f290613a31565b60006040518083038185875af1925050503d806000811461272f576040519150601f19603f3d011682016040523d82523d6000602084013e612734565b606091505b505090506000600b8190555050506000601560146101000a81548160ff021916908315150217905550565b6001601560146101000a81548160ff02191690831515021790555060006127926002600d5461264390919063ffffffff16565b905060006127ab82600d546128ec90919063ffffffff16565b905060006127b883612902565b9050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161284396959493929190613a8b565b60606040518083038185885af1158015612861573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128869190613aec565b5050506000600d819055507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618382846040516128c493929190613b3f565b60405180910390a15050506000601560146101000a81548160ff021916908315150217905550565b600081836128fa9190613b76565b905092915050565b600080600267ffffffffffffffff8111156129205761291f613714565b5b60405190808252806020026020018201604052801561294e5781602001602082028036833780820191505090505b509050308160008151811061296657612965613743565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a319190613214565b81600181518110612a4557612a44613743565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe5846000843061016842612ad0919061326a565b6040518663ffffffff1660e01b8152600401612af0959493929190613baa565b6000604051808303816000875af1158015612b0f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612b38919061398e565b5047915050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b7c578082015181840152602081019050612b61565b83811115612b8b576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bad82612b42565b612bb78185612b4d565b9350612bc7818560208601612b5e565b612bd081612b91565b840191505092915050565b60006020820190508181036000830152612bf58184612ba2565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c3c82612c11565b9050919050565b612c4c81612c31565b8114612c5757600080fd5b50565b600081359050612c6981612c43565b92915050565b6000819050919050565b612c8281612c6f565b8114612c8d57600080fd5b50565b600081359050612c9f81612c79565b92915050565b60008060408385031215612cbc57612cbb612c07565b5b6000612cca85828601612c5a565b9250506020612cdb85828601612c90565b9150509250929050565b60008115159050919050565b612cfa81612ce5565b82525050565b6000602082019050612d156000830184612cf1565b92915050565b612d2481612c6f565b82525050565b6000602082019050612d3f6000830184612d1b565b92915050565b600060208284031215612d5b57612d5a612c07565b5b6000612d6984828501612c90565b91505092915050565b612d7b81612c31565b82525050565b6000602082019050612d966000830184612d72565b92915050565b600080600060608486031215612db557612db4612c07565b5b6000612dc386828701612c5a565b9350506020612dd486828701612c5a565b9250506040612de586828701612c90565b9150509250925092565b600060ff82169050919050565b612e0581612def565b82525050565b6000602082019050612e206000830184612dfc565b92915050565b600060208284031215612e3c57612e3b612c07565b5b6000612e4a84828501612c5a565b91505092915050565b612e5c81612ce5565b8114612e6757600080fd5b50565b600081359050612e7981612e53565b92915050565b60008060408385031215612e9657612e95612c07565b5b6000612ea485828601612c5a565b9250506020612eb585828601612e6a565b9150509250929050565b60008060008060008060c08789031215612edc57612edb612c07565b5b6000612eea89828a01612c90565b9650506020612efb89828a01612c90565b9550506040612f0c89828a01612c90565b9450506060612f1d89828a01612c90565b9350506080612f2e89828a01612c90565b92505060a0612f3f89828a01612c90565b9150509295509295509295565b60008060408385031215612f6357612f62612c07565b5b6000612f7185828601612c5a565b9250506020612f8285828601612c5a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561301257808604811115612fee57612fed612f8c565b5b6001851615612ffd5780820291505b808102905061300b85612fbb565b9450612fd2565b94509492505050565b60008261302b57600190506130e7565b8161303957600090506130e7565b816001811461304f576002811461305957613088565b60019150506130e7565b60ff84111561306b5761306a612f8c565b5b8360020a91508482111561308257613081612f8c565b5b506130e7565b5060208310610133831016604e8410600b84101617156130bd5782820a9050838111156130b8576130b7612f8c565b5b6130e7565b6130ca8484846001612fc8565b925090508184048111156130e1576130e0612f8c565b5b81810290505b9392505050565b60006130f982612c6f565b915061310483612def565b92506131317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461301b565b905092915050565b600061314482612c6f565b915061314f83612c6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561318857613187612f8c565b5b828202905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b60006131c9601683612b4d565b91506131d482613193565b602082019050919050565b600060208201905081810360008301526131f8816131bc565b9050919050565b60008151905061320e81612c43565b92915050565b60006020828403121561322a57613229612c07565b5b6000613238848285016131ff565b91505092915050565b60006040820190506132566000830185612d72565b6132636020830184612d72565b9392505050565b600061327582612c6f565b915061328083612c6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132b5576132b4612f8c565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132fa82612c6f565b915061330583612c6f565b925082613315576133146132c0565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061337c602683612b4d565b915061338782613320565b604082019050919050565b600060208201905081810360008301526133ab8161336f565b9050919050565b7f496e76616c6964206f776e657220616464726573730000000000000000000000600082015250565b60006133e8601583612b4d565b91506133f3826133b2565b602082019050919050565b60006020820190508181036000830152613417816133db565b9050919050565b7f496e76616c6964207370656e6465722061646472657373000000000000000000600082015250565b6000613454601783612b4d565b915061345f8261341e565b602082019050919050565b6000602082019050818103600083015261348381613447565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134c0602083612b4d565b91506134cb8261348a565b602082019050919050565b600060208201905081810360008301526134ef816134b3565b9050919050565b7f496e76616c69642073656e646572206164647265737300000000000000000000600082015250565b600061352c601683612b4d565b9150613537826134f6565b602082019050919050565b6000602082019050818103600083015261355b8161351f565b9050919050565b7f496e76616c696420726563697069656e74206164647265737300000000000000600082015250565b6000613598601983612b4d565b91506135a382613562565b602082019050919050565b600060208201905081810360008301526135c78161358b565b9050919050565b7f496e76616c6964207472616e7366657272696e6720616d6f756e740000000000600082015250565b6000613604601b83612b4d565b915061360f826135ce565b602082019050919050565b60006020820190508181036000830152613633816135f7565b9050919050565b7f5472616e7366657272696e6720616d6f756e742065786365656473207468652060008201527f6d6178696d756d20616c6c6f7765640000000000000000000000000000000000602082015250565b6000613696602f83612b4d565b91506136a18261363a565b604082019050919050565b600060208201905081810360008301526136c581613689565b9050919050565b60006136d782612c6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361370957613708612f8c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6137a781612c31565b82525050565b60006137b9838361379e565b60208301905092915050565b6000602082019050919050565b60006137dd82613772565b6137e7818561377d565b93506137f28361378e565b8060005b8381101561382357815161380a88826137ad565b9750613815836137c5565b9250506001810190506137f6565b5085935050505092915050565b60006040820190506138456000830185612d1b565b818103602083015261385781846137d2565b90509392505050565b600080fd5b61386e82612b91565b810181811067ffffffffffffffff8211171561388d5761388c613714565b5b80604052505050565b60006138a0612bfd565b90506138ac8282613865565b919050565b600067ffffffffffffffff8211156138cc576138cb613714565b5b602082029050602081019050919050565b600080fd5b6000815190506138f181612c79565b92915050565b600061390a613905846138b1565b613896565b9050808382526020820190506020840283018581111561392d5761392c6138dd565b5b835b81811015613956578061394288826138e2565b84526020840193505060208101905061392f565b5050509392505050565b600082601f83011261397557613974613860565b5b81516139858482602086016138f7565b91505092915050565b6000602082840312156139a4576139a3612c07565b5b600082015167ffffffffffffffff8111156139c2576139c1612c0c565b5b6139ce84828501613960565b91505092915050565b60006040820190506139ec6000830185612d72565b6139f96020830184612d1b565b9392505050565b600081905092915050565b50565b6000613a1b600083613a00565b9150613a2682613a0b565b600082019050919050565b6000613a3c82613a0e565b9150819050919050565b6000819050919050565b6000819050919050565b6000613a75613a70613a6b84613a46565b613a50565b612c6f565b9050919050565b613a8581613a5a565b82525050565b600060c082019050613aa06000830189612d72565b613aad6020830188612d1b565b613aba6040830187613a7c565b613ac76060830186613a7c565b613ad46080830185612d72565b613ae160a0830184612d1b565b979650505050505050565b600080600060608486031215613b0557613b04612c07565b5b6000613b13868287016138e2565b9350506020613b24868287016138e2565b9250506040613b35868287016138e2565b9150509250925092565b6000606082019050613b546000830186612d1b565b613b616020830185612d1b565b613b6e6040830184612d1b565b949350505050565b6000613b8182612c6f565b9150613b8c83612c6f565b925082821015613b9f57613b9e612f8c565b5b828203905092915050565b600060a082019050613bbf6000830188612d1b565b613bcc6020830187613a7c565b8181036040830152613bde81866137d2565b9050613bed6060830185612d72565b613bfa6080830184612d1b565b969550505050505056fea26469706673582212206cc0f631a3efd68e9d8098e6ba290ce23bc01d0e810eedf2044aec1156d05cc764736f6c634300080d0033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


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.