ETH Price: $2,708.40 (+0.92%)

Contract

0x7e87b844573ff4fc3Ded2366c748fc7569EEB335
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Disable Transfer...203271982024-07-17 15:39:47211 days ago1721230787IN
0x7e87b844...569EEB335
0 ETH0.0003425114.0168093
Approve203271952024-07-17 15:39:11211 days ago1721230751IN
0x7e87b844...569EEB335
0 ETH0.0007835516.81873542
Approve203271932024-07-17 15:38:47211 days ago1721230727IN
0x7e87b844...569EEB335
0 ETH0.0006901314.80975071
Approve203271902024-07-17 15:38:11211 days ago1721230691IN
0x7e87b844...569EEB335
0 ETH0.0007994417.15551326
Approve203271902024-07-17 15:38:11211 days ago1721230691IN
0x7e87b844...569EEB335
0 ETH0.0007994417.15551326
Approve203271902024-07-17 15:38:11211 days ago1721230691IN
0x7e87b844...569EEB335
0 ETH0.0007994417.15551326
Approve203271882024-07-17 15:37:47211 days ago1721230667IN
0x7e87b844...569EEB335
0 ETH0.0007089915.21439539
Approve203271882024-07-17 15:37:47211 days ago1721230667IN
0x7e87b844...569EEB335
0 ETH0.0007089915.21439539
Approve203271882024-07-17 15:37:47211 days ago1721230667IN
0x7e87b844...569EEB335
0 ETH0.0008021917.21439539
Approve203271882024-07-17 15:37:47211 days ago1721230667IN
0x7e87b844...569EEB335
0 ETH0.0010351922.21439539
Approve203271882024-07-17 15:37:47211 days ago1721230667IN
0x7e87b844...569EEB335
0 ETH0.0010351922.21439539
Approve203271882024-07-17 15:37:47211 days ago1721230667IN
0x7e87b844...569EEB335
0 ETH0.0010351922.21439539
Enable Trading203271862024-07-17 15:37:23211 days ago1721230643IN
0x7e87b844...569EEB335
0 ETH0.0006662613.11962206
Transfer203271572024-07-17 15:31:35211 days ago1721230295IN
0x7e87b844...569EEB335
0 ETH0.0009453514.99913345
Approve203271372024-07-17 15:27:23211 days ago1721230043IN
0x7e87b844...569EEB335
0 ETH0.0006973514.96467784

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ShroomFriends

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

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

    Shroom Friends A Psychedelic Twist on Matt Furie’s Art
    Website: https://www.shroomfriends.vip/
    X (Twitter) https://x.com/shroomfriendsOG
    Telegram: https://t.me/shroomCoinerc

*/

