ETH Price: $3,322.64 (-1.51%)
Gas: 2 Gwei

Token

AI042 (AI042)
 

Overview

Max Total Supply

50,000,000 AI042

Holders

73

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
0.00000001 AI042

Value
$0.00
0x8df4A5527b19f4D6Ca5E7bF1E243480a457813ce
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:
AI042

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion
File 1 of 11 : AI042.sol
/*

AI042 redefines decentralized finance with a platform that prioritizes security and clarity. It's built for anyone ready to dive into the blockchain world. You'll find a suite of intuitive tools that make dealing with cryptocurrency straightforward and empowering.

Website: https://ai042.io
x (Twitter): https://x.com/ai042_bot
Telegram: https://t.me/AI042_portal
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router02.sol";
import "./ERC20.sol";

contract AI042 is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

    bool private swapping;

    address private operationsWallet;
    address private stakingWallet;

    struct Ratios {
        uint256 operations;
        uint256 staking;
    }

    Ratios public ratios;

    uint256 public maxTransaction;
    uint256 public maxWallet;
    uint256 public swapTokensAtAmount;

    bool public limitsInEffect = true;
    bool public tradingEnabled = false;
    bool public swapEnabled = false;

    uint256 public launchBlockNumber;

    uint256 public buyFees;
    uint256 public sellFees;

    uint256 public divisor = 10_000;

    uint256 private _maxSwapableTokens;
    uint256 private _swapToEthAfterBuys = 45;
    uint256 private _removeLimitsAt = 60;
    uint256 public buysCount = 0;

    mapping(address => bool) public _isExcludedFromFees;
    mapping(address => bool) public _isExcludedmaxTransaction;

    mapping(address => bool) public automatedMarketMakerPairs;

    constructor(
        address _operationsWallet,
        address _stakingWallet
    ) ERC20("AI042", "AI042", 8) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        automatedMarketMakerPairs[address(uniswapV2Pair)] = true;

        uint256 totalSupply = 50_000_000 * 10 ** decimals();

        maxTransaction = (totalSupply * 200) / divisor;
        maxWallet = (totalSupply * 250) / divisor;
        swapTokensAtAmount = (totalSupply * 50) / divisor;
        _maxSwapableTokens = (totalSupply * 100) / divisor;

        buyFees = 2_900;
        sellFees = 2_900;

        ratios.operations = 8500;
        ratios.staking = 1500;

        operationsWallet = _operationsWallet;
        stakingWallet = _stakingWallet;

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(0xdead)] = true;

        _isExcludedmaxTransaction[address(_uniswapV2Router)] = true;
        _isExcludedmaxTransaction[address(uniswapV2Pair)] = true;
        _isExcludedmaxTransaction[owner()] = true;
        _isExcludedmaxTransaction[address(this)] = true;
        _isExcludedmaxTransaction[address(0xdead)] = true;

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Token launched");
        tradingEnabled = true;
        launchBlockNumber = block.number;
        swapEnabled = true;
    }

    function removeLimits() internal returns (bool) {
        limitsInEffect = false;
        buyFees = 500;
        sellFees = 500;
        return true;
    }

    function setBuyFees(uint256 _buyFees) public onlyOwner {
        require(_buyFees + sellFees <= 1500, "Fees exceed 15%");
        buyFees = _buyFees;
    }

    function setSellFees(uint256 _sellFees) public onlyOwner {
        require(buyFees + _sellFees <= 1500, "Fees exceed 15%");
        sellFees = _sellFees;
    }

    // Change the minimum amount of tokens to sell from fees
    function setMinSwapTokensAtAmount(
        uint256 _swapTokensAtAmount
    ) public onlyOwner {
        require(
            _swapTokensAtAmount >= (totalSupply() * 1) / divisor,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            _swapTokensAtAmount <= (totalSupply() * 50) / divisor,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = _swapTokensAtAmount;
    }

    function setOperationsWallet(address _operationsWallet) public onlyOwner {
        operationsWallet = _operationsWallet;
    }

    function setStakingWallet(address _stakingWallet) public onlyOwner {
        stakingWallet = _stakingWallet;
    }

    function updateRatios(
        uint256 _operations,
        uint256 _staking
    ) public onlyOwner {
        require(_operations + _staking <= 10000, "Ratios exceed 100%");
        ratios.operations = _operations;
        ratios.staking = _staking;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingEnabled) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

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

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

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to] &&
            buysCount > _swapToEthAfterBuys
        ) {
            swapping = true;
            swapBack(min(contractTokenBalance, _maxSwapableTokens));
            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellFees > 0) {
                fees = amount.mul(sellFees).div(divisor);
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyFees > 0) {
                fees = amount.mul(buyFees).div(divisor);
                buysCount++;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);

        if (buysCount >= _removeLimitsAt && limitsInEffect) {
            removeLimits();
        }
    }

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

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

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

    function swapBack(uint256 amount) private {
        bool success;

        if (amount == 0) {
            return;
        }

        uint256 amountToSwapForETH = amount;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance;

        uint256 operationsShare = (ethBalance * ratios.operations) / divisor;
        uint256 stakingShare = (ethBalance * ratios.staking) / divisor;

        (success, ) = address(operationsWallet).call{value: operationsShare}(
            ""
        );
        (success, ) = address(stakingWallet).call{value: stakingShare}("");
    }

    function min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

    function manualSwap() external {
        require(_msgSender() == operationsWallet);
        uint256 tokenBalance = balanceOf(address(this));
        if (tokenBalance > 0) {
            swapBack(tokenBalance);
        }
    }
}

File 2 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";

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;
    uint8 private _decimals;

    constructor(string memory name_, string memory symbol_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

    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;
        }
        _totalSupply -= amount;

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

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

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 3 of 11 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT 
pragma solidity ^0.8.0;
interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

File 4 of 11 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

File 5 of 11 : IUniswapV2Factory.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.8.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 6 of 11 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 10 of 11 : 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 11 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_operationsWallet","type":"address"},{"internalType":"address","name":"_stakingWallet","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buysCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"divisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","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":[],"name":"launchBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ratios","outputs":[{"internalType":"uint256","name":"operations","type":"uint256"},{"internalType":"uint256","name":"staking","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFees","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapTokensAtAmount","type":"uint256"}],"name":"setMinSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsWallet","type":"address"}],"name":"setOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFees","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingWallet","type":"address"}],"name":"setStakingWallet","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"uint256","name":"_operations","type":"uint256"},{"internalType":"uint256","name":"_staking","type":"uint256"}],"name":"updateRatios","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055600e805462ffffff19166001179055612710601255602d601455603c60155560006016553480156200005b57600080fd5b50604051620029a0380380620029a08339810160408190526200007e9162000623565b60408051808201825260058082526420a4981a1960d91b60208084018290528451808601909552918452908301529060086003620000bd8482620006ff565b506004620000cc8382620006ff565b506005805460ff191660ff9290921691909117905550620000f69050620000f03390565b620004bf565b6006546040805163c45a015560e01b815290516001600160a01b0390921691829163c45a01559160048083019260209291908290030181865afa15801562000142573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001689190620007cb565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001dc9190620007cb565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002509190620007cb565b6001600160a01b031660a08190526000908152601960205260408120805460ff191660011790556200028460055460ff1690565b6200029190600a62000905565b620002a1906302faf08062000916565b601254909150620002b48260c862000916565b620002c0919062000930565b600b55601254620002d38260fa62000916565b620002df919062000930565b600c55601254620002f282603262000916565b620002fe919062000930565b600d556012546200031182606462000916565b6200031d919062000930565b601355610b5460108190556011556121346009556105dc600a55600780546001600160a01b038087166001600160a01b03199283161790925560088054868416921691909117905582166080526001601760006200038860055461010090046001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152601784528281208054861660019081179091557f43fedf50e12e5c047fbe3576d03ab50250348e9a6030f531ab6d4ce10f5b030380548716821790558783168252601894859052838220805487168217905560a0519092168152918220805490941681179093556200043860055461010090046001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526018909252812080548316600190811790915561dead9091527fe3ec2099396b7359df1c566dfdf9dfdb5e22fd64a6ede9d61aa32b2f63968fd68054909216179055620004b5338262000519565b5050505062000969565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005745760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000588919062000953565b90915550506001600160a01b03821660009081526020819052604081208054839290620005b790849062000953565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b80516001600160a01b03811681146200061e57600080fd5b919050565b600080604083850312156200063757600080fd5b620006428362000606565b9150620006526020840162000606565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200068657607f821691505b602082108103620006a757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200060157600081815260208120601f850160051c81016020861015620006d65750805b601f850160051c820191505b81811015620006f757828155600101620006e2565b505050505050565b81516001600160401b038111156200071b576200071b6200065b565b62000733816200072c845462000671565b84620006ad565b602080601f8311600181146200076b5760008415620007525750858301515b600019600386901b1c1916600185901b178555620006f7565b600085815260208120601f198616915b828110156200079c578886015182559484019460019091019084016200077b565b5085821015620007bb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007de57600080fd5b620007e98262000606565b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620008475781600019048211156200082b576200082b620007f0565b808516156200083957918102915b93841c93908002906200080b565b509250929050565b6000826200086057506001620008ff565b816200086f57506000620008ff565b81600181146200088857600281146200089357620008b3565b6001915050620008ff565b60ff841115620008a757620008a7620007f0565b50506001821b620008ff565b5060208310610133831016604e8410600b8410161715620008d8575081810a620008ff565b620008e4838362000806565b8060001904821115620008fb57620008fb620007f0565b0290505b92915050565b6000620007e960ff8416836200084f565b8082028115828204841417620008ff57620008ff620007f0565b6000826200094e57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008ff57620008ff620007f0565b60805160a051611ffc620009a4600039600061043d01526000818161033801528181611b7701528181611c300152611c850152611ffc6000f3fe6080604052600436106102bf5760003560e01c80638da5cb5b1161016e578063dd62ed3e116100cb578063e4748b9e1161007f578063f2fde38b11610064578063f2fde38b146107cf578063f887ea40146107ef578063f8b45b051461080f57600080fd5b8063e4748b9e14610799578063ee5ecc89146107af57600080fd5b8063e0f3ccf5116100b0578063e0f3ccf51461073d578063e1bc339414610753578063e2f456051461078357600080fd5b8063dd62ed3e146106c7578063e0bf7fd11461070d57600080fd5b8063b62496f511610122578063cf6d625e11610107578063cf6d625e14610657578063db433efa14610687578063dcf7aef3146106a757600080fd5b8063b62496f514610611578063c3f70b521461064157600080fd5b806395d89b411161015357806395d89b41146105bc578063a457c2d7146105d1578063a9059cbb146105f157600080fd5b80638da5cb5b1461057957806395927c251461059c57600080fd5b80634a62bb651161021c5780636ddd1713116101d0578063715018a6116101b5578063715018a61461053957806384e92c001461054e5780638a8c523c1461056457600080fd5b80636ddd1713146104e357806370a082311461050357600080fd5b80634dd8bd89116102015780634dd8bd891461049857806351bc3c85146104ae5780636b254a61146104c357600080fd5b80634a62bb651461045f5780634ada218b1461047957600080fd5b80631f2dc5ef11610273578063313ce56711610258578063313ce567146103e9578063395093511461040b57806349bd5a5e1461042b57600080fd5b80631f2dc5ef146103b357806323b872dd146103c957600080fd5b80631694505e116102a45780631694505e1461032657806318160ddd146103725780631a860c3e1461039157600080fd5b806306fdde03146102cb578063095ea7b3146102f657600080fd5b366102c657005b600080fd5b3480156102d757600080fd5b506102e0610825565b6040516102ed9190611cf9565b60405180910390f35b34801561030257600080fd5b50610316610311366004611d5c565b6108b7565b60405190151581526020016102ed565b34801561033257600080fd5b5061035a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102ed565b34801561037e57600080fd5b506002545b6040519081526020016102ed565b34801561039d57600080fd5b506103b16103ac366004611d88565b6108ce565b005b3480156103bf57600080fd5b5061038360125481565b3480156103d557600080fd5b506103166103e4366004611da5565b610905565b3480156103f557600080fd5b5060055460405160ff90911681526020016102ed565b34801561041757600080fd5b50610316610426366004611d5c565b6109c9565b34801561043757600080fd5b5061035a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561046b57600080fd5b50600e546103169060ff1681565b34801561048557600080fd5b50600e5461031690610100900460ff1681565b3480156104a457600080fd5b5061038360165481565b3480156104ba57600080fd5b506103b1610a05565b3480156104cf57600080fd5b506103b16104de366004611de6565b610a47565b3480156104ef57600080fd5b50600e546103169062010000900460ff1681565b34801561050f57600080fd5b5061038361051e366004611d88565b6001600160a01b031660009081526020819052604090205490565b34801561054557600080fd5b506103b1610b74565b34801561055a57600080fd5b50610383600f5481565b34801561057057600080fd5b506103b1610b88565b34801561058557600080fd5b5060055461010090046001600160a01b031661035a565b3480156105a857600080fd5b506103b16105b7366004611de6565b610bff565b3480156105c857600080fd5b506102e0610c6b565b3480156105dd57600080fd5b506103166105ec366004611d5c565b610c7a565b3480156105fd57600080fd5b5061031661060c366004611d5c565b610d2b565b34801561061d57600080fd5b5061031661062c366004611d88565b60196020526000908152604090205460ff1681565b34801561064d57600080fd5b50610383600b5481565b34801561066357600080fd5b50600954600a54610672919082565b604080519283526020830191909152016102ed565b34801561069357600080fd5b506103b16106a2366004611dff565b610d38565b3480156106b357600080fd5b506103b16106c2366004611de6565b610da6565b3480156106d357600080fd5b506103836106e2366004611e21565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561071957600080fd5b50610316610728366004611d88565b60176020526000908152604090205460ff1681565b34801561074957600080fd5b5061038360115481565b34801561075f57600080fd5b5061031661076e366004611d88565b60186020526000908152604090205460ff1681565b34801561078f57600080fd5b50610383600d5481565b3480156107a557600080fd5b5061038360105481565b3480156107bb57600080fd5b506103b16107ca366004611d88565b610e12565b3480156107db57600080fd5b506103b16107ea366004611d88565b610e49565b3480156107fb57600080fd5b5060065461035a906001600160a01b031681565b34801561081b57600080fd5b50610383600c5481565b60606003805461083490611e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461086090611e5a565b80156108ad5780601f10610882576101008083540402835291602001916108ad565b820191906000526020600020905b81548152906001019060200180831161089057829003601f168201915b5050505050905090565b60006108c4338484610ed6565b5060015b92915050565b6108d661102e565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600061091284848461108e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109b15760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6109be8533858403610ed6565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108c4918590610a00908690611eaa565b610ed6565b6007546001600160a01b0316336001600160a01b031614610a2557600080fd5b306000908152602081905260409020548015610a4457610a448161178f565b50565b610a4f61102e565b601254600254610a60906001611ebd565b610a6a9190611ed4565b811015610adf5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e000000000000000000000060648201526084016109a8565b601254600254610af0906032611ebd565b610afa9190611ed4565b811115610b6f5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e00000000000000000000000060648201526084016109a8565b600d55565b610b7c61102e565b610b866000611899565b565b610b9061102e565b600e54610100900460ff1615610be85760405162461bcd60e51b815260206004820152600e60248201527f546f6b656e206c61756e6368656400000000000000000000000000000000000060448201526064016109a8565b600e805443600f5562ffff00191662010100179055565b610c0761102e565b6105dc81601054610c189190611eaa565b1115610c665760405162461bcd60e51b815260206004820152600f60248201527f466565732065786365656420313525000000000000000000000000000000000060448201526064016109a8565b601155565b60606004805461083490611e5a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d145760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016109a8565b610d213385858403610ed6565b5060019392505050565b60006108c433848461108e565b610d4061102e565b612710610d4d8284611eaa565b1115610d9b5760405162461bcd60e51b815260206004820152601260248201527f526174696f73206578636565642031303025000000000000000000000000000060448201526064016109a8565b600991909155600a55565b610dae61102e565b6105dc60115482610dbf9190611eaa565b1115610e0d5760405162461bcd60e51b815260206004820152600f60248201527f466565732065786365656420313525000000000000000000000000000000000060448201526064016109a8565b601055565b610e1a61102e565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610e5161102e565b6001600160a01b038116610ecd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109a8565b610a4481611899565b6001600160a01b038316610f515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109a8565b6001600160a01b038216610fcd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109a8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03610100909104163314610b865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a8565b6001600160a01b0383166110f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109a8565b6001600160a01b0382166111545760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109a8565b8060000361116d576111688383600061190a565b505050565b600e5460ff1615611517576005546001600160a01b0384811661010090920416148015906111ae57506005546001600160a01b038381166101009092041614155b80156111c257506001600160a01b03821615155b80156111d957506001600160a01b03821661dead14155b80156111ef5750600654600160a01b900460ff16155b1561151757600e54610100900460ff1661128e576001600160a01b03831660009081526017602052604090205460ff168061124257506001600160a01b03821660009081526017602052604090205460ff165b61128e5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e0000000000000000000060448201526064016109a8565b6001600160a01b03831660009081526019602052604090205460ff1680156112cf57506001600160a01b03821660009081526018602052604090205460ff16155b156113c557600b5481111561134c5760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e2e000000000000000000000000000000000060648201526084016109a8565b600c546001600160a01b0383166000908152602081905260409020546113729083611eaa565b11156113c05760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016109a8565b611517565b6001600160a01b03821660009081526019602052604090205460ff16801561140657506001600160a01b03831660009081526018602052604090205460ff16155b1561148357600b548111156113c05760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e2e0000000000000000000000000000000060648201526084016109a8565b6001600160a01b03821660009081526018602052604090205460ff1661151757600c546001600160a01b0383166000908152602081905260409020546114c99083611eaa565b11156115175760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016109a8565b30600090815260208190526040902054600d54811080159081906115435750600e5462010000900460ff165b80156115595750600654600160a01b900460ff16155b801561157e57506001600160a01b03851660009081526019602052604090205460ff16155b80156115a357506001600160a01b03851660009081526017602052604090205460ff16155b80156115c857506001600160a01b03841660009081526017602052604090205460ff16155b80156115d75750601454601654115b15611614576006805460ff60a01b1916600160a01b17905560135461160690611601908490611af0565b61178f565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b90920482161591168061166257506001600160a01b03851660009081526017602052604090205460ff165b1561166b575060005b6000811561174a576001600160a01b03861660009081526019602052604090205460ff16801561169d57506000601154115b156116ca576116c36012546116bd60115488611b0890919063ffffffff16565b90611b14565b905061172c565b6001600160a01b03871660009081526019602052604090205460ff1680156116f457506000601054115b1561172c576117146012546116bd60105488611b0890919063ffffffff16565b60168054919250600061172683611ef6565b91905055505b801561173d5761173d87308361190a565b6117478186611f0f565b94505b61175587878761190a565b6015546016541015801561176b5750600e5460ff165b1561178657600e805460ff191690556101f460108190556011555b50505050505050565b60008160000361179d575050565b816117a781611b20565b60125460095447916000916117bc9084611ebd565b6117c69190611ed4565b601254600a549192506000916117dc9085611ebd565b6117e69190611ed4565b6007546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114611834576040519150601f19603f3d011682016040523d82523d6000602084013e611839565b606091505b50506008546040519196506001600160a01b0316908290600081818185875af1925050503d8060008114611889576040519150601f19603f3d011682016040523d82523d6000602084013e61188e565b606091505b505050505050505050565b600580546001600160a01b038381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661196e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109a8565b6001600160a01b0382166119d05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109a8565b6001600160a01b03831660009081526020819052604090205481811015611a5f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016109a8565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a96908490611eaa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ae291815260200190565b60405180910390a350505050565b6000818311611aff5782611b01565b815b9392505050565b6000611b018284611ebd565b6000611b018284611ed4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b5557611b55611f22565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf79190611f38565b81600181518110611c0a57611c0a611f22565b60200260200101906001600160a01b031690816001600160a01b031681525050611c55307f000000000000000000000000000000000000000000000000000000000000000084610ed6565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611cc3908590600090869030904290600401611f55565b600060405180830381600087803b158015611cdd57600080fd5b505af1158015611cf1573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611d2657858101830151858201604001528201611d0a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a4457600080fd5b60008060408385031215611d6f57600080fd5b8235611d7a81611d47565b946020939093013593505050565b600060208284031215611d9a57600080fd5b8135611b0181611d47565b600080600060608486031215611dba57600080fd5b8335611dc581611d47565b92506020840135611dd581611d47565b929592945050506040919091013590565b600060208284031215611df857600080fd5b5035919050565b60008060408385031215611e1257600080fd5b50508035926020909101359150565b60008060408385031215611e3457600080fd5b8235611e3f81611d47565b91506020830135611e4f81611d47565b809150509250929050565b600181811c90821680611e6e57607f821691505b602082108103611e8e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108c8576108c8611e94565b80820281158282048414176108c8576108c8611e94565b600082611ef157634e487b7160e01b600052601260045260246000fd5b500490565b600060018201611f0857611f08611e94565b5060010190565b818103818111156108c8576108c8611e94565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f4a57600080fd5b8151611b0181611d47565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611fa55784516001600160a01b031683529383019391830191600101611f80565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122076010a9e2a7137e9bc4e9144099a792a661f5432f49b3eae4b44f6e708a9fa4164736f6c6343000811003300000000000000000000000016584bc2cc989bb05ec412d46b5895be326d59d3000000000000000000000000e65b1e34d0cb9466ee21d6745719681163d4bf95

Deployed Bytecode

0x6080604052600436106102bf5760003560e01c80638da5cb5b1161016e578063dd62ed3e116100cb578063e4748b9e1161007f578063f2fde38b11610064578063f2fde38b146107cf578063f887ea40146107ef578063f8b45b051461080f57600080fd5b8063e4748b9e14610799578063ee5ecc89146107af57600080fd5b8063e0f3ccf5116100b0578063e0f3ccf51461073d578063e1bc339414610753578063e2f456051461078357600080fd5b8063dd62ed3e146106c7578063e0bf7fd11461070d57600080fd5b8063b62496f511610122578063cf6d625e11610107578063cf6d625e14610657578063db433efa14610687578063dcf7aef3146106a757600080fd5b8063b62496f514610611578063c3f70b521461064157600080fd5b806395d89b411161015357806395d89b41146105bc578063a457c2d7146105d1578063a9059cbb146105f157600080fd5b80638da5cb5b1461057957806395927c251461059c57600080fd5b80634a62bb651161021c5780636ddd1713116101d0578063715018a6116101b5578063715018a61461053957806384e92c001461054e5780638a8c523c1461056457600080fd5b80636ddd1713146104e357806370a082311461050357600080fd5b80634dd8bd89116102015780634dd8bd891461049857806351bc3c85146104ae5780636b254a61146104c357600080fd5b80634a62bb651461045f5780634ada218b1461047957600080fd5b80631f2dc5ef11610273578063313ce56711610258578063313ce567146103e9578063395093511461040b57806349bd5a5e1461042b57600080fd5b80631f2dc5ef146103b357806323b872dd146103c957600080fd5b80631694505e116102a45780631694505e1461032657806318160ddd146103725780631a860c3e1461039157600080fd5b806306fdde03146102cb578063095ea7b3146102f657600080fd5b366102c657005b600080fd5b3480156102d757600080fd5b506102e0610825565b6040516102ed9190611cf9565b60405180910390f35b34801561030257600080fd5b50610316610311366004611d5c565b6108b7565b60405190151581526020016102ed565b34801561033257600080fd5b5061035a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102ed565b34801561037e57600080fd5b506002545b6040519081526020016102ed565b34801561039d57600080fd5b506103b16103ac366004611d88565b6108ce565b005b3480156103bf57600080fd5b5061038360125481565b3480156103d557600080fd5b506103166103e4366004611da5565b610905565b3480156103f557600080fd5b5060055460405160ff90911681526020016102ed565b34801561041757600080fd5b50610316610426366004611d5c565b6109c9565b34801561043757600080fd5b5061035a7f000000000000000000000000768a1cd55e5d08a4edd2b546502c4f5e026bd99781565b34801561046b57600080fd5b50600e546103169060ff1681565b34801561048557600080fd5b50600e5461031690610100900460ff1681565b3480156104a457600080fd5b5061038360165481565b3480156104ba57600080fd5b506103b1610a05565b3480156104cf57600080fd5b506103b16104de366004611de6565b610a47565b3480156104ef57600080fd5b50600e546103169062010000900460ff1681565b34801561050f57600080fd5b5061038361051e366004611d88565b6001600160a01b031660009081526020819052604090205490565b34801561054557600080fd5b506103b1610b74565b34801561055a57600080fd5b50610383600f5481565b34801561057057600080fd5b506103b1610b88565b34801561058557600080fd5b5060055461010090046001600160a01b031661035a565b3480156105a857600080fd5b506103b16105b7366004611de6565b610bff565b3480156105c857600080fd5b506102e0610c6b565b3480156105dd57600080fd5b506103166105ec366004611d5c565b610c7a565b3480156105fd57600080fd5b5061031661060c366004611d5c565b610d2b565b34801561061d57600080fd5b5061031661062c366004611d88565b60196020526000908152604090205460ff1681565b34801561064d57600080fd5b50610383600b5481565b34801561066357600080fd5b50600954600a54610672919082565b604080519283526020830191909152016102ed565b34801561069357600080fd5b506103b16106a2366004611dff565b610d38565b3480156106b357600080fd5b506103b16106c2366004611de6565b610da6565b3480156106d357600080fd5b506103836106e2366004611e21565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561071957600080fd5b50610316610728366004611d88565b60176020526000908152604090205460ff1681565b34801561074957600080fd5b5061038360115481565b34801561075f57600080fd5b5061031661076e366004611d88565b60186020526000908152604090205460ff1681565b34801561078f57600080fd5b50610383600d5481565b3480156107a557600080fd5b5061038360105481565b3480156107bb57600080fd5b506103b16107ca366004611d88565b610e12565b3480156107db57600080fd5b506103b16107ea366004611d88565b610e49565b3480156107fb57600080fd5b5060065461035a906001600160a01b031681565b34801561081b57600080fd5b50610383600c5481565b60606003805461083490611e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461086090611e5a565b80156108ad5780601f10610882576101008083540402835291602001916108ad565b820191906000526020600020905b81548152906001019060200180831161089057829003601f168201915b5050505050905090565b60006108c4338484610ed6565b5060015b92915050565b6108d661102e565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600061091284848461108e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109b15760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6109be8533858403610ed6565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108c4918590610a00908690611eaa565b610ed6565b6007546001600160a01b0316336001600160a01b031614610a2557600080fd5b306000908152602081905260409020548015610a4457610a448161178f565b50565b610a4f61102e565b601254600254610a60906001611ebd565b610a6a9190611ed4565b811015610adf5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e000000000000000000000060648201526084016109a8565b601254600254610af0906032611ebd565b610afa9190611ed4565b811115610b6f5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e00000000000000000000000060648201526084016109a8565b600d55565b610b7c61102e565b610b866000611899565b565b610b9061102e565b600e54610100900460ff1615610be85760405162461bcd60e51b815260206004820152600e60248201527f546f6b656e206c61756e6368656400000000000000000000000000000000000060448201526064016109a8565b600e805443600f5562ffff00191662010100179055565b610c0761102e565b6105dc81601054610c189190611eaa565b1115610c665760405162461bcd60e51b815260206004820152600f60248201527f466565732065786365656420313525000000000000000000000000000000000060448201526064016109a8565b601155565b60606004805461083490611e5a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d145760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016109a8565b610d213385858403610ed6565b5060019392505050565b60006108c433848461108e565b610d4061102e565b612710610d4d8284611eaa565b1115610d9b5760405162461bcd60e51b815260206004820152601260248201527f526174696f73206578636565642031303025000000000000000000000000000060448201526064016109a8565b600991909155600a55565b610dae61102e565b6105dc60115482610dbf9190611eaa565b1115610e0d5760405162461bcd60e51b815260206004820152600f60248201527f466565732065786365656420313525000000000000000000000000000000000060448201526064016109a8565b601055565b610e1a61102e565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610e5161102e565b6001600160a01b038116610ecd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109a8565b610a4481611899565b6001600160a01b038316610f515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109a8565b6001600160a01b038216610fcd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109a8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03610100909104163314610b865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a8565b6001600160a01b0383166110f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109a8565b6001600160a01b0382166111545760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109a8565b8060000361116d576111688383600061190a565b505050565b600e5460ff1615611517576005546001600160a01b0384811661010090920416148015906111ae57506005546001600160a01b038381166101009092041614155b80156111c257506001600160a01b03821615155b80156111d957506001600160a01b03821661dead14155b80156111ef5750600654600160a01b900460ff16155b1561151757600e54610100900460ff1661128e576001600160a01b03831660009081526017602052604090205460ff168061124257506001600160a01b03821660009081526017602052604090205460ff165b61128e5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e0000000000000000000060448201526064016109a8565b6001600160a01b03831660009081526019602052604090205460ff1680156112cf57506001600160a01b03821660009081526018602052604090205460ff16155b156113c557600b5481111561134c5760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e2e000000000000000000000000000000000060648201526084016109a8565b600c546001600160a01b0383166000908152602081905260409020546113729083611eaa565b11156113c05760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016109a8565b611517565b6001600160a01b03821660009081526019602052604090205460ff16801561140657506001600160a01b03831660009081526018602052604090205460ff16155b1561148357600b548111156113c05760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e2e0000000000000000000000000000000060648201526084016109a8565b6001600160a01b03821660009081526018602052604090205460ff1661151757600c546001600160a01b0383166000908152602081905260409020546114c99083611eaa565b11156115175760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016109a8565b30600090815260208190526040902054600d54811080159081906115435750600e5462010000900460ff165b80156115595750600654600160a01b900460ff16155b801561157e57506001600160a01b03851660009081526019602052604090205460ff16155b80156115a357506001600160a01b03851660009081526017602052604090205460ff16155b80156115c857506001600160a01b03841660009081526017602052604090205460ff16155b80156115d75750601454601654115b15611614576006805460ff60a01b1916600160a01b17905560135461160690611601908490611af0565b61178f565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b90920482161591168061166257506001600160a01b03851660009081526017602052604090205460ff165b1561166b575060005b6000811561174a576001600160a01b03861660009081526019602052604090205460ff16801561169d57506000601154115b156116ca576116c36012546116bd60115488611b0890919063ffffffff16565b90611b14565b905061172c565b6001600160a01b03871660009081526019602052604090205460ff1680156116f457506000601054115b1561172c576117146012546116bd60105488611b0890919063ffffffff16565b60168054919250600061172683611ef6565b91905055505b801561173d5761173d87308361190a565b6117478186611f0f565b94505b61175587878761190a565b6015546016541015801561176b5750600e5460ff165b1561178657600e805460ff191690556101f460108190556011555b50505050505050565b60008160000361179d575050565b816117a781611b20565b60125460095447916000916117bc9084611ebd565b6117c69190611ed4565b601254600a549192506000916117dc9085611ebd565b6117e69190611ed4565b6007546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114611834576040519150601f19603f3d011682016040523d82523d6000602084013e611839565b606091505b50506008546040519196506001600160a01b0316908290600081818185875af1925050503d8060008114611889576040519150601f19603f3d011682016040523d82523d6000602084013e61188e565b606091505b505050505050505050565b600580546001600160a01b038381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661196e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109a8565b6001600160a01b0382166119d05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109a8565b6001600160a01b03831660009081526020819052604090205481811015611a5f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016109a8565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a96908490611eaa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ae291815260200190565b60405180910390a350505050565b6000818311611aff5782611b01565b815b9392505050565b6000611b018284611ebd565b6000611b018284611ed4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b5557611b55611f22565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf79190611f38565b81600181518110611c0a57611c0a611f22565b60200260200101906001600160a01b031690816001600160a01b031681525050611c55307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ed6565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611cc3908590600090869030904290600401611f55565b600060405180830381600087803b158015611cdd57600080fd5b505af1158015611cf1573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611d2657858101830151858201604001528201611d0a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a4457600080fd5b60008060408385031215611d6f57600080fd5b8235611d7a81611d47565b946020939093013593505050565b600060208284031215611d9a57600080fd5b8135611b0181611d47565b600080600060608486031215611dba57600080fd5b8335611dc581611d47565b92506020840135611dd581611d47565b929592945050506040919091013590565b600060208284031215611df857600080fd5b5035919050565b60008060408385031215611e1257600080fd5b50508035926020909101359150565b60008060408385031215611e3457600080fd5b8235611e3f81611d47565b91506020830135611e4f81611d47565b809150509250929050565b600181811c90821680611e6e57607f821691505b602082108103611e8e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108c8576108c8611e94565b80820281158282048414176108c8576108c8611e94565b600082611ef157634e487b7160e01b600052601260045260246000fd5b500490565b600060018201611f0857611f08611e94565b5060010190565b818103818111156108c8576108c8611e94565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f4a57600080fd5b8151611b0181611d47565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611fa55784516001600160a01b031683529383019391830191600101611f80565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122076010a9e2a7137e9bc4e9144099a792a661f5432f49b3eae4b44f6e708a9fa4164736f6c63430008110033

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

00000000000000000000000016584bc2cc989bb05ec412d46b5895be326d59d3000000000000000000000000e65b1e34d0cb9466ee21d6745719681163d4bf95

-----Decoded View---------------
Arg [0] : _operationsWallet (address): 0x16584BC2cC989Bb05Ec412d46b5895Be326D59D3
Arg [1] : _stakingWallet (address): 0xe65B1e34D0cb9466EE21D6745719681163d4BF95

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000016584bc2cc989bb05ec412d46b5895be326d59d3
Arg [1] : 000000000000000000000000e65b1e34d0cb9466ee21d6745719681163d4bf95


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.