ETH Price: $2,419.45 (+3.49%)

Token

$HUMP (HUMP)
 

Overview

Max Total Supply

69,696,969,420 HUMP

Holders

163

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,413,971.471498014822251252 HUMP

Value
$0.00
0x72d928028c27ec760a1cedb30371999c2bf28ae4
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:
HUMPToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : HUMPToken.sol
//spdx-license-identifier: MIT
pragma solidity 0.8.19;

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

contract HUMPToken is Ownable, ERC20 {
    IUniswapV2Router02 public uniswapV2Router;

    address public marketingWallet;
    address public claimContractAddress;
    address public uniswapV2Pair;
    bool private inSwapAndLiquify;
    bool public tradingEnabled;
    uint256 public marketingReserve;
    uint256 public maxTxAmount = 696969694 * 10 ** decimals(); //1.0% ~700M
    uint256 public maxWalletAmount = 696969694 * 10 ** decimals(); //1.0% ~700M
    uint256 public numTokensSellToAddToETH = 6969696 * 10 ** decimals(); //0.01% ~7M
    uint256 public numTokensSellToAddToLiquidity = 13939393 * 10 ** decimals(); //0.02% ~14M
    uint256 public claimReserve;
    uint256 private supply = 69696969420 * 10 ** decimals(); // ~70B
    uint256 public taxForLiquidity = 200;
    uint256 public taxForMarketing = 100;
    uint256 public taxForClaim = 100;

    mapping(address => bool) public isExcludedFromFee;

    error FailedETHSend();
    error InsufficientBalance();
    error LowerThanOnePercent();
    error MaxTxAmountExceeded();
    error MaxWalletAmountExceeded();
    error TradingNotEnabled();
    error ZeroAddress();

    event ExcludedFromFeeUpdated(
        address indexed owner,
        address indexed account,
        bool indexed isExcluded
    );
    event MaxAmountsUpdated(
        address indexed owner,
        uint256 indexed maxTx,
        uint256 indexed maxWallet
    );
    event SwapAndLiquify(
        uint256 indexed tokensSwapped,
        uint256 indexed ethReceived,
        uint256 indexed tokensIntoLiqudity
    );
    event TaxesUpdated(
        address indexed owner,
        uint256 indexed liquidity,
        uint256 indexed marketing,
        uint256 staking
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    modifier NotZeroAddress(address value) {
        if (value == address(0)) revert ZeroAddress();
        _;
    }

    constructor(
        uint256 liquidityAmount,
        uint256 claimAmount,
        address _uniswapV2Router,
        address _marketingWallet,
        string memory _name,
        string memory _symbol
    ) ERC20(_name, _symbol) {
        uniswapV2Router = IUniswapV2Router02(_uniswapV2Router);
        marketingWallet = _marketingWallet;

        isExcludedFromFee[address(uniswapV2Router)] = true;
        isExcludedFromFee[_msgSender()] = true;
        isExcludedFromFee[marketingWallet] = true;

        //mint tokens
        _mint(_msgSender(), supply - liquidityAmount - claimAmount);
        _mint(address(this), liquidityAmount);
        _mint(address(this), claimAmount);
        claimReserve = claimAmount;

        //create pair
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
                address(this),
                uniswapV2Router.WETH()
            );
    }

    receive() external payable {}

    function addLiquidity(
        address recipient,
        uint256 amount
    ) external payable onlyOwner {
        amount = amount == 0 ? super.balanceOf(address(this)) : amount;
        _addLiquidity(recipient, amount, msg.value);
    }

    function burn(uint256 value) external {
        _burn(_msgSender(), value);
    }

    function distributeRewards() external onlyOwner {
        _distributeRewards();
    }

    function excludeFromFee(
        address _address,
        bool _status
    ) external onlyOwner NotZeroAddress(_address) {
        isExcludedFromFee[_address] = _status;
        emit ExcludedFromFeeUpdated(_msgSender(), _address, _status);
    }

    function setClaimContractAddress(
        address value
    ) external onlyOwner NotZeroAddress(value) {
        claimContractAddress = value;
    }

    function setMarketingWallet(
        address value
    ) external onlyOwner NotZeroAddress(value) {
        marketingWallet = value;
    }

    function setStakingAddrss(
        address value
    ) external onlyOwner NotZeroAddress(value) {
        claimContractAddress = value;
    }

    function setSwapThresholds(
        uint256 ethThreshold,
        uint256 liquidityThreshold
    ) external onlyOwner {
        numTokensSellToAddToETH = ethThreshold;
        numTokensSellToAddToLiquidity = liquidityThreshold;
    }

    function setTaxes(
        uint256 liquidity,
        uint256 marketing,
        uint256 staking
    ) external onlyOwner {
        taxForLiquidity = liquidity;
        taxForMarketing = marketing;
        taxForClaim = staking;
        emit TaxesUpdated(_msgSender(), liquidity, marketing, staking);
    }

    function setTradingEnabled(
        uint256 _maxTxAmount,
        uint256 _maxWalletAmount
    ) external onlyOwner {
        setMaxAmounts(_maxTxAmount, _maxWalletAmount);
        tradingEnabled = true;
    }

    //value should be wei
    function setMaxAmounts(uint256 maxTx, uint256 maxWallet) public onlyOwner {
        if (maxTx < supply / 100) revert LowerThanOnePercent();
        if (maxWallet < supply / 100) revert LowerThanOnePercent();
        maxTxAmount = maxTx;
        maxWalletAmount = maxWallet;
        emit MaxAmountsUpdated(_msgSender(), maxTx, maxWallet);
    }

    function _distributeRewards() private {
        uint256 amount = claimReserve;
        claimReserve = 0;
        address claimAddress = claimContractAddress;
        // Set allowance for the claim contract
        this.approve(claimAddress, amount);

        // Call receiveRewards function in the claim contract
        IClaim(claimAddress).addRewards(amount);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override NotZeroAddress(to) NotZeroAddress(from) {
        // sender has sufficient balance
        if (balanceOf(from) < amount) revert InsufficientBalance();

        // trading is enabled or sender is owner or sender is this contract
        if (!tradingEnabled && from != owner() && from != address(this))
            revert TradingNotEnabled();

        // buys and sells
        if (
            (from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify
        ) {
            // create liqudity on sells only
            if (uniswapV2Pair != from) {
                uint256 reserves = marketingReserve + claimReserve;
                uint256 contractLiquidityBalance = balanceOf(address(this)) -
                    reserves;
                if (contractLiquidityBalance >= numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(numTokensSellToAddToLiquidity);
                }
                uint256 _numTokensSellToAddToETH = numTokensSellToAddToETH;
                if (marketingReserve >= _numTokensSellToAddToETH) {
                    _distributeRewards();

                    marketingReserve -= _numTokensSellToAddToETH;
                    _swapTokensForEth(_numTokensSellToAddToETH);
                    (bool sent, ) = payable(marketingWallet).call{
                        value: address(this).balance
                    }("");
                    if (!sent) revert FailedETHSend();
                }
            }

            // take taxes
            if (!isExcludedFromFee[from] && !isExcludedFromFee[to]) {
                if (amount > maxTxAmount) revert MaxTxAmountExceeded();
                if (uniswapV2Pair != to) {
                    if (amount + balanceOf(to) > maxWalletAmount)
                        revert MaxWalletAmountExceeded();
                }

                uint256 marketingTax = (amount * taxForMarketing) / 1e4;
                uint256 stakingTax = (amount * taxForClaim) / 1e4;
                uint256 liquidityTax = (amount * taxForLiquidity) / 1e4;
                uint256 totalTaxes = marketingTax + stakingTax + liquidityTax;

                marketingReserve += marketingTax;
                claimReserve += stakingTax;
                amount -= totalTaxes;

                super._transfer(from, address(this), totalTaxes);
            }
        }
        super._transfer(from, to, amount);
    }

    function _addLiquidity(
        address recipient,
        uint256 tokenAmount,
        uint256 ethAmount
    ) private lockTheSwap {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            recipient,
            block.timestamp
        );
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = contractTokenBalance / 2;
        uint256 otherHalf = contractTokenBalance - half;

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = address(this).balance - initialBalance;

        _addLiquidity(marketingWallet, otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        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
        );
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 3 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 7 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

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

File 9 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 10 of 10 : IClaim.sol
// SPDX-License-Identifier: AGPL-1.0
pragma solidity 0.8.19;

interface IClaim {
    function addRewards(uint256 amount) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"liquidityAmount","type":"uint256"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"address","name":"_uniswapV2Router","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"FailedETHSend","type":"error"},{"inputs":[],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"LowerThanOnePercent","type":"error"},{"inputs":[],"name":"MaxTxAmountExceeded","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceeded","type":"error"},{"inputs":[],"name":"TradingNotEnabled","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"maxTx","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxAmountsUpdated","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":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"marketing","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"staking","type":"uint256"}],"name":"TaxesUpdated","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimReserve","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":"distributeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"excludeFromFee","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"numTokensSellToAddToETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"value","type":"address"}],"name":"setClaimContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"value","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTx","type":"uint256"},{"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"setMaxAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"value","type":"address"}],"name":"setStakingAddrss","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethThreshold","type":"uint256"},{"internalType":"uint256","name":"liquidityThreshold","type":"uint256"}],"name":"setSwapThresholds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"staking","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setTradingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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"},{"stateMutability":"payable","type":"receive"}]