// 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 ShroomFriends is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address private marketingWallet;

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

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

    mapping(address => uint256) private _holderLastTransferBlock;
    bool public transferDelayEnabled = true;

    uint256 public launchBlockNumber;

    uint256 public buyFees;
    uint256 public sellFees;

    uint256 public divisor = 10_000;

    uint256 private _maxSwapableTokens;
    uint256 private _swapToEthAfterBuys = 30;
    uint256 private _buysCount = 0;

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

    mapping(address => bool) public automatedMarketMakerPairs;

    event TransferDelayDisabled();
    event LimitsRemoved();

    constructor(
        address _marketingWallet
    ) ERC20("ShroomFriends", "SHROOM", 18) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);

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

        uint256 totalSupply = 42069 * (10 ** 10) * (10 ** 18);

        maxTransaction = (totalSupply * 150) / divisor;
        maxWallet = (totalSupply * 150) / divisor;
        swapTokensAtAmount = (totalSupply * 25) / divisor;
        _maxSwapableTokens = (totalSupply * 50) / divisor;

        buyFees = 3_500;
        sellFees = 4_000;

        marketingWallet = _marketingWallet;
        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 disableTransferDelay() public onlyOwner {
        transferDelayEnabled = false;
        emit TransferDelayDisabled();
    }

    function removeLimits() public onlyOwner returns (bool) {
        limitsInEffect = false;
        buyFees = 0;
        sellFees = 0;

        emit LimitsRemoved();
        return true;
    }

    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 (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferBlock[tx.origin] < block.number,
                            "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
                        );
                        _holderLastTransferBlock[tx.origin] = block.number;
                    }
                }

                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] ||
            buyFees == 0 ||
            sellFees == 0
        ) {
            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);
    }

    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;

        (success, ) = address(marketingWallet).call{value: ethBalance}("");
    }

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

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": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingWallet","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":[],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"TransferDelayDisabled","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":"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":"disableTransferDelay","outputs":[],"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":"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055600b805462ffffff19166001908117909155600d805460ff19169091179055612710601155601e6013555f601455348015610063575f80fd5b506040516121e83803806121e8833981016040819052610082916105b3565b6040518060400160405280600d81526020016c5368726f6f6d467269656e647360981b815250604051806040016040528060068152602001655348524f4f4d60d01b815250601282600390816100d89190610677565b5060046100e58382610677565b506005805460ff191660ff929092169190911790555061010c90506101073390565b610475565b6006546040805163c45a015560e01b815290516001600160a01b0390921691829163c45a01559160048083019260209291908290030181865afa158015610155573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061017991906105b3565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101e891906105b3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610232573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061025691906105b3565b6001600160a01b031660a08190525f908152601760205260409020805460ff191660011790556011546d14bddab3e51a57cff87a500000009061029a826096610745565b6102a49190610762565b6008556011546102b5826096610745565b6102bf9190610762565b6009556011546102d0826019610745565b6102da9190610762565b600a556011546102eb826032610745565b6102f59190610762565b601255610dac600f55610fa0601055600780546001600160a01b0319166001600160a01b03858116919091179091558216608052600160155f61034560055461010090046001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055308152601584528281208054861660019081179091557f7ed1dca03d96f947ab02d66053f47073699eb6287021936c92f54972932767e580548716821790558783168252601694859052838220805487168217905560a0519092168152918220805490941681179093556103f360055461010090046001600160a01b031690565b6001600160a01b0316815260208082019290925260409081015f908120805494151560ff199586161790553081526016909252812080548316600190811790915561dead9091527f290d80ce586bfe95e1ebf348e3ba109df813891ad867417e64d38c5a50473b57805490921617905561046d33826104ce565b505050610794565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166105285760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546105399190610781565b90915550506001600160a01b0382165f9081526020819052604081208054839290610565908490610781565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b5f602082840312156105c3575f80fd5b81516001600160a01b03811681146105d9575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061060857607f821691505b60208210810361062657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156105ae57805f5260205f20601f840160051c810160208510156106515750805b601f840160051c820191505b81811015610670575f815560010161065d565b5050505050565b81516001600160401b03811115610690576106906105e0565b6106a48161069e84546105f4565b8461062c565b6020601f8211600181146106d6575f83156106bf5750848201515b5f19600385901b1c1916600184901b178455610670565b5f84815260208120601f198516915b8281101561070557878501518255602094850194600190920191016106e5565b508482101561072257868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761075c5761075c610731565b92915050565b5f8261077c57634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561075c5761075c610731565b60805160a051611a106107d85f395f81816103460152610d1e01525f818161026901528181610ce00152818161158f0152818161164601526116820152611a105ff3fe6080604052600436106101f4575f3560e01c80638da5cb5b11610108578063e0bf7fd11161009d578063e4748b9e1161006d578063e4748b9e146105df578063e884f260146105f4578063f2fde38b14610608578063f887ea4014610627578063f8b45b0514610646575f80fd5b8063e0bf7fd114610559578063e0f3ccf514610587578063e1bc33941461059c578063e2f45605146105ca575f80fd5b8063b62496f5116100d8578063b62496f5146104b9578063c3f70b52146104e7578063c876d0b9146104fc578063dd62ed3e14610515575f80fd5b80638da5cb5b1461044557806395d89b4114610467578063a457c2d71461047b578063a9059cbb1461049a575f80fd5b806349bd5a5e1161018957806370a082311161015957806370a08231146103be578063715018a6146103f2578063751039fc1461040857806384e92c001461041c5780638a8c523c14610431575f80fd5b806349bd5a5e146103355780634a62bb65146103685780634ada218b146103815780636ddd17131461039f575f80fd5b80631f2dc5ef116101c45780631f2dc5ef146102c157806323b872dd146102d6578063313ce567146102f55780633950935114610316575f80fd5b806306fdde03146101ff578063095ea7b3146102295780631694505e1461025857806318160ddd146102a3575f80fd5b366101fb57005b5f80fd5b34801561020a575f80fd5b5061021361065b565b60405161022091906116f0565b60405180910390f35b348015610234575f80fd5b50610248610243366004611739565b6106eb565b6040519015158152602001610220565b348015610263575f80fd5b5061028b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610220565b3480156102ae575f80fd5b506002545b604051908152602001610220565b3480156102cc575f80fd5b506102b360115481565b3480156102e1575f80fd5b506102486102f0366004611763565b610701565b348015610300575f80fd5b5060055460405160ff9091168152602001610220565b348015610321575f80fd5b50610248610330366004611739565b6107ae565b348015610340575f80fd5b5061028b7f000000000000000000000000000000000000000000000000000000000000000081565b348015610373575f80fd5b50600b546102489060ff1681565b34801561038c575f80fd5b50600b5461024890610100900460ff1681565b3480156103aa575f80fd5b50600b546102489062010000900460ff1681565b3480156103c9575f80fd5b506102b36103d83660046117a1565b6001600160a01b03165f9081526020819052604090205490565b3480156103fd575f80fd5b506104066107e9565b005b348015610413575f80fd5b506102486107fc565b348015610427575f80fd5b506102b3600e5481565b34801561043c575f80fd5b50610406610847565b348015610450575f80fd5b5060055461010090046001600160a01b031661028b565b348015610472575f80fd5b506102136108af565b348015610486575f80fd5b50610248610495366004611739565b6108be565b3480156104a5575f80fd5b506102486104b4366004611739565b610956565b3480156104c4575f80fd5b506102486104d33660046117a1565b60176020525f908152604090205460ff1681565b3480156104f2575f80fd5b506102b360085481565b348015610507575f80fd5b50600d546102489060ff1681565b348015610520575f80fd5b506102b361052f3660046117bc565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610564575f80fd5b506102486105733660046117a1565b60156020525f908152604090205460ff1681565b348015610592575f80fd5b506102b360105481565b3480156105a7575f80fd5b506102486105b63660046117a1565b60166020525f908152604090205460ff1681565b3480156105d5575f80fd5b506102b3600a5481565b3480156105ea575f80fd5b506102b3600f5481565b3480156105ff575f80fd5b50610406610962565b348015610613575f80fd5b506104066106223660046117a1565b61099e565b348015610632575f80fd5b5060065461028b906001600160a01b031681565b348015610651575f80fd5b506102b360095481565b60606003805461066a906117f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610696906117f3565b80156106e15780601f106106b8576101008083540402835291602001916106e1565b820191905f5260205f20905b8154815290600101906020018083116106c457829003601f168201915b5050505050905090565b5f6106f7338484610a17565b5060015b92915050565b5f61070d848484610b3a565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156107965760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107a38533858403610a17565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916106f79185906107e490869061183f565b610a17565b6107f16112a1565b6107fa5f611301565b565b5f6108056112a1565b600b805460ff191690555f600f81905560108190556040517f7bfa7bacf025baa75e5308bf15bcf2948f406c7ebe3eb1a8bb611862b9d647ef9190a150600190565b61084f6112a1565b600b54610100900460ff16156108985760405162461bcd60e51b815260206004820152600e60248201526d151bdad95b881b185d5b98da195960921b604482015260640161078d565b600b805443600e5562ffff00191662010100179055565b60606004805461066a906117f3565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561093f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161078d565b61094c3385858403610a17565b5060019392505050565b5f6106f7338484610b3a565b61096a6112a1565b600d805460ff191690556040517fa29c2b578a5a679452d146ddd35ea04a2e7c57fe555cc7a3d91b3b8b06e6103d905f90a1565b6109a66112a1565b6001600160a01b038116610a0b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078d565b610a1481611301565b50565b6001600160a01b038316610a795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078d565b6001600160a01b038216610ada5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b605760405162461bcd60e51b815260040161078d90611852565b6001600160a01b038216610b865760405162461bcd60e51b815260040161078d90611897565b805f03610b9d57610b9883835f61135a565b505050565b600b5460ff1615611051576005546001600160a01b038481166101009092041614801590610bde57506005546001600160a01b038381166101009092041614155b8015610bf257506001600160a01b03821615155b8015610c0957506001600160a01b03821661dead14155b8015610c1f5750600654600160a01b900460ff16155b1561105157600b54610100900460ff16610cb5576001600160a01b0383165f9081526015602052604090205460ff1680610c7057506001600160a01b0382165f9081526015602052604090205460ff165b610cb55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161078d565b600d5460ff1615610dfe576005546001600160a01b038381166101009092041614801590610d1557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015610d5357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15610dfe57325f908152600c60205260409020544311610dec5760405162461bcd60e51b815260206004820152604860248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060648201526730b63637bbb2b21760c11b608482015260a40161078d565b325f908152600c602052604090204390555b6001600160a01b0383165f9081526017602052604090205460ff168015610e3d57506001600160a01b0382165f9081526016602052604090205460ff16155b15610f1a57600854811115610eac5760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e36b0bc2a3930b739b0b1ba34b7b71760891b606482015260840161078d565b6009546001600160a01b0383165f90815260208190526040902054610ed1908361183f565b1115610f155760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078d565b611051565b6001600160a01b0382165f9081526017602052604090205460ff168015610f5957506001600160a01b0383165f9081526016602052604090205460ff16155b15610fc957600854811115610f155760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526f1036b0bc2a3930b739b0b1ba34b7b71760811b606482015260840161078d565b6001600160a01b0382165f9081526016602052604090205460ff16611051576009546001600160a01b0383165f9081526020819052604090205461100d908361183f565b11156110515760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078d565b305f90815260208190526040902054600a548110801590819061107c5750600b5462010000900460ff165b80156110925750600654600160a01b900460ff16155b80156110b657506001600160a01b0385165f9081526017602052604090205460ff16155b80156110da57506001600160a01b0385165f9081526015602052604090205460ff16155b80156110fe57506001600160a01b0384165f9081526015602052604090205460ff16155b801561110d5750601354601454115b1561114a576006805460ff60a01b1916600160a01b17905560125461113c906111379084906114ad565b6114c4565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526015602052604090205460ff600160a01b90920482161591168061119657506001600160a01b0385165f9081526015602052604090205460ff165b806111a15750600f54155b806111ac5750601054155b156111b457505f5b5f811561128d576001600160a01b0386165f9081526017602052604090205460ff1680156111e357505f601054115b15611210576112096011546112036010548861152490919063ffffffff16565b9061152f565b905061126f565b6001600160a01b0387165f9081526017602052604090205460ff16801561123857505f600f54115b1561126f57611258601154611203600f548861152490919063ffffffff16565b601480549192505f611269836118da565b91905055505b80156112805761128087308361135a565b61128a81866118f2565b94505b61129887878761135a565b50505050505050565b6005546001600160a01b036101009091041633146107fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161078d565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166113805760405162461bcd60e51b815260040161078d90611852565b6001600160a01b0382166113a65760405162461bcd60e51b815260040161078d90611897565b6001600160a01b0383165f908152602081905260409020548181101561141d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161078d565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061145390849061183f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161149f91815260200190565b60405180910390a350505050565b5f8183116114bb57826114bd565b815b9392505050565b5f815f036114d0575050565b816114da8161153a565b60075460405147916001600160a01b03169082905f81818185875af1925050503d805f8114611298576040519150601f19603f3d011682016040523d82523d5f602084013e611298565b5f6114bd8284611905565b5f6114bd828461191c565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061156d5761156d61193b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061160d919061194f565b816001815181106116205761162061193b565b60200260200101906001600160a01b031690816001600160a01b03168152505061166b307f000000000000000000000000000000000000000000000000000000000000000084610a17565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906116bf9085905f9086903090429060040161196a565b5f604051808303815f87803b1580156116d6575f80fd5b505af11580156116e8573d5f803e3d5ffd5b505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610a14575f80fd5b5f806040838503121561174a575f80fd5b823561175581611725565b946020939093013593505050565b5f805f60608486031215611775575f80fd5b833561178081611725565b9250602084013561179081611725565b929592945050506040919091013590565b5f602082840312156117b1575f80fd5b81356114bd81611725565b5f80604083850312156117cd575f80fd5b82356117d881611725565b915060208301356117e881611725565b809150509250929050565b600181811c9082168061180757607f821691505b60208210810361182557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156106fb576106fb61182b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b5f600182016118eb576118eb61182b565b5060010190565b818103818111156106fb576106fb61182b565b80820281158282048414176106fb576106fb61182b565b5f8261193657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561195f575f80fd5b81516114bd81611725565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156119ba5783516001600160a01b0316835260209384019390920191600101611993565b50506001600160a01b03959095166060840152505060800152939250505056fea264697066735822122050ab778324c4af86aeca01abe5e58627fb92fb66451a21dc3990fbedb61963a264736f6c634300081a0033000000000000000000000000be2d9ead4a18dd88533f2936a9e066da8d610a0f

