ETH Price: $3,266.52 (+2.53%)
Gas: 1.98 Gwei
 

Overview

Max Total Supply

100,000 OIT

Holders

90

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.011374345 OIT

Value
$0.00
0xd5feE9C1Da8D3dC600a1978fF289B509e896872c
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:
OpenInfoToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 7 : Token.sol
// SPDX-License-Identifier: MIT 
pragma solidity ^0.8.20;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {SafeMath} from "@openzeppelin/contracts/utils/math/SafeMath.sol";



interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}


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

    function WETH() external pure returns (address);

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



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





contract OpenInfoToken is ERC20("Open Info Token", "OIT"), Ownable{
    using SafeMath for uint256;


    //======== Variables ========


    IUniswapV2Router02 public immutable uniswapV2Router;

    uint256 public constant MAX_SUPPLY  = 1*1e5*1e9;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    
    

    bool private isTradingEnabled = false;
    bool public swapEnabled = true;
    bool private swapping;

    address public utilityAddress;
    uint256 public enableTradingBlock;
    uint256 public maxHoldLimit = MAX_SUPPLY*2/100;

    uint256 public maxBuyLimitRate = 10; // 1% max buy during warmup time and 0% percent afterwards
    uint256 public maxSellLimitRate = 5; // 0.5% max sell amount forever
    uint256 public maxWarmupBlocks; // total numbers of blocks for warmup period
    uint256 public swapTokensAtAmount;

    uint256 public normalBuyFee =50; //5%
    uint256 public normalSellFee =50; //5%

    mapping(address => bool) private isExcludedFromFees;
    mapping(address => bool) public isExcludedMaxTransactionLimit;
    mapping(address => bool) public isExcludedMaxHoldLimit;

    mapping(address => bool) public automatedMarketMakerPairs;

    //======== Events ========

    event onTradingEnabled();
    event onExcludeFromFees(address indexed account, bool isExcluded);
    event onExcludeFromMaxHoldLimit(address indexed account, bool isExcluded);
    event onExcludeFromMaxTransactionLimit(address indexed account, bool isExcluded);

    event onSetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event onUtilityWalletUpdated( address indexed newWallet,address indexed oldWallet);
    event onSwapAndLiquify(
        uint256 initialBalance,
        uint256 liquidityShareInETH,
        uint256 utilityShareInETH
    );
    event onFeeChanged(uint256 preBuyFee,uint256 newBuyFee,uint256 preSellFee,uint256 newSellFee);

    constructor(address _utilityAddress, address _routerAddress)  {
        utilityAddress = _utilityAddress;
       
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_routerAddress);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        excludeFromFees(owner(),true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(_utilityAddress,true);

        excludeFromMaxTransactionLimit(address(uniswapV2Pair), true);
        excludeFromMaxTransactionLimit(owner(), true);
        excludeFromMaxTransactionLimit(address(this), true);
        excludeFromMaxTransactionLimit(deadAddress, true);
        excludeFromMaxTransactionLimit(_utilityAddress, true);

        excludeFromMaxHoldLimit(address(uniswapV2Pair), true);
        excludeFromMaxHoldLimit(owner(), true);
        excludeFromMaxHoldLimit(address(this), true);
        excludeFromMaxHoldLimit(deadAddress, true);
        excludeFromMaxHoldLimit(_utilityAddress, true);

        uint256 kolShare = MAX_SUPPLY*2/100; // KOLs
        _mint(address(0x09F47eca127cf7f8D36597216bb11D8765e22be7),kolShare);
        _mint(address(0xaB59555Ef7e65aDd9862718115c9AF839c7DDb0f),kolShare);
        _mint(address(0x9Cc0829EBBd8028229CD9ab54D1dc025Ea582199),kolShare);

        uint256 utilityShare = MAX_SUPPLY*14/100; // 8% rewards, 6% team. locked
        _mint(_utilityAddress,utilityShare);

        _mint(msg.sender,MAX_SUPPLY-utilityShare-kolShare-kolShare-kolShare);
        swapTokensAtAmount = (totalSupply()*5)/1000;
    }


    modifier lockTheSwap {
        swapping = true;
        _;
        swapping = false;
    }

    receive() external payable {}
     
    // this function is used to register/unregister lp addresses in order to find out if transfer is buy or sell
   function setAutomatedMarketMakerPair(address pair, bool isAdd) public onlyOwner{
        automatedMarketMakerPairs[pair] = isAdd;
        emit onSetAutomatedMarketMakerPair(pair, isAdd);
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    // this function is used to register/unregister lp addresses in order to find out if transfer is buy or sell
   function excludeFromMaxTransactionLimit(address account, bool excluded) public onlyOwner {
        isExcludedMaxTransactionLimit[account] = excluded;
        emit onExcludeFromMaxTransactionLimit(account, excluded);
    }
    
    // this function is used to exclude/include wallet addresses from max hold limit 
    function excludeFromMaxHoldLimit(address account, bool excluded) public onlyOwner {
        isExcludedMaxHoldLimit[account] = excluded;
        emit onExcludeFromMaxHoldLimit(account, excluded);
    }

    // this function is used to update utilityWallet where token fee will go
    function updateUtilityWallet(address newutilityAddress) external onlyOwner {
        emit onUtilityWalletUpdated(utilityAddress, newutilityAddress);
        utilityAddress = newutilityAddress;
    }

    // this function is used to remove maxhold limit and max buy limit
    function removeLimits() public onlyOwner{
        maxHoldLimit =totalSupply();
        maxBuyLimitRate = 1000; //100%
    }

    
    // this function is used to change maxhold limit and max buy limit
    function changeLimits(uint256 maxBuyLimitInPercent,uint256 maxHoldLimitInPercent) public onlyOwner{
        maxBuyLimitRate = maxBuyLimitInPercent;
        maxHoldLimitInPercent = maxHoldLimitInPercent;
    }

    // this function is change buy and sell fee , buy and sell fee can't be set more than 5%
    function changeBuyAndSellFee(uint256 buyFee,uint256 sellFee) public onlyOwner{
        require(buyFee  <= 50,"cant set buy fee more than 5%");
        require(sellFee  <= 50,"cant set sell fee more than 5%");
        emit onFeeChanged(normalBuyFee,buyFee,normalSellFee,sellFee);

        normalBuyFee = buyFee;
        normalSellFee = sellFee;
    }

    // this function is used to exclude address from txn fee
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        isExcludedFromFees[account] = excluded;
        emit onExcludeFromFees(account, excluded);
    }


    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    // this function will return true if warmup time is active or not where fee will be higher during warmup time
    function isWarmupTime() public view returns(bool){
        if(isTradingEnabled == true){
            return enableTradingBlock+maxWarmupBlocks > block.number;
        }
        return true;
    }


    // this function is used to update max swap token threshold
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
    }

    // returns current buy and sell fee percents
    function getTxnFee() private  view returns(uint256 buyFee,uint256 sellFee){
        if(isWarmupTime()){
            uint256 passedBlocks =  block.number - enableTradingBlock;
            if(passedBlocks ==0 || passedBlocks==1 || passedBlocks==2){
                buyFee = 990; //99%
                sellFee = 990; //99%
            }else if(passedBlocks >2 && passedBlocks <6){
                buyFee = 500; //50%
                sellFee = 500; //50%
            }else if(passedBlocks >5 && passedBlocks <9){
                buyFee = 300; //30%
                sellFee = 300; //30%
            }else {
                buyFee = 100; //10%
                sellFee = 100; //10%
            }
        }else{
            buyFee = normalBuyFee;
            sellFee = normalSellFee;
        }
    } 


    // used to enable trade takes number of warmup blocks
    function onsGaanNouBraai(uint256 _maxWarmupBlocks) public onlyOwner {
        isTradingEnabled = true;
        enableTradingBlock = block.number;
        maxWarmupBlocks  = _maxWarmupBlocks;
        emit onTradingEnabled();
    }


    // used to convert tokens to eth internally 
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }



    // used to convert tokens to eth internally 
    function swapAndLiquify(uint256 balance) private lockTheSwap {

        uint256 initialBalance = address(this).balance;
        uint256 convertingToETH = balance*90/100;
        uint256 liquidityShareInTokens = balance*10/100;
        swapTokensForEth(convertingToETH); 
        uint256 newBalance = address(this).balance.sub(initialBalance);
        uint256 utilityShareInETH  = newBalance*80/100;
        uint256 liquidityShareInETH  = newBalance*20/100;
        payable(utilityAddress).transfer(utilityShareInETH);
        addLiquidity(liquidityShareInTokens, liquidityShareInETH);
        emit onSwapAndLiquify(initialBalance, liquidityShareInETH, utilityShareInETH);
    }



    // used to add tokens liquidty
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, 
            0, 
            deadAddress,
            block.timestamp
        );
    }



    function _transfer(address from, address to, uint256 amount) internal  override virtual {
       
        if(owner() == from || owner() == to){
            super._transfer(from,to,amount);
            return;
        }

        require(isTradingEnabled,"Trading not enabled");
    
        bool isBuy = automatedMarketMakerPairs[from];
        bool isSell = automatedMarketMakerPairs[to];

        if(!isExcludedMaxTransactionLimit[from]){
            if(isBuy){
                require(amount <= maxBuyLimitRate*totalSupply()/1000,"Limit Reached");
            }else if(isSell){
                require(amount <= maxSellLimitRate*totalSupply()/1000,"Limit Reached");
            }
        }

        if(!isExcludedMaxHoldLimit[to]){
            require(amount+balanceOf(to)<= maxHoldLimit,"Max Hold Limit Reached");
        }


        bool isTakeFee = !isExcludedFromFees[from] && (isBuy || isSell);

        if(isTakeFee){
            (uint256 buyFee,uint256 sellFee) = getTxnFee();
            if(isBuy){
                uint256 buyFeeAmount = amount * buyFee /1000;
                if(buyFeeAmount >0){
                    super._transfer(from,address(this),buyFeeAmount);
                }
                super._transfer(from,to,amount-buyFeeAmount);
            }else if(isSell){
                uint256 sellFeeAmount = amount * sellFee /1000;
                if(sellFeeAmount >0){
                    super._transfer(from,address(this),sellFeeAmount);
                }
                super._transfer(from,to,amount-sellFeeAmount);
            }
        }else{
            super._transfer(from,to,amount);
        }

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

         if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from]) {
            swapAndLiquify(contractTokenBalance);
        }

    }


}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 7 : 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 7 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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;
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_utilityAddress","type":"address"},{"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":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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"onExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"onExcludeFromMaxHoldLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"onExcludeFromMaxTransactionLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"preBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"preSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellFee","type":"uint256"}],"name":"onFeeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"onSetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"initialBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityShareInETH","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"utilityShareInETH","type":"uint256"}],"name":"onSwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[],"name":"onTradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"onUtilityWalletUpdated","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyFee","type":"uint256"},{"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"changeBuyAndSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuyLimitInPercent","type":"uint256"},{"internalType":"uint256","name":"maxHoldLimitInPercent","type":"uint256"}],"name":"changeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxHoldLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedMaxHoldLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedMaxTransactionLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWarmupTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyLimitRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellLimitRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWarmupBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"normalBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"normalSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWarmupBlocks","type":"uint256"}],"name":"onsGaanNouBraai","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isAdd","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newutilityAddress","type":"address"}],"name":"updateUtilityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"utilityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600560146101000a81548160ff0219169083151502179055506001600560156101000a81548160ff02191690831515021790555060646002655af3107a400062000051919062000c42565b6200005d919062000cbc565b600855600a6009556005600a556032600d556032600e553480156200008157600080fd5b5060405162004b5538038062004b558339818101604052810190620000a7919062000d5e565b6040518060400160405280600f81526020017f4f70656e20496e666f20546f6b656e00000000000000000000000000000000008152506040518060400160405280600381526020017f4f49540000000000000000000000000000000000000000000000000000000000815250816003908162000124919062001015565b50806004908162000136919062001015565b505050620001596200014d6200061d60201b60201c565b6200062560201b60201c565b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008190508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200021f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002459190620010fc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d39190620010fc565b6040518363ffffffff1660e01b8152600401620002f29291906200113f565b6020604051808303816000875af115801562000312573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003389190620010fc565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200038060a0516001620006eb60201b60201c565b620003a2620003946200079c60201b60201c565b6001620007c660201b60201c565b620003b5306001620007c660201b60201c565b620003ca61dead6001620007c660201b60201c565b620003dd836001620007c660201b60201c565b620003f260a05160016200088160201b60201c565b62000414620004066200079c60201b60201c565b60016200088160201b60201c565b620004273060016200088160201b60201c565b6200043c61dead60016200088160201b60201c565b6200044f8360016200088160201b60201c565b6200046460a05160016200093c60201b60201c565b62000486620004786200079c60201b60201c565b60016200093c60201b60201c565b620004993060016200093c60201b60201c565b620004ae61dead60016200093c60201b60201c565b620004c18360016200093c60201b60201c565b600060646002655af3107a4000620004da919062000c42565b620004e6919062000cbc565b90506200050e7309f47eca127cf7f8d36597216bb11d8765e22be782620009f760201b60201c565b6200053473ab59555ef7e65add9862718115c9af839c7ddb0f82620009f760201b60201c565b6200055a739cc0829ebbd8028229cd9ab54d1dc025ea58219982620009f760201b60201c565b60006064600e655af3107a400062000573919062000c42565b6200057f919062000cbc565b9050620005938582620009f760201b60201c565b620005df3383848585655af3107a4000620005af91906200116c565b620005bb91906200116c565b620005c791906200116c565b620005d391906200116c565b620009f760201b60201c565b6103e86005620005f462000b6460201b60201c565b62000600919062000c42565b6200060c919062000cbc565b600c8190555050505050506200133f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006fb62000b6e60201b60201c565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fd697769bbf9b0ff9ee5e6890c23a661759088388b4d1cc3bd1d196f460830db760405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007d662000b6e60201b60201c565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f52371553ede18d04912cc04027aacbc86f981d89d1e708edc60f4840616a843b82604051620008759190620011c4565b60405180910390a25050565b6200089162000b6e60201b60201c565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f1d9da607c8ec13d44fe3a293d51d1591f8152831929968f4e4b8de5c8f17c52182604051620009309190620011c4565b60405180910390a25050565b6200094c62000b6e60201b60201c565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fbae3eaaa676f6ed2f64ff6e0a9b11446fe058c8bb2b256b5be6754bea53d98c682604051620009eb9190620011c4565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a609062001242565b60405180910390fd5b62000a7d6000838362000bff60201b60201c565b806002600082825462000a91919062001264565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b449190620012b0565b60405180910390a362000b606000838362000c0460201b60201c565b5050565b6000600254905090565b62000b7e6200061d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000ba46200079c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000bfd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bf4906200131d565b60405180910390fd5b565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c4f8262000c09565b915062000c5c8362000c09565b925082820262000c6c8162000c09565b9150828204841483151762000c865762000c8562000c13565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000cc98262000c09565b915062000cd68362000c09565b92508262000ce95762000ce862000c8d565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d268262000cf9565b9050919050565b62000d388162000d19565b811462000d4457600080fd5b50565b60008151905062000d588162000d2d565b92915050565b6000806040838503121562000d785762000d7762000cf4565b5b600062000d888582860162000d47565b925050602062000d9b8582860162000d47565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e2757607f821691505b60208210810362000e3d5762000e3c62000ddf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ea77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000e68565b62000eb3868362000e68565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000ef662000ef062000eea8462000c09565b62000ecb565b62000c09565b9050919050565b6000819050919050565b62000f128362000ed5565b62000f2a62000f218262000efd565b84845462000e75565b825550505050565b600090565b62000f4162000f32565b62000f4e81848462000f07565b505050565b5b8181101562000f765762000f6a60008262000f37565b60018101905062000f54565b5050565b601f82111562000fc55762000f8f8162000e43565b62000f9a8462000e58565b8101602085101562000faa578190505b62000fc262000fb98562000e58565b83018262000f53565b50505b505050565b600082821c905092915050565b600062000fea6000198460080262000fca565b1980831691505092915050565b600062001005838362000fd7565b9150826002028217905092915050565b620010208262000da5565b67ffffffffffffffff8111156200103c576200103b62000db0565b5b62001048825462000e0e565b6200105582828562000f7a565b600060209050601f8311600181146200108d576000841562001078578287015190505b62001084858262000ff7565b865550620010f4565b601f1984166200109d8662000e43565b60005b82811015620010c757848901518255600182019150602085019450602081019050620010a0565b86831015620010e75784890151620010e3601f89168262000fd7565b8355505b6001600288020188555050505b505050505050565b60006020828403121562001115576200111462000cf4565b5b6000620011258482850162000d47565b91505092915050565b620011398162000d19565b82525050565b60006040820190506200115660008301856200112e565b6200116560208301846200112e565b9392505050565b6000620011798262000c09565b9150620011868362000c09565b9250828203905081811115620011a157620011a062000c13565b5b92915050565b60008115159050919050565b620011be81620011a7565b82525050565b6000602082019050620011db6000830184620011b3565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200122a601f83620011e1565b91506200123782620011f2565b602082019050919050565b600060208201905081810360008301526200125d816200121b565b9050919050565b6000620012718262000c09565b91506200127e8362000c09565b925082820190508082111562001299576200129862000c13565b5b92915050565b620012aa8162000c09565b82525050565b6000602082019050620012c760008301846200129f565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001305602083620011e1565b91506200131282620012cd565b602082019050919050565b600060208201905081810360008301526200133881620012f6565b9050919050565b60805160a0516137cd620013886000396000610d56015260008181610ad201528181612394015281816124750152818161249c0152818161254e015261257501526137cd6000f3fe6080604052600436106102605760003560e01c8063880bcbc111610144578063bfc2e998116100b6578063d33f40521161007a578063d33f405214610909578063dd62ed3e14610934578063e2f4560514610971578063ea516b4e1461099c578063f29b2239146109c7578063f2fde38b146109f257610267565b8063bfc2e9981461083c578063c024666814610865578063c4ffc23c1461088e578063d0243792146108b7578063d257b34f146108e057610267565b80639a7a23d6116101085780639a7a23d614610706578063a2f7623e1461072f578063a457c2d71461075a578063a9059cbb14610797578063b62496f5146107d4578063b9770ccd1461081157610267565b8063880bcbc1146106335780638da5cb5b1461065c578063924de9b71461068757806395d89b41146106b05780639a36dfa1146106db57610267565b80633938a5b4116101dd5780635e66b7b1116101a15780635e66b7b1146105475780636ddd17131461057257806370a082311461059d578063715018a6146105da578063751039fc146105f15780637adb90a31461060857610267565b80633938a5b41461044e578063395093511461047757806345ce3219146104b457806349bd5a5e146104df5780635723f3641461050a57610267565b806323b872dd1161022457806323b872dd1461036757806327c8f835146103a4578063313ce567146103cf57806332cb6b0c146103fa5780633594dea31461042557610267565b806306fdde031461026c578063095ea7b3146102975780631694505e146102d457806316c16382146102ff57806318160ddd1461033c57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a1b565b60405161028e91906126b4565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b9919061276f565b610aad565b6040516102cb91906127ca565b60405180910390f35b3480156102e057600080fd5b506102e9610ad0565b6040516102f69190612844565b60405180910390f35b34801561030b57600080fd5b506103266004803603810190610321919061285f565b610af4565b60405161033391906127ca565b60405180910390f35b34801561034857600080fd5b50610351610b14565b60405161035e919061289b565b60405180910390f35b34801561037357600080fd5b5061038e600480360381019061038991906128b6565b610b1e565b60405161039b91906127ca565b60405180910390f35b3480156103b057600080fd5b506103b9610b4d565b6040516103c69190612918565b60405180910390f35b3480156103db57600080fd5b506103e4610b53565b6040516103f1919061294f565b60405180910390f35b34801561040657600080fd5b5061040f610b5c565b60405161041c919061289b565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190612996565b610b66565b005b34801561045a57600080fd5b506104756004803603810190610470919061285f565b610c17565b005b34801561048357600080fd5b5061049e6004803603810190610499919061276f565b610cdf565b6040516104ab91906127ca565b60405180910390f35b3480156104c057600080fd5b506104c9610d16565b6040516104d691906127ca565b60405180910390f35b3480156104eb57600080fd5b506104f4610d54565b6040516105019190612918565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c919061285f565b610d78565b60405161053e91906127ca565b60405180910390f35b34801561055357600080fd5b5061055c610d98565b604051610569919061289b565b60405180910390f35b34801561057e57600080fd5b50610587610d9e565b60405161059491906127ca565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf919061285f565b610db1565b6040516105d1919061289b565b60405180910390f35b3480156105e657600080fd5b506105ef610df9565b005b3480156105fd57600080fd5b50610606610e0d565b005b34801561061457600080fd5b5061061d610e2e565b60405161062a919061289b565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190612996565b610e34565b005b34801561066857600080fd5b50610671610ee5565b60405161067e9190612918565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a991906129d6565b610f0f565b005b3480156106bc57600080fd5b506106c5610f34565b6040516106d291906126b4565b60405180910390f35b3480156106e757600080fd5b506106f0610fc6565b6040516106fd919061289b565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612996565b610fcc565b005b34801561073b57600080fd5b50610744611075565b604051610751919061289b565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c919061276f565b61107b565b60405161078e91906127ca565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b9919061276f565b6110f2565b6040516107cb91906127ca565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f6919061285f565b611115565b60405161080891906127ca565b60405180910390f35b34801561081d57600080fd5b50610826611135565b604051610833919061289b565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e9190612a03565b61113b565b005b34801561087157600080fd5b5061088c60048036038101906108879190612996565b61119b565b005b34801561089a57600080fd5b506108b560048036038101906108b09190612a30565b61124c565b005b3480156108c357600080fd5b506108de60048036038101906108d99190612a30565b61132f565b005b3480156108ec57600080fd5b5061090760048036038101906109029190612a03565b611342565b005b34801561091557600080fd5b5061091e61141b565b60405161092b919061289b565b60405180910390f35b34801561094057600080fd5b5061095b60048036038101906109569190612a70565b611421565b604051610968919061289b565b60405180910390f35b34801561097d57600080fd5b506109866114a8565b604051610993919061289b565b60405180910390f35b3480156109a857600080fd5b506109b16114ae565b6040516109be919061289b565b60405180910390f35b3480156109d357600080fd5b506109dc6114b4565b6040516109e99190612918565b60405180910390f35b3480156109fe57600080fd5b50610a196004803603810190610a14919061285f565b6114da565b005b606060038054610a2a90612adf565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5690612adf565b8015610aa35780601f10610a7857610100808354040283529160200191610aa3565b820191906000526020600020905b815481529060010190602001808311610a8657829003601f168201915b5050505050905090565b600080610ab861155d565b9050610ac5818585611565565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60116020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b600080610b2961155d565b9050610b3685828561172e565b610b418585856117ba565b60019150509392505050565b61dead81565b60006009905090565b655af3107a400081565b610b6e611cf3565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fbae3eaaa676f6ed2f64ff6e0a9b11446fe058c8bb2b256b5be6754bea53d98c682604051610c0b91906127ca565b60405180910390a25050565b610c1f611cf3565b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f56cd4ef2175d26845a303e42ee8bd2d5bf61139fb2e377c8e7057a78d720a4ba60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610cea61155d565b9050610d0b818585610cfc8589611421565b610d069190612b3f565b611565565b600191505092915050565b600060011515600560149054906101000a900460ff16151503610d4c5743600b54600754610d449190612b3f565b119050610d51565b600190505b90565b7f000000000000000000000000000000000000000000000000000000000000000081565b60106020528060005260406000206000915054906101000a900460ff1681565b600d5481565b600560159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e01611cf3565b610e0b6000611d71565b565b610e15611cf3565b610e1d610b14565b6008819055506103e8600981905550565b600b5481565b610e3c611cf3565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f1d9da607c8ec13d44fe3a293d51d1591f8152831929968f4e4b8de5c8f17c52182604051610ed991906127ca565b60405180910390a25050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f17611cf3565b80600560156101000a81548160ff02191690831515021790555050565b606060048054610f4390612adf565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6f90612adf565b8015610fbc5780601f10610f9157610100808354040283529160200191610fbc565b820191906000526020600020905b815481529060010190602001808311610f9f57829003601f168201915b5050505050905090565b60085481565b610fd4611cf3565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fd697769bbf9b0ff9ee5e6890c23a661759088388b4d1cc3bd1d196f460830db760405160405180910390a35050565b600e5481565b60008061108661155d565b905060006110948286611421565b9050838110156110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090612be5565b60405180910390fd5b6110e68286868403611565565b60019250505092915050565b6000806110fd61155d565b905061110a8185856117ba565b600191505092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b600a5481565b611143611cf3565b6001600560146101000a81548160ff0219169083151502179055504360078190555080600b819055507ff34c6b67ef9e5c632e47eea0f54b50c0709aa3d721b76aaef0c495849f71ba2160405160405180910390a150565b6111a3611cf3565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f52371553ede18d04912cc04027aacbc86f981d89d1e708edc60f4840616a843b8260405161124091906127ca565b60405180910390a25050565b611254611cf3565b6032821115611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90612c51565b60405180910390fd5b60328111156112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390612cbd565b60405180910390fd5b7f47b8000dd37c62e9657775efed4c1248a3744cee9b67e750012c1514c31d2fbd600d5483600e54846040516113159493929190612cdd565b60405180910390a181600d8190555080600e819055505050565b611337611cf3565b816009819055505050565b61134a611cf3565b620186a06001611358610b14565b6113629190612d22565b61136c9190612d93565b8110156113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590612e36565b60405180910390fd5b6103e860056113bb610b14565b6113c59190612d22565b6113cf9190612d93565b811115611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890612ec8565b60405180910390fd5b80600c8190555050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b60095481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114e2611cf3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890612f5a565b60405180910390fd5b61155a81611d71565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90612fec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a9061307e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611721919061289b565b60405180910390a3505050565b600061173a8484611421565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117b457818110156117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d906130ea565b60405180910390fd5b6117b38484848403611565565b5b50505050565b8273ffffffffffffffffffffffffffffffffffffffff166117d9610ee5565b73ffffffffffffffffffffffffffffffffffffffff16148061182d57508173ffffffffffffffffffffffffffffffffffffffff16611815610ee5565b73ffffffffffffffffffffffffffffffffffffffff16145b156118425761183d838383611e37565b611cee565b600560149054906101000a900460ff16611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890613156565b60405180910390fd5b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a605781156119f3576103e8611995610b14565b6009546119a29190612d22565b6119ac9190612d93565b8311156119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e5906131c2565b60405180910390fd5b611a5f565b8015611a5e576103e8611a04610b14565b600a54611a119190612d22565b611a1b9190612d93565b831115611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a54906131c2565b60405180910390fd5b5b5b5b601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b0a57600854611abd85610db1565b84611ac89190612b3f565b1115611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b009061322e565b60405180910390fd5b5b6000600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b6b57508280611b6a5750815b5b90508015611c2e57600080611b7e6120ad565b915091508415611bd65760006103e88388611b999190612d22565b611ba39190612d93565b90506000811115611bba57611bb9893083611e37565b5b611bd08989838a611bcb919061324e565b611e37565b50611c27565b8315611c265760006103e88288611bed9190612d22565b611bf79190612d93565b90506000811115611c0e57611c0d893083611e37565b5b611c248989838a611c1f919061324e565b611e37565b505b5b5050611c3a565b611c39868686611e37565b5b6000611c4530610db1565b90506000600c548210159050808015611c6a5750600560159054906101000a900460ff165b8015611c835750600560169054906101000a900460ff16155b8015611cd95750601260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ce857611ce782612165565b5b50505050505b505050565b611cfb61155d565b73ffffffffffffffffffffffffffffffffffffffff16611d19610ee5565b73ffffffffffffffffffffffffffffffffffffffff1614611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d66906132ce565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d90613360565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c906133f2565b60405180910390fd5b611f208383836122eb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9d90613484565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612094919061289b565b60405180910390a36120a78484846122f0565b50505050565b6000806120b8610d16565b15612156576000600754436120cd919061324e565b905060008114806120de5750600181145b806120e95750600281145b156120fd576103de92506103de9150612150565b60028111801561210d5750600681105b15612121576101f492506101f4915061214f565b6005811180156121315750600981105b156121455761012c925061012c915061214e565b60649250606491505b5b5b50612161565b600d549150600e5490505b9091565b6001600560166101000a81548160ff021916908315150217905550600047905060006064605a846121969190612d22565b6121a09190612d93565b905060006064600a856121b39190612d22565b6121bd9190612d93565b90506121c8826122f5565b60006121dd844761253290919063ffffffff16565b9050600060646050836121f09190612d22565b6121fa9190612d93565b90506000606460148461220d9190612d22565b6122179190612d93565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015612281573d6000803e3d6000fd5b5061228c8482612548565b7f1c841384db468472a5fbf7aed8cfb997b2bd7bde48ac43abaa23dc5bd1898de88682846040516122bf939291906134a4565b60405180910390a15050505050506000600560166101000a81548160ff02191690831515021790555050565b505050565b505050565b6000600267ffffffffffffffff811115612312576123116134db565b5b6040519080825280602002602001820160405280156123405781602001602082028036833780820191505090505b50905030816000815181106123585761235761350a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612421919061354e565b816001815181106124355761243461350a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061249a307f000000000000000000000000000000000000000000000000000000000000000084611565565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016124fc959493929190613674565b600060405180830381600087803b15801561251657600080fd5b505af115801561252a573d6000803e3d6000fd5b505050505050565b60008183612540919061324e565b905092915050565b612573307f000000000000000000000000000000000000000000000000000000000000000084611565565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016125da969594939291906136ce565b60606040518083038185885af11580156125f8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061261d9190613744565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561265e578082015181840152602081019050612643565b60008484015250505050565b6000601f19601f8301169050919050565b600061268682612624565b612690818561262f565b93506126a0818560208601612640565b6126a98161266a565b840191505092915050565b600060208201905081810360008301526126ce818461267b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612706826126db565b9050919050565b612716816126fb565b811461272157600080fd5b50565b6000813590506127338161270d565b92915050565b6000819050919050565b61274c81612739565b811461275757600080fd5b50565b60008135905061276981612743565b92915050565b60008060408385031215612786576127856126d6565b5b600061279485828601612724565b92505060206127a58582860161275a565b9150509250929050565b60008115159050919050565b6127c4816127af565b82525050565b60006020820190506127df60008301846127bb565b92915050565b6000819050919050565b600061280a612805612800846126db565b6127e5565b6126db565b9050919050565b600061281c826127ef565b9050919050565b600061282e82612811565b9050919050565b61283e81612823565b82525050565b60006020820190506128596000830184612835565b92915050565b600060208284031215612875576128746126d6565b5b600061288384828501612724565b91505092915050565b61289581612739565b82525050565b60006020820190506128b0600083018461288c565b92915050565b6000806000606084860312156128cf576128ce6126d6565b5b60006128dd86828701612724565b93505060206128ee86828701612724565b92505060406128ff8682870161275a565b9150509250925092565b612912816126fb565b82525050565b600060208201905061292d6000830184612909565b92915050565b600060ff82169050919050565b61294981612933565b82525050565b60006020820190506129646000830184612940565b92915050565b612973816127af565b811461297e57600080fd5b50565b6000813590506129908161296a565b92915050565b600080604083850312156129ad576129ac6126d6565b5b60006129bb85828601612724565b92505060206129cc85828601612981565b9150509250929050565b6000602082840312156129ec576129eb6126d6565b5b60006129fa84828501612981565b91505092915050565b600060208284031215612a1957612a186126d6565b5b6000612a278482850161275a565b91505092915050565b60008060408385031215612a4757612a466126d6565b5b6000612a558582860161275a565b9250506020612a668582860161275a565b9150509250929050565b60008060408385031215612a8757612a866126d6565b5b6000612a9585828601612724565b9250506020612aa685828601612724565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612af757607f821691505b602082108103612b0a57612b09612ab0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b4a82612739565b9150612b5583612739565b9250828201905080821115612b6d57612b6c612b10565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612bcf60258361262f565b9150612bda82612b73565b604082019050919050565b60006020820190508181036000830152612bfe81612bc2565b9050919050565b7f63616e74207365742062757920666565206d6f7265207468616e203525000000600082015250565b6000612c3b601d8361262f565b9150612c4682612c05565b602082019050919050565b60006020820190508181036000830152612c6a81612c2e565b9050919050565b7f63616e74207365742073656c6c20666565206d6f7265207468616e2035250000600082015250565b6000612ca7601e8361262f565b9150612cb282612c71565b602082019050919050565b60006020820190508181036000830152612cd681612c9a565b9050919050565b6000608082019050612cf2600083018761288c565b612cff602083018661288c565b612d0c604083018561288c565b612d19606083018461288c565b95945050505050565b6000612d2d82612739565b9150612d3883612739565b9250828202612d4681612739565b91508282048414831517612d5d57612d5c612b10565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d9e82612739565b9150612da983612739565b925082612db957612db8612d64565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000612e2060358361262f565b9150612e2b82612dc4565b604082019050919050565b60006020820190508181036000830152612e4f81612e13565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000612eb260348361262f565b9150612ebd82612e56565b604082019050919050565b60006020820190508181036000830152612ee181612ea5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f4460268361262f565b9150612f4f82612ee8565b604082019050919050565b60006020820190508181036000830152612f7381612f37565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612fd660248361262f565b9150612fe182612f7a565b604082019050919050565b6000602082019050818103600083015261300581612fc9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061306860228361262f565b91506130738261300c565b604082019050919050565b600060208201905081810360008301526130978161305b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006130d4601d8361262f565b91506130df8261309e565b602082019050919050565b60006020820190508181036000830152613103816130c7565b9050919050565b7f54726164696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b600061314060138361262f565b915061314b8261310a565b602082019050919050565b6000602082019050818103600083015261316f81613133565b9050919050565b7f4c696d6974205265616368656400000000000000000000000000000000000000600082015250565b60006131ac600d8361262f565b91506131b782613176565b602082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b7f4d617820486f6c64204c696d6974205265616368656400000000000000000000600082015250565b600061321860168361262f565b9150613223826131e2565b602082019050919050565b600060208201905081810360008301526132478161320b565b9050919050565b600061325982612739565b915061326483612739565b925082820390508181111561327c5761327b612b10565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132b860208361262f565b91506132c382613282565b602082019050919050565b600060208201905081810360008301526132e7816132ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061334a60258361262f565b9150613355826132ee565b604082019050919050565b600060208201905081810360008301526133798161333d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006133dc60238361262f565b91506133e782613380565b604082019050919050565b6000602082019050818103600083015261340b816133cf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061346e60268361262f565b915061347982613412565b604082019050919050565b6000602082019050818103600083015261349d81613461565b9050919050565b60006060820190506134b9600083018661288c565b6134c6602083018561288c565b6134d3604083018461288c565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506135488161270d565b92915050565b600060208284031215613564576135636126d6565b5b600061357284828501613539565b91505092915050565b6000819050919050565b60006135a061359b6135968461357b565b6127e5565b612739565b9050919050565b6135b081613585565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6135eb816126fb565b82525050565b60006135fd83836135e2565b60208301905092915050565b6000602082019050919050565b6000613621826135b6565b61362b81856135c1565b9350613636836135d2565b8060005b8381101561366757815161364e88826135f1565b975061365983613609565b92505060018101905061363a565b5085935050505092915050565b600060a082019050613689600083018861288c565b61369660208301876135a7565b81810360408301526136a88186613616565b90506136b76060830185612909565b6136c4608083018461288c565b9695505050505050565b600060c0820190506136e36000830189612909565b6136f0602083018861288c565b6136fd60408301876135a7565b61370a60608301866135a7565b6137176080830185612909565b61372460a083018461288c565b979650505050505050565b60008151905061373e81612743565b92915050565b60008060006060848603121561375d5761375c6126d6565b5b600061376b8682870161372f565b935050602061377c8682870161372f565b925050604061378d8682870161372f565b915050925092509256fea2646970667358221220f4ed06f4699418328c9fe20c6385665138f5ea6dfd7b72bdb1f075dd5cb6005964736f6c63430008140033000000000000000000000000d29ff50bd08f2bb8387d33944df130b59a5c1a0a0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106102605760003560e01c8063880bcbc111610144578063bfc2e998116100b6578063d33f40521161007a578063d33f405214610909578063dd62ed3e14610934578063e2f4560514610971578063ea516b4e1461099c578063f29b2239146109c7578063f2fde38b146109f257610267565b8063bfc2e9981461083c578063c024666814610865578063c4ffc23c1461088e578063d0243792146108b7578063d257b34f146108e057610267565b80639a7a23d6116101085780639a7a23d614610706578063a2f7623e1461072f578063a457c2d71461075a578063a9059cbb14610797578063b62496f5146107d4578063b9770ccd1461081157610267565b8063880bcbc1146106335780638da5cb5b1461065c578063924de9b71461068757806395d89b41146106b05780639a36dfa1146106db57610267565b80633938a5b4116101dd5780635e66b7b1116101a15780635e66b7b1146105475780636ddd17131461057257806370a082311461059d578063715018a6146105da578063751039fc146105f15780637adb90a31461060857610267565b80633938a5b41461044e578063395093511461047757806345ce3219146104b457806349bd5a5e146104df5780635723f3641461050a57610267565b806323b872dd1161022457806323b872dd1461036757806327c8f835146103a4578063313ce567146103cf57806332cb6b0c146103fa5780633594dea31461042557610267565b806306fdde031461026c578063095ea7b3146102975780631694505e146102d457806316c16382146102ff57806318160ddd1461033c57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a1b565b60405161028e91906126b4565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b9919061276f565b610aad565b6040516102cb91906127ca565b60405180910390f35b3480156102e057600080fd5b506102e9610ad0565b6040516102f69190612844565b60405180910390f35b34801561030b57600080fd5b506103266004803603810190610321919061285f565b610af4565b60405161033391906127ca565b60405180910390f35b34801561034857600080fd5b50610351610b14565b60405161035e919061289b565b60405180910390f35b34801561037357600080fd5b5061038e600480360381019061038991906128b6565b610b1e565b60405161039b91906127ca565b60405180910390f35b3480156103b057600080fd5b506103b9610b4d565b6040516103c69190612918565b60405180910390f35b3480156103db57600080fd5b506103e4610b53565b6040516103f1919061294f565b60405180910390f35b34801561040657600080fd5b5061040f610b5c565b60405161041c919061289b565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190612996565b610b66565b005b34801561045a57600080fd5b506104756004803603810190610470919061285f565b610c17565b005b34801561048357600080fd5b5061049e6004803603810190610499919061276f565b610cdf565b6040516104ab91906127ca565b60405180910390f35b3480156104c057600080fd5b506104c9610d16565b6040516104d691906127ca565b60405180910390f35b3480156104eb57600080fd5b506104f4610d54565b6040516105019190612918565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c919061285f565b610d78565b60405161053e91906127ca565b60405180910390f35b34801561055357600080fd5b5061055c610d98565b604051610569919061289b565b60405180910390f35b34801561057e57600080fd5b50610587610d9e565b60405161059491906127ca565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf919061285f565b610db1565b6040516105d1919061289b565b60405180910390f35b3480156105e657600080fd5b506105ef610df9565b005b3480156105fd57600080fd5b50610606610e0d565b005b34801561061457600080fd5b5061061d610e2e565b60405161062a919061289b565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190612996565b610e34565b005b34801561066857600080fd5b50610671610ee5565b60405161067e9190612918565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a991906129d6565b610f0f565b005b3480156106bc57600080fd5b506106c5610f34565b6040516106d291906126b4565b60405180910390f35b3480156106e757600080fd5b506106f0610fc6565b6040516106fd919061289b565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612996565b610fcc565b005b34801561073b57600080fd5b50610744611075565b604051610751919061289b565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c919061276f565b61107b565b60405161078e91906127ca565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b9919061276f565b6110f2565b6040516107cb91906127ca565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f6919061285f565b611115565b60405161080891906127ca565b60405180910390f35b34801561081d57600080fd5b50610826611135565b604051610833919061289b565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e9190612a03565b61113b565b005b34801561087157600080fd5b5061088c60048036038101906108879190612996565b61119b565b005b34801561089a57600080fd5b506108b560048036038101906108b09190612a30565b61124c565b005b3480156108c357600080fd5b506108de60048036038101906108d99190612a30565b61132f565b005b3480156108ec57600080fd5b5061090760048036038101906109029190612a03565b611342565b005b34801561091557600080fd5b5061091e61141b565b60405161092b919061289b565b60405180910390f35b34801561094057600080fd5b5061095b60048036038101906109569190612a70565b611421565b604051610968919061289b565b60405180910390f35b34801561097d57600080fd5b506109866114a8565b604051610993919061289b565b60405180910390f35b3480156109a857600080fd5b506109b16114ae565b6040516109be919061289b565b60405180910390f35b3480156109d357600080fd5b506109dc6114b4565b6040516109e99190612918565b60405180910390f35b3480156109fe57600080fd5b50610a196004803603810190610a14919061285f565b6114da565b005b606060038054610a2a90612adf565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5690612adf565b8015610aa35780601f10610a7857610100808354040283529160200191610aa3565b820191906000526020600020905b815481529060010190602001808311610a8657829003601f168201915b5050505050905090565b600080610ab861155d565b9050610ac5818585611565565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60116020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b600080610b2961155d565b9050610b3685828561172e565b610b418585856117ba565b60019150509392505050565b61dead81565b60006009905090565b655af3107a400081565b610b6e611cf3565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fbae3eaaa676f6ed2f64ff6e0a9b11446fe058c8bb2b256b5be6754bea53d98c682604051610c0b91906127ca565b60405180910390a25050565b610c1f611cf3565b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f56cd4ef2175d26845a303e42ee8bd2d5bf61139fb2e377c8e7057a78d720a4ba60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610cea61155d565b9050610d0b818585610cfc8589611421565b610d069190612b3f565b611565565b600191505092915050565b600060011515600560149054906101000a900460ff16151503610d4c5743600b54600754610d449190612b3f565b119050610d51565b600190505b90565b7f000000000000000000000000d6643becb0cad3a9e62e603cb3ce5cc9d6b02e1681565b60106020528060005260406000206000915054906101000a900460ff1681565b600d5481565b600560159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e01611cf3565b610e0b6000611d71565b565b610e15611cf3565b610e1d610b14565b6008819055506103e8600981905550565b600b5481565b610e3c611cf3565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f1d9da607c8ec13d44fe3a293d51d1591f8152831929968f4e4b8de5c8f17c52182604051610ed991906127ca565b60405180910390a25050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f17611cf3565b80600560156101000a81548160ff02191690831515021790555050565b606060048054610f4390612adf565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6f90612adf565b8015610fbc5780601f10610f9157610100808354040283529160200191610fbc565b820191906000526020600020905b815481529060010190602001808311610f9f57829003601f168201915b5050505050905090565b60085481565b610fd4611cf3565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fd697769bbf9b0ff9ee5e6890c23a661759088388b4d1cc3bd1d196f460830db760405160405180910390a35050565b600e5481565b60008061108661155d565b905060006110948286611421565b9050838110156110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090612be5565b60405180910390fd5b6110e68286868403611565565b60019250505092915050565b6000806110fd61155d565b905061110a8185856117ba565b600191505092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b600a5481565b611143611cf3565b6001600560146101000a81548160ff0219169083151502179055504360078190555080600b819055507ff34c6b67ef9e5c632e47eea0f54b50c0709aa3d721b76aaef0c495849f71ba2160405160405180910390a150565b6111a3611cf3565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f52371553ede18d04912cc04027aacbc86f981d89d1e708edc60f4840616a843b8260405161124091906127ca565b60405180910390a25050565b611254611cf3565b6032821115611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90612c51565b60405180910390fd5b60328111156112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390612cbd565b60405180910390fd5b7f47b8000dd37c62e9657775efed4c1248a3744cee9b67e750012c1514c31d2fbd600d5483600e54846040516113159493929190612cdd565b60405180910390a181600d8190555080600e819055505050565b611337611cf3565b816009819055505050565b61134a611cf3565b620186a06001611358610b14565b6113629190612d22565b61136c9190612d93565b8110156113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590612e36565b60405180910390fd5b6103e860056113bb610b14565b6113c59190612d22565b6113cf9190612d93565b811115611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890612ec8565b60405180910390fd5b80600c8190555050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b60095481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114e2611cf3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890612f5a565b60405180910390fd5b61155a81611d71565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90612fec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a9061307e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611721919061289b565b60405180910390a3505050565b600061173a8484611421565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117b457818110156117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d906130ea565b60405180910390fd5b6117b38484848403611565565b5b50505050565b8273ffffffffffffffffffffffffffffffffffffffff166117d9610ee5565b73ffffffffffffffffffffffffffffffffffffffff16148061182d57508173ffffffffffffffffffffffffffffffffffffffff16611815610ee5565b73ffffffffffffffffffffffffffffffffffffffff16145b156118425761183d838383611e37565b611cee565b600560149054906101000a900460ff16611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890613156565b60405180910390fd5b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a605781156119f3576103e8611995610b14565b6009546119a29190612d22565b6119ac9190612d93565b8311156119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e5906131c2565b60405180910390fd5b611a5f565b8015611a5e576103e8611a04610b14565b600a54611a119190612d22565b611a1b9190612d93565b831115611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a54906131c2565b60405180910390fd5b5b5b5b601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b0a57600854611abd85610db1565b84611ac89190612b3f565b1115611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b009061322e565b60405180910390fd5b5b6000600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b6b57508280611b6a5750815b5b90508015611c2e57600080611b7e6120ad565b915091508415611bd65760006103e88388611b999190612d22565b611ba39190612d93565b90506000811115611bba57611bb9893083611e37565b5b611bd08989838a611bcb919061324e565b611e37565b50611c27565b8315611c265760006103e88288611bed9190612d22565b611bf79190612d93565b90506000811115611c0e57611c0d893083611e37565b5b611c248989838a611c1f919061324e565b611e37565b505b5b5050611c3a565b611c39868686611e37565b5b6000611c4530610db1565b90506000600c548210159050808015611c6a5750600560159054906101000a900460ff165b8015611c835750600560169054906101000a900460ff16155b8015611cd95750601260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ce857611ce782612165565b5b50505050505b505050565b611cfb61155d565b73ffffffffffffffffffffffffffffffffffffffff16611d19610ee5565b73ffffffffffffffffffffffffffffffffffffffff1614611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d66906132ce565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d90613360565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c906133f2565b60405180910390fd5b611f208383836122eb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9d90613484565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612094919061289b565b60405180910390a36120a78484846122f0565b50505050565b6000806120b8610d16565b15612156576000600754436120cd919061324e565b905060008114806120de5750600181145b806120e95750600281145b156120fd576103de92506103de9150612150565b60028111801561210d5750600681105b15612121576101f492506101f4915061214f565b6005811180156121315750600981105b156121455761012c925061012c915061214e565b60649250606491505b5b5b50612161565b600d549150600e5490505b9091565b6001600560166101000a81548160ff021916908315150217905550600047905060006064605a846121969190612d22565b6121a09190612d93565b905060006064600a856121b39190612d22565b6121bd9190612d93565b90506121c8826122f5565b60006121dd844761253290919063ffffffff16565b9050600060646050836121f09190612d22565b6121fa9190612d93565b90506000606460148461220d9190612d22565b6122179190612d93565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015612281573d6000803e3d6000fd5b5061228c8482612548565b7f1c841384db468472a5fbf7aed8cfb997b2bd7bde48ac43abaa23dc5bd1898de88682846040516122bf939291906134a4565b60405180910390a15050505050506000600560166101000a81548160ff02191690831515021790555050565b505050565b505050565b6000600267ffffffffffffffff811115612312576123116134db565b5b6040519080825280602002602001820160405280156123405781602001602082028036833780820191505090505b50905030816000815181106123585761235761350a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612421919061354e565b816001815181106124355761243461350a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061249a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611565565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016124fc959493929190613674565b600060405180830381600087803b15801561251657600080fd5b505af115801561252a573d6000803e3d6000fd5b505050505050565b60008183612540919061324e565b905092915050565b612573307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611565565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016125da969594939291906136ce565b60606040518083038185885af11580156125f8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061261d9190613744565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561265e578082015181840152602081019050612643565b60008484015250505050565b6000601f19601f8301169050919050565b600061268682612624565b612690818561262f565b93506126a0818560208601612640565b6126a98161266a565b840191505092915050565b600060208201905081810360008301526126ce818461267b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612706826126db565b9050919050565b612716816126fb565b811461272157600080fd5b50565b6000813590506127338161270d565b92915050565b6000819050919050565b61274c81612739565b811461275757600080fd5b50565b60008135905061276981612743565b92915050565b60008060408385031215612786576127856126d6565b5b600061279485828601612724565b92505060206127a58582860161275a565b9150509250929050565b60008115159050919050565b6127c4816127af565b82525050565b60006020820190506127df60008301846127bb565b92915050565b6000819050919050565b600061280a612805612800846126db565b6127e5565b6126db565b9050919050565b600061281c826127ef565b9050919050565b600061282e82612811565b9050919050565b61283e81612823565b82525050565b60006020820190506128596000830184612835565b92915050565b600060208284031215612875576128746126d6565b5b600061288384828501612724565b91505092915050565b61289581612739565b82525050565b60006020820190506128b0600083018461288c565b92915050565b6000806000606084860312156128cf576128ce6126d6565b5b60006128dd86828701612724565b93505060206128ee86828701612724565b92505060406128ff8682870161275a565b9150509250925092565b612912816126fb565b82525050565b600060208201905061292d6000830184612909565b92915050565b600060ff82169050919050565b61294981612933565b82525050565b60006020820190506129646000830184612940565b92915050565b612973816127af565b811461297e57600080fd5b50565b6000813590506129908161296a565b92915050565b600080604083850312156129ad576129ac6126d6565b5b60006129bb85828601612724565b92505060206129cc85828601612981565b9150509250929050565b6000602082840312156129ec576129eb6126d6565b5b60006129fa84828501612981565b91505092915050565b600060208284031215612a1957612a186126d6565b5b6000612a278482850161275a565b91505092915050565b60008060408385031215612a4757612a466126d6565b5b6000612a558582860161275a565b9250506020612a668582860161275a565b9150509250929050565b60008060408385031215612a8757612a866126d6565b5b6000612a9585828601612724565b9250506020612aa685828601612724565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612af757607f821691505b602082108103612b0a57612b09612ab0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b4a82612739565b9150612b5583612739565b9250828201905080821115612b6d57612b6c612b10565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612bcf60258361262f565b9150612bda82612b73565b604082019050919050565b60006020820190508181036000830152612bfe81612bc2565b9050919050565b7f63616e74207365742062757920666565206d6f7265207468616e203525000000600082015250565b6000612c3b601d8361262f565b9150612c4682612c05565b602082019050919050565b60006020820190508181036000830152612c6a81612c2e565b9050919050565b7f63616e74207365742073656c6c20666565206d6f7265207468616e2035250000600082015250565b6000612ca7601e8361262f565b9150612cb282612c71565b602082019050919050565b60006020820190508181036000830152612cd681612c9a565b9050919050565b6000608082019050612cf2600083018761288c565b612cff602083018661288c565b612d0c604083018561288c565b612d19606083018461288c565b95945050505050565b6000612d2d82612739565b9150612d3883612739565b9250828202612d4681612739565b91508282048414831517612d5d57612d5c612b10565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d9e82612739565b9150612da983612739565b925082612db957612db8612d64565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000612e2060358361262f565b9150612e2b82612dc4565b604082019050919050565b60006020820190508181036000830152612e4f81612e13565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000612eb260348361262f565b9150612ebd82612e56565b604082019050919050565b60006020820190508181036000830152612ee181612ea5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f4460268361262f565b9150612f4f82612ee8565b604082019050919050565b60006020820190508181036000830152612f7381612f37565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612fd660248361262f565b9150612fe182612f7a565b604082019050919050565b6000602082019050818103600083015261300581612fc9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061306860228361262f565b91506130738261300c565b604082019050919050565b600060208201905081810360008301526130978161305b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006130d4601d8361262f565b91506130df8261309e565b602082019050919050565b60006020820190508181036000830152613103816130c7565b9050919050565b7f54726164696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b600061314060138361262f565b915061314b8261310a565b602082019050919050565b6000602082019050818103600083015261316f81613133565b9050919050565b7f4c696d6974205265616368656400000000000000000000000000000000000000600082015250565b60006131ac600d8361262f565b91506131b782613176565b602082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b7f4d617820486f6c64204c696d6974205265616368656400000000000000000000600082015250565b600061321860168361262f565b9150613223826131e2565b602082019050919050565b600060208201905081810360008301526132478161320b565b9050919050565b600061325982612739565b915061326483612739565b925082820390508181111561327c5761327b612b10565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132b860208361262f565b91506132c382613282565b602082019050919050565b600060208201905081810360008301526132e7816132ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061334a60258361262f565b9150613355826132ee565b604082019050919050565b600060208201905081810360008301526133798161333d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006133dc60238361262f565b91506133e782613380565b604082019050919050565b6000602082019050818103600083015261340b816133cf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061346e60268361262f565b915061347982613412565b604082019050919050565b6000602082019050818103600083015261349d81613461565b9050919050565b60006060820190506134b9600083018661288c565b6134c6602083018561288c565b6134d3604083018461288c565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506135488161270d565b92915050565b600060208284031215613564576135636126d6565b5b600061357284828501613539565b91505092915050565b6000819050919050565b60006135a061359b6135968461357b565b6127e5565b612739565b9050919050565b6135b081613585565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6135eb816126fb565b82525050565b60006135fd83836135e2565b60208301905092915050565b6000602082019050919050565b6000613621826135b6565b61362b81856135c1565b9350613636836135d2565b8060005b8381101561366757815161364e88826135f1565b975061365983613609565b92505060018101905061363a565b5085935050505092915050565b600060a082019050613689600083018861288c565b61369660208301876135a7565b81810360408301526136a88186613616565b90506136b76060830185612909565b6136c4608083018461288c565b9695505050505050565b600060c0820190506136e36000830189612909565b6136f0602083018861288c565b6136fd60408301876135a7565b61370a60608301866135a7565b6137176080830185612909565b61372460a083018461288c565b979650505050505050565b60008151905061373e81612743565b92915050565b60008060006060848603121561375d5761375c6126d6565b5b600061376b8682870161372f565b935050602061377c8682870161372f565b925050604061378d8682870161372f565b915050925092509256fea2646970667358221220f4ed06f4699418328c9fe20c6385665138f5ea6dfd7b72bdb1f075dd5cb6005964736f6c63430008140033

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

000000000000000000000000d29ff50bd08f2bb8387d33944df130b59a5c1a0a0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _utilityAddress (address): 0xD29ff50Bd08f2bB8387D33944Df130B59a5C1A0a
Arg [1] : _routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000d29ff50bd08f2bb8387d33944df130b59a5c1a0a
Arg [1] : 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.