6080604052620000126012600a620005ca565b620000229063298ae9de620005e2565b600b55620000336012600a620005ca565b620000439063298ae9de620005e2565b600c55620000546012600a620005ca565b6200006390626a5960620005e2565b600d55620000746012600a620005ca565b620000839062d4b2c1620005e2565b600e55620000946012600a620005ca565b620000a59064103a435acc620005e2565b60105560c860115560646012556064601355348015620000c457600080fd5b506040516200258238038062002582833981016040819052620000e791620006de565b8181620000f43362000398565b60046200010283826200080e565b5060056200011182826200080e565b5050600680546001600160a01b038088166001600160a01b03199283168117909355600780549188169190921617905560009081526014602081905260408220805460ff191660019081179091559250906200016a3390565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905560075490911681526014909252902080549091166001179055620001e0620001bd3390565b8688601054620001ce9190620008da565b620001da9190620008da565b620003e8565b620001ec3087620003e8565b620001f83086620003e8565b600f8590556006546040805163c45a015560e01b815290516001600160a01b039092169163c45a0155916004808201926020929091908290030181865afa15801562000248573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026e9190620008f0565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002d1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f79190620008f0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000345573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036b9190620008f0565b600980546001600160a01b0319166001600160a01b03929092169190911790555062000924945050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620004435760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200045791906200090e565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200050c578160001904821115620004f057620004f0620004b5565b80851615620004fe57918102915b93841c9390800290620004d0565b509250929050565b6000826200052557506001620005c4565b816200053457506000620005c4565b81600181146200054d5760028114620005585762000578565b6001915050620005c4565b60ff8411156200056c576200056c620004b5565b50506001821b620005c4565b5060208310610133831016604e8410600b84101617156200059d575081810a620005c4565b620005a98383620004cb565b8060001904821115620005c057620005c0620004b5565b0290505b92915050565b6000620005db60ff84168362000514565b9392505050565b8082028115828204841417620005c457620005c4620004b5565b80516001600160a01b03811681146200061457600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200064157600080fd5b81516001600160401b03808211156200065e576200065e62000619565b604051601f8301601f19908116603f0116810190828211818310171562000689576200068962000619565b81604052838152602092508683858801011115620006a657600080fd5b600091505b83821015620006ca5785820183015181830184015290820190620006ab565b600093810190920192909252949350505050565b60008060008060008060c08789031215620006f857600080fd5b86519550602087015194506200071160408801620005fc565b93506200072160608801620005fc565b60808801519093506001600160401b03808211156200073f57600080fd5b6200074d8a838b016200062f565b935060a08901519150808211156200076457600080fd5b506200077389828a016200062f565b9150509295509295509295565b600181811c908216806200079557607f821691505b602082108103620007b657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004b057600081815260208120601f850160051c81016020861015620007e55750805b601f850160051c820191505b818110156200080657828155600101620007f1565b505050505050565b81516001600160401b038111156200082a576200082a62000619565b62000842816200083b845462000780565b84620007bc565b602080601f8311600181146200087a5760008415620008615750858301515b600019600386901b1c1916600185901b17855562000806565b600085815260208120601f198616915b82811015620008ab578886015182559484019460019091019084016200088a565b5085821015620008ca5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b81810381811115620005c457620005c4620004b5565b6000602082840312156200090357600080fd5b620005db82620005fc565b80820180821115620005c457620005c4620004b5565b611c4e80620009346000396000f3fe60806040526004361061023f5760003560e01c806370a082311161012e578063a9059cbb116100ab578063dd62ed3e1161006f578063dd62ed3e14610662578063df8408fe14610682578063e9dae5ed146106a2578063f2fde38b146106c2578063f345bd85146106e257600080fd5b8063a9059cbb146105e0578063aa4bde2814610600578063ad16a0cf14610616578063bbfad5b51461062c578063d12a76881461064c57600080fd5b80638da5cb5b116100f25780638da5cb5b1461055757806390fe60441461057557806395beac3e1461059557806395d89b41146105ab578063a457c2d7146105c057600080fd5b806370a08231146104d6578063715018a61461050c57806375f0a87414610521578063770c0c25146104a15780638c0b5e221461054157600080fd5b80634321b9be116101bc5780635668870011610180578063566887001461044e5780635d098b38146104615780635e35233a14610481578063613284e8146104a15780636f4a2cd0146104c157600080fd5b80634321b9be146103a757806349bd5a5e146103c75780634ada218b146103e7578063527ffabd146104085780635342acb41461041e57600080fd5b8063313ce56711610203578063313ce5671461031d57806339509351146103395780633e85713d146103595780633fe5f0541461036f57806342966c681461038557600080fd5b806306fdde031461024b578063095ea7b3146102765780631694505e146102a657806318160ddd146102de57806323b872dd146102fd57600080fd5b3661024657005b600080fd5b34801561025757600080fd5b506102606106f8565b60405161026d91906118aa565b60405180910390f35b34801561028257600080fd5b5061029661029136600461190d565b61078a565b604051901515815260200161026d565b3480156102b257600080fd5b506006546102c6906001600160a01b031681565b6040516001600160a01b03909116815260200161026d565b3480156102ea57600080fd5b506003545b60405190815260200161026d565b34801561030957600080fd5b50610296610318366004611939565b6107a4565b34801561032957600080fd5b506040516012815260200161026d565b34801561034557600080fd5b5061029661035436600461190d565b6107c8565b34801561036557600080fd5b506102ef600a5481565b34801561037b57600080fd5b506102ef600f5481565b34801561039157600080fd5b506103a56103a036600461197a565b6107ea565b005b3480156103b357600080fd5b506008546102c6906001600160a01b031681565b3480156103d357600080fd5b506009546102c6906001600160a01b031681565b3480156103f357600080fd5b5060095461029690600160a81b900460ff1681565b34801561041457600080fd5b506102ef60125481565b34801561042a57600080fd5b50610296610439366004611993565b60146020526000908152604090205460ff1681565b6103a561045c36600461190d565b6107f7565b34801561046d57600080fd5b506103a561047c366004611993565b61082d565b34801561048d57600080fd5b506103a561049c3660046119b7565b610880565b3480156104ad57600080fd5b506103a56104bc366004611993565b610923565b3480156104cd57600080fd5b506103a5610976565b3480156104e257600080fd5b506102ef6104f1366004611993565b6001600160a01b031660009081526001602052604090205490565b34801561051857600080fd5b506103a5610988565b34801561052d57600080fd5b506007546102c6906001600160a01b031681565b34801561054d57600080fd5b506102ef600b5481565b34801561056357600080fd5b506000546001600160a01b03166102c6565b34801561058157600080fd5b506103a56105903660046119b7565b61099a565b3480156105a157600080fd5b506102ef60135481565b3480156105b757600080fd5b506102606109c3565b3480156105cc57600080fd5b506102966105db36600461190d565b6109d2565b3480156105ec57600080fd5b506102966105fb36600461190d565b610a52565b34801561060c57600080fd5b506102ef600c5481565b34801561062257600080fd5b506102ef600d5481565b34801561063857600080fd5b506103a56106473660046119b7565b610a60565b34801561065857600080fd5b506102ef600e5481565b34801561066e57600080fd5b506102ef61067d3660046119d9565b610a73565b34801561068e57600080fd5b506103a561069d366004611a20565b610a9e565b3480156106ae57600080fd5b506103a56106bd366004611a4e565b610b26565b3480156106ce57600080fd5b506103a56106dd366004611993565b610b87565b3480156106ee57600080fd5b506102ef60115481565b60606004805461070790611a7a565b80601f016020809104026020016040519081016040528092919081815260200182805461073390611a7a565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b600033610798818585610bfd565b60019150505b92915050565b6000336107b2858285610d22565b6107bd858585610d9c565b506001949350505050565b6000336107988185856107db8383610a73565b6107e59190611aca565b610bfd565b6107f4338261116e565b50565b6107ff61129a565b801561080b578061081c565b306000908152600160205260409020545b90506108298282346112f4565b5050565b61083561129a565b806001600160a01b03811661085d5760405163d92e233d60e01b815260040160405180910390fd5b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b61088861129a565b60646010546108979190611add565b8210156108b75760405163be47268160e01b815260040160405180910390fd5b60646010546108c69190611add565b8110156108e65760405163be47268160e01b815260040160405180910390fd5b600b829055600c8190556040518190839033907fff70ea84716fd57e043b8df4979e73147a04273e856523b47101a287c9ff784190600090a45050565b61092b61129a565b806001600160a01b0381166109535760405163d92e233d60e01b815260040160405180910390fd5b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b61097e61129a565b6109866113c7565b565b61099061129a565b61098660006114a7565b6109a261129a565b6109ac8282610880565b50506009805460ff60a81b1916600160a81b179055565b60606005805461070790611a7a565b600033816109e08286610a73565b905083811015610a455760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6107bd8286868403610bfd565b600033610798818585610d9c565b610a6861129a565b600d91909155600e55565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610aa661129a565b816001600160a01b038116610ace5760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b038316600081815260146020526040808220805460ff1916861515908117909155905190929133917fd2046363976f20595ed813c26abd3cff6b929a9770c0b8a1581a77541ca4a2029190a4505050565b610b2e61129a565b6011839055601282905560138190558183336001600160a01b03167fc41de25ec17722524134407b41150ec8299ec283c57709dcdb2b475de26f444584604051610b7a91815260200190565b60405180910390a4505050565b610b8f61129a565b6001600160a01b038116610bf45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3c565b6107f4816114a7565b6001600160a01b038316610c5f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3c565b6001600160a01b038216610cc05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a3c565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610d2e8484610a73565b90506000198114610d965781811015610d895760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a3c565b610d968484848403610bfd565b50505050565b816001600160a01b038116610dc45760405163d92e233d60e01b815260040160405180910390fd5b836001600160a01b038116610dec5760405163d92e233d60e01b815260040160405180910390fd5b82610e0c866001600160a01b031660009081526001602052604090205490565b1015610e2b57604051631e9acf1760e31b815260040160405180910390fd5b600954600160a81b900460ff16158015610e5357506000546001600160a01b03868116911614155b8015610e6857506001600160a01b0385163014155b15610e86576040516312f1f92360e01b815260040160405180910390fd5b6009546001600160a01b0386811691161480610eaf57506009546001600160a01b038581169116145b8015610ec55750600954600160a01b900460ff16155b1561115c576009546001600160a01b03868116911614610fd5576000600f54600a54610ef19190611aca565b3060009081526001602052604081205491925090610f10908390611aff565b9050600e548110610f2657610f26600e546114f7565b600d54600a548111610fd157610f3a6113c7565b80600a6000828254610f4c9190611aff565b90915550610f5b90508161159a565b6007546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610fa8576040519150601f19603f3d011682016040523d82523d6000602084013e610fad565b606091505b5050905080610fcf5760405163af3f219560e01b815260040160405180910390fd5b505b5050505b6001600160a01b03851660009081526014602052604090205460ff1615801561101757506001600160a01b03841660009081526014602052604090205460ff16155b1561115c57600b5483111561103f5760405163801bc44b60e01b815260040160405180910390fd5b6009546001600160a01b0385811691161461109957600c546001600160a01b03851660009081526001602052604090205461107a9085611aca565b11156110995760405163a9a44dff60e01b815260040160405180910390fd5b6000612710601254856110ac9190611b12565b6110b69190611add565b90506000612710601354866110cb9190611b12565b6110d59190611add565b90506000612710601154876110ea9190611b12565b6110f49190611add565b90506000816111038486611aca565b61110d9190611aca565b905083600a60008282546111219190611aca565b9250508190555082600f600082825461113a9190611aca565b9091555061114a90508188611aff565b96506111578930836116ff565b505050505b6111678585856116ff565b5050505050565b6001600160a01b0382166111ce5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a3c565b6001600160a01b038216600090815260016020526040902054818110156112425760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a3c565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610d15565b6000546001600160a01b031633146109865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a3c565b6009805460ff60a01b1916600160a01b17905560065461131f9030906001600160a01b031684610bfd565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0385811660848301524260a48301529091169063f305d71990839060c40160606040518083038185885af115801561138d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113b29190611b29565b50506009805460ff60a01b1916905550505050565b600f8054600090915560085460405163095ea7b360e01b81526001600160a01b03909116600482018190526024820183905290309063095ea7b3906044016020604051808303816000875af1158015611424573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114489190611b57565b5060405163beceed3960e01b8152600481018390526001600160a01b0382169063beceed3990602401600060405180830381600087803b15801561148b57600080fd5b505af115801561149f573d6000803e3d6000fd5b505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009805460ff60a01b1916600160a01b1790556000611517600283611add565b905060006115258284611aff565b9050476115318361159a565b600061153d8247611aff565b600754909150611557906001600160a01b031684836112f4565b8281857f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56160405160405180910390a450506009805460ff60a01b19169055505050565b6009805460ff60a01b1916600160a01b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106115e2576115e2611b74565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561163b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165f9190611b8a565b8160018151811061167257611672611b74565b6001600160a01b0392831660209182029290920101526006546116989130911684610bfd565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906116d1908590600090869030904290600401611ba7565b600060405180830381600087803b1580156116eb57600080fd5b505af11580156113b2573d6000803e3d6000fd5b6001600160a01b0383166117635760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a3c565b6001600160a01b0382166117c55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a3c565b6001600160a01b0383166000908152600160205260409020548181101561183d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a3c565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061189d9086815260200190565b60405180910390a3610d96565b600060208083528351808285015260005b818110156118d7578581018301518582016040015282016118bb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107f457600080fd5b6000806040838503121561192057600080fd5b823561192b816118f8565b946020939093013593505050565b60008060006060848603121561194e57600080fd5b8335611959816118f8565b92506020840135611969816118f8565b929592945050506040919091013590565b60006020828403121561198c57600080fd5b5035919050565b6000602082840312156119a557600080fd5b81356119b0816118f8565b9392505050565b600080604083850312156119ca57600080fd5b50508035926020909101359150565b600080604083850312156119ec57600080fd5b82356119f7816118f8565b91506020830135611a07816118f8565b809150509250929050565b80151581146107f457600080fd5b60008060408385031215611a3357600080fd5b8235611a3e816118f8565b91506020830135611a0781611a12565b600080600060608486031215611a6357600080fd5b505081359360208301359350604090920135919050565b600181811c90821680611a8e57607f821691505b602082108103611aae57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079e5761079e611ab4565b600082611afa57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561079e5761079e611ab4565b808202811582820484141761079e5761079e611ab4565b600080600060608486031215611b3e57600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611b6957600080fd5b81516119b081611a12565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611b9c57600080fd5b81516119b0816118f8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611bf75784516001600160a01b031683529383019391830191600101611bd2565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f9a3d9c37f8c98f91db4a8bf157205477044f216495a7fa52b549ac87ba12e6c64736f6c6343000813003300000000000000000000000000000000000000009da4632620f1f36d61c80000000000000000000000000000000000000000000009622a7927604851198400000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003b8e9718b1009164685c7ac5a2bf71fdaa45e24300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000052448554d50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000448554d5000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806370a082311161012e578063a9059cbb116100ab578063dd62ed3e1161006f578063dd62ed3e14610662578063df8408fe14610682578063e9dae5ed146106a2578063f2fde38b146106c2578063f345bd85146106e257600080fd5b8063a9059cbb146105e0578063aa4bde2814610600578063ad16a0cf14610616578063bbfad5b51461062c578063d12a76881461064c57600080fd5b80638da5cb5b116100f25780638da5cb5b1461055757806390fe60441461057557806395beac3e1461059557806395d89b41146105ab578063a457c2d7146105c057600080fd5b806370a08231146104d6578063715018a61461050c57806375f0a87414610521578063770c0c25146104a15780638c0b5e221461054157600080fd5b80634321b9be116101bc5780635668870011610180578063566887001461044e5780635d098b38146104615780635e35233a14610481578063613284e8146104a15780636f4a2cd0146104c157600080fd5b80634321b9be146103a757806349bd5a5e146103c75780634ada218b146103e7578063527ffabd146104085780635342acb41461041e57600080fd5b8063313ce56711610203578063313ce5671461031d57806339509351146103395780633e85713d146103595780633fe5f0541461036f57806342966c681461038557600080fd5b806306fdde031461024b578063095ea7b3146102765780631694505e146102a657806318160ddd146102de57806323b872dd146102fd57600080fd5b3661024657005b600080fd5b34801561025757600080fd5b506102606106f8565b60405161026d91906118aa565b60405180910390f35b34801561028257600080fd5b5061029661029136600461190d565b61078a565b604051901515815260200161026d565b3480156102b257600080fd5b506006546102c6906001600160a01b031681565b6040516001600160a01b03909116815260200161026d565b3480156102ea57600080fd5b506003545b60405190815260200161026d565b34801561030957600080fd5b50610296610318366004611939565b6107a4565b34801561032957600080fd5b506040516012815260200161026d565b34801561034557600080fd5b5061029661035436600461190d565b6107c8565b34801561036557600080fd5b506102ef600a5481565b34801561037b57600080fd5b506102ef600f5481565b34801561039157600080fd5b506103a56103a036600461197a565b6107ea565b005b3480156103b357600080fd5b506008546102c6906001600160a01b031681565b3480156103d357600080fd5b506009546102c6906001600160a01b031681565b3480156103f357600080fd5b5060095461029690600160a81b900460ff1681565b34801561041457600080fd5b506102ef60125481565b34801561042a57600080fd5b50610296610439366004611993565b60146020526000908152604090205460ff1681565b6103a561045c36600461190d565b6107f7565b34801561046d57600080fd5b506103a561047c366004611993565b61082d565b34801561048d57600080fd5b506103a561049c3660046119b7565b610880565b3480156104ad57600080fd5b506103a56104bc366004611993565b610923565b3480156104cd57600080fd5b506103a5610976565b3480156104e257600080fd5b506102ef6104f1366004611993565b6001600160a01b031660009081526001602052604090205490565b34801561051857600080fd5b506103a5610988565b34801561052d57600080fd5b506007546102c6906001600160a01b031681565b34801561054d57600080fd5b506102ef600b5481565b34801561056357600080fd5b506000546001600160a01b03166102c6565b34801561058157600080fd5b506103a56105903660046119b7565b61099a565b3480156105a157600080fd5b506102ef60135481565b3480156105b757600080fd5b506102606109c3565b3480156105cc57600080fd5b506102966105db36600461190d565b6109d2565b3480156105ec57600080fd5b506102966105fb36600461190d565b610a52565b34801561060c57600080fd5b506102ef600c5481565b34801561062257600080fd5b506102ef600d5481565b34801561063857600080fd5b506103a56106473660046119b7565b610a60565b34801561065857600080fd5b506102ef600e5481565b34801561066e57600080fd5b506102ef61067d3660046119d9565b610a73565b34801561068e57600080fd5b506103a561069d366004611a20565b610a9e565b3480156106ae57600080fd5b506103a56106bd366004611a4e565b610b26565b3480156106ce57600080fd5b506103a56106dd366004611993565b610b87565b3480156106ee57600080fd5b506102ef60115481565b60606004805461070790611a7a565b80601f016020809104026020016040519081016040528092919081815260200182805461073390611a7a565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b600033610798818585610bfd565b60019150505b92915050565b6000336107b2858285610d22565b6107bd858585610d9c565b506001949350505050565b6000336107988185856107db8383610a73565b6107e59190611aca565b610bfd565b6107f4338261116e565b50565b6107ff61129a565b801561080b578061081c565b306000908152600160205260409020545b90506108298282346112f4565b5050565b61083561129a565b806001600160a01b03811661085d5760405163d92e233d60e01b815260040160405180910390fd5b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b61088861129a565b60646010546108979190611add565b8210156108b75760405163be47268160e01b815260040160405180910390fd5b60646010546108c69190611add565b8110156108e65760405163be47268160e01b815260040160405180910390fd5b600b829055600c8190556040518190839033907fff70ea84716fd57e043b8df4979e73147a04273e856523b47101a287c9ff784190600090a45050565b61092b61129a565b806001600160a01b0381166109535760405163d92e233d60e01b815260040160405180910390fd5b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b61097e61129a565b6109866113c7565b565b61099061129a565b61098660006114a7565b6109a261129a565b6109ac8282610880565b50506009805460ff60a81b1916600160a81b179055565b60606005805461070790611a7a565b600033816109e08286610a73565b905083811015610a455760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6107bd8286868403610bfd565b600033610798818585610d9c565b610a6861129a565b600d91909155600e55565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610aa661129a565b816001600160a01b038116610ace5760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b038316600081815260146020526040808220805460ff1916861515908117909155905190929133917fd2046363976f20595ed813c26abd3cff6b929a9770c0b8a1581a77541ca4a2029190a4505050565b610b2e61129a565b6011839055601282905560138190558183336001600160a01b03167fc41de25ec17722524134407b41150ec8299ec283c57709dcdb2b475de26f444584604051610b7a91815260200190565b60405180910390a4505050565b610b8f61129a565b6001600160a01b038116610bf45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3c565b6107f4816114a7565b6001600160a01b038316610c5f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3c565b6001600160a01b038216610cc05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a3c565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610d2e8484610a73565b90506000198114610d965781811015610d895760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a3c565b610d968484848403610bfd565b50505050565b816001600160a01b038116610dc45760405163d92e233d60e01b815260040160405180910390fd5b836001600160a01b038116610dec5760405163d92e233d60e01b815260040160405180910390fd5b82610e0c866001600160a01b031660009081526001602052604090205490565b1015610e2b57604051631e9acf1760e31b815260040160405180910390fd5b600954600160a81b900460ff16158015610e5357506000546001600160a01b03868116911614155b8015610e6857506001600160a01b0385163014155b15610e86576040516312f1f92360e01b815260040160405180910390fd5b6009546001600160a01b0386811691161480610eaf57506009546001600160a01b038581169116145b8015610ec55750600954600160a01b900460ff16155b1561115c576009546001600160a01b03868116911614610fd5576000600f54600a54610ef19190611aca565b3060009081526001602052604081205491925090610f10908390611aff565b9050600e548110610f2657610f26600e546114f7565b600d54600a548111610fd157610f3a6113c7565b80600a6000828254610f4c9190611aff565b90915550610f5b90508161159a565b6007546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610fa8576040519150601f19603f3d011682016040523d82523d6000602084013e610fad565b606091505b5050905080610fcf5760405163af3f219560e01b815260040160405180910390fd5b505b5050505b6001600160a01b03851660009081526014602052604090205460ff1615801561101757506001600160a01b03841660009081526014602052604090205460ff16155b1561115c57600b5483111561103f5760405163801bc44b60e01b815260040160405180910390fd5b6009546001600160a01b0385811691161461109957600c546001600160a01b03851660009081526001602052604090205461107a9085611aca565b11156110995760405163a9a44dff60e01b815260040160405180910390fd5b6000612710601254856110ac9190611b12565b6110b69190611add565b90506000612710601354866110cb9190611b12565b6110d59190611add565b90506000612710601154876110ea9190611b12565b6110f49190611add565b90506000816111038486611aca565b61110d9190611aca565b905083600a60008282546111219190611aca565b9250508190555082600f600082825461113a9190611aca565b9091555061114a90508188611aff565b96506111578930836116ff565b505050505b6111678585856116ff565b5050505050565b6001600160a01b0382166111ce5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a3c565b6001600160a01b038216600090815260016020526040902054818110156112425760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a3c565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610d15565b6000546001600160a01b031633146109865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a3c565b6009805460ff60a01b1916600160a01b17905560065461131f9030906001600160a01b031684610bfd565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0385811660848301524260a48301529091169063f305d71990839060c40160606040518083038185885af115801561138d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113b29190611b29565b50506009805460ff60a01b1916905550505050565b600f8054600090915560085460405163095ea7b360e01b81526001600160a01b03909116600482018190526024820183905290309063095ea7b3906044016020604051808303816000875af1158015611424573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114489190611b57565b5060405163beceed3960e01b8152600481018390526001600160a01b0382169063beceed3990602401600060405180830381600087803b15801561148b57600080fd5b505af115801561149f573d6000803e3d6000fd5b505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009805460ff60a01b1916600160a01b1790556000611517600283611add565b905060006115258284611aff565b9050476115318361159a565b600061153d8247611aff565b600754909150611557906001600160a01b031684836112f4565b8281857f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56160405160405180910390a450506009805460ff60a01b19169055505050565b6009805460ff60a01b1916600160a01b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106115e2576115e2611b74565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561163b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165f9190611b8a565b8160018151811061167257611672611b74565b6001600160a01b0392831660209182029290920101526006546116989130911684610bfd565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906116d1908590600090869030904290600401611ba7565b600060405180830381600087803b1580156116eb57600080fd5b505af11580156113b2573d6000803e3d6000fd5b6001600160a01b0383166117635760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a3c565b6001600160a01b0382166117c55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a3c565b6001600160a01b0383166000908152600160205260409020548181101561183d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a3c565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061189d9086815260200190565b60405180910390a3610d96565b600060208083528351808285015260005b818110156118d7578581018301518582016040015282016118bb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107f457600080fd5b6000806040838503121561192057600080fd5b823561192b816118f8565b946020939093013593505050565b60008060006060848603121561194e57600080fd5b8335611959816118f8565b92506020840135611969816118f8565b929592945050506040919091013590565b60006020828403121561198c57600080fd5b5035919050565b6000602082840312156119a557600080fd5b81356119b0816118f8565b9392505050565b600080604083850312156119ca57600080fd5b50508035926020909101359150565b600080604083850312156119ec57600080fd5b82356119f7816118f8565b91506020830135611a07816118f8565b809150509250929050565b80151581146107f457600080fd5b60008060408385031215611a3357600080fd5b8235611a3e816118f8565b91506020830135611a0781611a12565b600080600060608486031215611a6357600080fd5b505081359360208301359350604090920135919050565b600181811c90821680611a8e57607f821691505b602082108103611aae57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079e5761079e611ab4565b600082611afa57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561079e5761079e611ab4565b808202811582820484141761079e5761079e611ab4565b600080600060608486031215611b3e57600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611b6957600080fd5b81516119b081611a12565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611b9c57600080fd5b81516119b0816118f8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611bf75784516001600160a01b031683529383019391830191600101611bd2565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f9a3d9c37f8c98f91db4a8bf157205477044f216495a7fa52b549ac87ba12e6c64736f6c63430008130033

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

00000000000000000000000000000000000000009da4632620f1f36d61c80000000000000000000000000000000000000000000009622a7927604851198400000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003b8e9718b1009164685c7ac5a2bf71fdaa45e24300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000052448554d50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000448554d5000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : liquidityAmount (uint256): 48787878594000000000000000000
Arg [1] : claimAmount (uint256): 2904040393000000000000000000
Arg [2] : _uniswapV2Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : _marketingWallet (address): 0x3B8e9718B1009164685C7ac5a2bF71FDAA45e243
Arg [4] : _name (string): $HUMP
Arg [5] : _symbol (string): HUMP

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000009da4632620f1f36d61c80000
Arg [1] : 000000000000000000000000000000000000000009622a792760485119840000
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000003b8e9718b1009164685c7ac5a2bf71fdaa45e243
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 2448554d50000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 48554d5000000000000000000000000000000000000000000000000000000000


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.