Deployed Bytecode

0x6080604052600436106101f4575f3560e01c80638da5cb5b11610108578063e0bf7fd11161009d578063e4748b9e1161006d578063e4748b9e146105df578063e884f260146105f4578063f2fde38b14610608578063f887ea4014610627578063f8b45b0514610646575f80fd5b8063e0bf7fd114610559578063e0f3ccf514610587578063e1bc33941461059c578063e2f45605146105ca575f80fd5b8063b62496f5116100d8578063b62496f5146104b9578063c3f70b52146104e7578063c876d0b9146104fc578063dd62ed3e14610515575f80fd5b80638da5cb5b1461044557806395d89b4114610467578063a457c2d71461047b578063a9059cbb1461049a575f80fd5b806349bd5a5e1161018957806370a082311161015957806370a08231146103be578063715018a6146103f2578063751039fc1461040857806384e92c001461041c5780638a8c523c14610431575f80fd5b806349bd5a5e146103355780634a62bb65146103685780634ada218b146103815780636ddd17131461039f575f80fd5b80631f2dc5ef116101c45780631f2dc5ef146102c157806323b872dd146102d6578063313ce567146102f55780633950935114610316575f80fd5b806306fdde03146101ff578063095ea7b3146102295780631694505e1461025857806318160ddd146102a3575f80fd5b366101fb57005b5f80fd5b34801561020a575f80fd5b5061021361065b565b60405161022091906116f0565b60405180910390f35b348015610234575f80fd5b50610248610243366004611739565b6106eb565b6040519015158152602001610220565b348015610263575f80fd5b5061028b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610220565b3480156102ae575f80fd5b506002545b604051908152602001610220565b3480156102cc575f80fd5b506102b360115481565b3480156102e1575f80fd5b506102486102f0366004611763565b610701565b348015610300575f80fd5b5060055460405160ff9091168152602001610220565b348015610321575f80fd5b50610248610330366004611739565b6107ae565b348015610340575f80fd5b5061028b7f000000000000000000000000393b0608492a97ee94c5978ae2c16a8d24a7ba5081565b348015610373575f80fd5b50600b546102489060ff1681565b34801561038c575f80fd5b50600b5461024890610100900460ff1681565b3480156103aa575f80fd5b50600b546102489062010000900460ff1681565b3480156103c9575f80fd5b506102b36103d83660046117a1565b6001600160a01b03165f9081526020819052604090205490565b3480156103fd575f80fd5b506104066107e9565b005b348015610413575f80fd5b506102486107fc565b348015610427575f80fd5b506102b3600e5481565b34801561043c575f80fd5b50610406610847565b348015610450575f80fd5b5060055461010090046001600160a01b031661028b565b348015610472575f80fd5b506102136108af565b348015610486575f80fd5b50610248610495366004611739565b6108be565b3480156104a5575f80fd5b506102486104b4366004611739565b610956565b3480156104c4575f80fd5b506102486104d33660046117a1565b60176020525f908152604090205460ff1681565b3480156104f2575f80fd5b506102b360085481565b348015610507575f80fd5b50600d546102489060ff1681565b348015610520575f80fd5b506102b361052f3660046117bc565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610564575f80fd5b506102486105733660046117a1565b60156020525f908152604090205460ff1681565b348015610592575f80fd5b506102b360105481565b3480156105a7575f80fd5b506102486105b63660046117a1565b60166020525f908152604090205460ff1681565b3480156105d5575f80fd5b506102b3600a5481565b3480156105ea575f80fd5b506102b3600f5481565b3480156105ff575f80fd5b50610406610962565b348015610613575f80fd5b506104066106223660046117a1565b61099e565b348015610632575f80fd5b5060065461028b906001600160a01b031681565b348015610651575f80fd5b506102b360095481565b60606003805461066a906117f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610696906117f3565b80156106e15780601f106106b8576101008083540402835291602001916106e1565b820191905f5260205f20905b8154815290600101906020018083116106c457829003601f168201915b5050505050905090565b5f6106f7338484610a17565b5060015b92915050565b5f61070d848484610b3a565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156107965760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107a38533858403610a17565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916106f79185906107e490869061183f565b610a17565b6107f16112a1565b6107fa5f611301565b565b5f6108056112a1565b600b805460ff191690555f600f81905560108190556040517f7bfa7bacf025baa75e5308bf15bcf2948f406c7ebe3eb1a8bb611862b9d647ef9190a150600190565b61084f6112a1565b600b54610100900460ff16156108985760405162461bcd60e51b815260206004820152600e60248201526d151bdad95b881b185d5b98da195960921b604482015260640161078d565b600b805443600e5562ffff00191662010100179055565b60606004805461066a906117f3565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561093f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161078d565b61094c3385858403610a17565b5060019392505050565b5f6106f7338484610b3a565b61096a6112a1565b600d805460ff191690556040517fa29c2b578a5a679452d146ddd35ea04a2e7c57fe555cc7a3d91b3b8b06e6103d905f90a1565b6109a66112a1565b6001600160a01b038116610a0b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078d565b610a1481611301565b50565b6001600160a01b038316610a795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078d565b6001600160a01b038216610ada5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b605760405162461bcd60e51b815260040161078d90611852565b6001600160a01b038216610b865760405162461bcd60e51b815260040161078d90611897565b805f03610b9d57610b9883835f61135a565b505050565b600b5460ff1615611051576005546001600160a01b038481166101009092041614801590610bde57506005546001600160a01b038381166101009092041614155b8015610bf257506001600160a01b03821615155b8015610c0957506001600160a01b03821661dead14155b8015610c1f5750600654600160a01b900460ff16155b1561105157600b54610100900460ff16610cb5576001600160a01b0383165f9081526015602052604090205460ff1680610c7057506001600160a01b0382165f9081526015602052604090205460ff165b610cb55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161078d565b600d5460ff1615610dfe576005546001600160a01b038381166101009092041614801590610d1557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015610d5357507f000000000000000000000000393b0608492a97ee94c5978ae2c16a8d24a7ba506001600160a01b0316826001600160a01b031614155b15610dfe57325f908152600c60205260409020544311610dec5760405162461bcd60e51b815260206004820152604860248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060648201526730b63637bbb2b21760c11b608482015260a40161078d565b325f908152600c602052604090204390555b6001600160a01b0383165f9081526017602052604090205460ff168015610e3d57506001600160a01b0382165f9081526016602052604090205460ff16155b15610f1a57600854811115610eac5760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e36b0bc2a3930b739b0b1ba34b7b71760891b606482015260840161078d565b6009546001600160a01b0383165f90815260208190526040902054610ed1908361183f565b1115610f155760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078d565b611051565b6001600160a01b0382165f9081526017602052604090205460ff168015610f5957506001600160a01b0383165f9081526016602052604090205460ff16155b15610fc957600854811115610f155760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526f1036b0bc2a3930b739b0b1ba34b7b71760811b606482015260840161078d565b6001600160a01b0382165f9081526016602052604090205460ff16611051576009546001600160a01b0383165f9081526020819052604090205461100d908361183f565b11156110515760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078d565b305f90815260208190526040902054600a548110801590819061107c5750600b5462010000900460ff165b80156110925750600654600160a01b900460ff16155b80156110b657506001600160a01b0385165f9081526017602052604090205460ff16155b80156110da57506001600160a01b0385165f9081526015602052604090205460ff16155b80156110fe57506001600160a01b0384165f9081526015602052604090205460ff16155b801561110d5750601354601454115b1561114a576006805460ff60a01b1916600160a01b17905560125461113c906111379084906114ad565b6114c4565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526015602052604090205460ff600160a01b90920482161591168061119657506001600160a01b0385165f9081526015602052604090205460ff165b806111a15750600f54155b806111ac5750601054155b156111b457505f5b5f811561128d576001600160a01b0386165f9081526017602052604090205460ff1680156111e357505f601054115b15611210576112096011546112036010548861152490919063ffffffff16565b9061152f565b905061126f565b6001600160a01b0387165f9081526017602052604090205460ff16801561123857505f600f54115b1561126f57611258601154611203600f548861152490919063ffffffff16565b601480549192505f611269836118da565b91905055505b80156112805761128087308361135a565b61128a81866118f2565b94505b61129887878761135a565b50505050505050565b6005546001600160a01b036101009091041633146107fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161078d565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166113805760405162461bcd60e51b815260040161078d90611852565b6001600160a01b0382166113a65760405162461bcd60e51b815260040161078d90611897565b6001600160a01b0383165f908152602081905260409020548181101561141d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161078d565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061145390849061183f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161149f91815260200190565b60405180910390a350505050565b5f8183116114bb57826114bd565b815b9392505050565b5f815f036114d0575050565b816114da8161153a565b60075460405147916001600160a01b03169082905f81818185875af1925050503d805f8114611298576040519150601f19603f3d011682016040523d82523d5f602084013e611298565b5f6114bd8284611905565b5f6114bd828461191c565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061156d5761156d61193b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061160d919061194f565b816001815181106116205761162061193b565b60200260200101906001600160a01b031690816001600160a01b03168152505061166b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610a17565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906116bf9085905f9086903090429060040161196a565b5f604051808303815f87803b1580156116d6575f80fd5b505af11580156116e8573d5f803e3d5ffd5b505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610a14575f80fd5b5f806040838503121561174a575f80fd5b823561175581611725565b946020939093013593505050565b5f805f60608486031215611775575f80fd5b833561178081611725565b9250602084013561179081611725565b929592945050506040919091013590565b5f602082840312156117b1575f80fd5b81356114bd81611725565b5f80604083850312156117cd575f80fd5b82356117d881611725565b915060208301356117e881611725565b809150509250929050565b600181811c9082168061180757607f821691505b60208210810361182557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156106fb576106fb61182b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b5f600182016118eb576118eb61182b565b5060010190565b818103818111156106fb576106fb61182b565b80820281158282048414176106fb576106fb61182b565b5f8261193657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561195f575f80fd5b81516114bd81611725565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156119ba5783516001600160a01b0316835260209384019390920191600101611993565b50506001600160a01b03959095166060840152505060800152939250505056fea264697066735822122050ab778324c4af86aeca01abe5e58627fb92fb66451a21dc3990fbedb61963a264736f6c634300081a0033

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

000000000000000000000000be2d9ead4a18dd88533f2936a9e066da8d610a0f

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0xbE2d9EAd4A18dd88533F2936A9E066da8d610A0f

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000be2d9ead4a18dd88533f2936a9e066da8d610a0f


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.