ETH Price: $3,410.84 (+2.98%)

Contract

0x639d827674D5B8Bd25ECC3335e01897B7068c825
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve204504822024-08-03 20:43:47112 days ago1722717827IN
0x639d8276...B7068c825
0 ETH0.000031741.31014193
Approve201340082024-06-20 16:03:23156 days ago1718899403IN
0x639d8276...B7068c825
0 ETH0.0003557914.68217823
Transfer194409272024-03-15 14:25:11253 days ago1710512711IN
0x639d8276...B7068c825
0 ETH0.002711938.84420003
Approve191092532024-01-29 2:38:23299 days ago1706495903IN
0x639d8276...B7068c825
0 ETH0.000229559.47287678
Approve189539572024-01-07 8:13:11321 days ago1704615191IN
0x639d8276...B7068c825
0 ETH0.0008731632.73086453
Approve188868232023-12-28 21:37:11331 days ago1703799431IN
0x639d8276...B7068c825
0 ETH0.0005397822.21958854
Approve188237652023-12-20 1:10:11339 days ago1703034611IN
0x639d8276...B7068c825
0 ETH0.0016640935.94084529
Approve188142452023-12-18 17:05:47341 days ago1702919147IN
0x639d8276...B7068c825
0 ETH0.0034629674.44525421
Approve187811912023-12-14 1:44:23345 days ago1702518263IN
0x639d8276...B7068c825
0 ETH0.0021625646.71873686
Approve187545622023-12-10 8:17:11349 days ago1702196231IN
0x639d8276...B7068c825
0 ETH0.0012648127.19047126
Approve187112612023-12-04 6:37:23355 days ago1701671843IN
0x639d8276...B7068c825
0 ETH0.0027480459
Approve187033742023-12-03 4:04:47356 days ago1701576287IN
0x639d8276...B7068c825
0 ETH0.0011861825.5
Approve187014192023-12-02 21:31:23357 days ago1701552683IN
0x639d8276...B7068c825
0 ETH0.0016415835.29004846
Approve187000272023-12-02 16:51:23357 days ago1701535883IN
0x639d8276...B7068c825
0 ETH0.0007859832.434656
Approve186921402023-12-01 14:24:59358 days ago1701440699IN
0x639d8276...B7068c825
0 ETH0.0008534735.21944789
Approve186908792023-12-01 10:10:23358 days ago1701425423IN
0x639d8276...B7068c825
0 ETH0.0018480339.72809157
Transfer186772422023-11-29 12:22:35360 days ago1701260555IN
0x639d8276...B7068c825
0 ETH0.0014719827.91709675
Transfer186771982023-11-29 12:13:47360 days ago1701260027IN
0x639d8276...B7068c825
0 ETH0.0015452329.30630689
Transfer186771082023-11-29 11:55:35360 days ago1701258935IN
0x639d8276...B7068c825
0 ETH0.0015448529.299096
Transfer186771052023-11-29 11:54:59360 days ago1701258899IN
0x639d8276...B7068c825
0 ETH0.0015938730.22884042
Transfer186771012023-11-29 11:54:11360 days ago1701258851IN
0x639d8276...B7068c825
0 ETH0.0015029328.50409972
Transfer186771012023-11-29 11:54:11360 days ago1701258851IN
0x639d8276...B7068c825
0 ETH0.0015041128.52644958
Transfer186770982023-11-29 11:53:35360 days ago1701258815IN
0x639d8276...B7068c825
0 ETH0.0016130630.59280985
Transfer186770882023-11-29 11:51:35360 days ago1701258695IN
0x639d8276...B7068c825
0 ETH0.0015924230.20136018
Transfer186770852023-11-29 11:50:59360 days ago1701258659IN
0x639d8276...B7068c825
0 ETH0.0015983430.31362693
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Cousin

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

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

pragma solidity 0.8.21;

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

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

contract Cousin is Context, IERC20, Ownable
{
    using SafeMath for uint;
    using Address for address;

    string public name = "Cousin";
    string public symbol = "CUZ";

    uint public decimals = 18;
    uint public totalSupply = 1000000000 * 10 ** decimals;

    uint public swapThresholdMin = totalSupply / 100000;
    uint public swapThresholdMax = totalSupply / 2000;

    address public dexPair;
    IUniswapV2Router02 public dexRouter;

    address payable public marketingAddress;

    mapping (address => uint) private balances;
    mapping (address => mapping (address => uint)) private allowances;

    mapping (address => bool) private isBot;
    mapping (address => bool) private isFeeExempt;
    mapping (address => bool) public isMarketPair;

    struct Fees
    {
        uint inFee;
        uint outFee;
        uint transferFee;
    }

    Fees public fees;

    bool public renounceAntiBot;
    bool public inSwapAndLiquify;
    bool public swapAndLiquifyEnabled;
    bool public swapAndLiquifyByLimitOnly;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(uint tokensSwapped, uint ethReceived, uint tokensIntoLiqudity);
    event SwapETHForTokens(uint amountIn, address[] path);
    event SwapTokensForETH(uint amountIn, address[] path);

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

    constructor(address _marketing) Ownable(_msgSender())
    {
        dexRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        dexPair = IUniswapV2Factory(dexRouter.factory()).createPair(address(this), dexRouter.WETH());

        allowances[address(this)][address(dexRouter)] = totalSupply;

        marketingAddress = payable(_marketing);

        fees.inFee = 20;
        fees.outFee = 20;
        fees.transferFee = 0;

        swapAndLiquifyEnabled = true;
        swapAndLiquifyByLimitOnly = true;

        isFeeExempt[owner()] = true;
        isFeeExempt[address(0)] = true;
        isFeeExempt[address(this)] = true;
        isFeeExempt[marketingAddress] = true;

        isMarketPair[address(dexPair)] = true;

        balances[_msgSender()] = totalSupply;
        emit Transfer(address(0), _msgSender(), totalSupply);
    }

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

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

    function getCirculatingSupply() public view returns (uint256)
    {
        return totalSupply.sub(balanceOf(address(0)));
    }

    function setMarketingAddress(address wallet) external onlyOwner()
    {
        require(wallet != address(0), "ERROR: Wallet must not be null address!");
        require(wallet != marketingAddress, "ERROR: Wallet must not be existing address!");

        isFeeExempt[marketingAddress] = false;

        marketingAddress = payable(wallet);
        isFeeExempt[marketingAddress] = true;
    }

    function setMarketPairStatus(address wallet, bool status) public onlyOwner
    {
        isMarketPair[wallet] = status;
    }

    function renounceBotStatus() public onlyOwner
    {
        require(!renounceAntiBot, "ERROR: Anti-bot system is already renounced!");

        renounceAntiBot = true;
    }

    function setBotStatus(address[] memory wallets, bool status) public onlyOwner
    {
        require(!renounceAntiBot, "ERROR: Anti-bot system is permanently disabled!");
        require(wallets.length <= 200, "ERROR: Maximum wallets at once is 200!");

        for (uint i = 0; i < wallets.length; i++)
            isBot[wallets[i]] = status;
    }

    function setFees(uint inFee, uint outFee, uint transferFee) external onlyOwner()
    {
        require(inFee <= 20 && outFee <= 20 && transferFee <= 20, "ERROR: Maximum directional fee is 2%!");

        fees.inFee = inFee;
        fees.outFee = outFee;
        fees.transferFee = transferFee;
    }

    function setSwapThresholds(uint min, uint max) external onlyOwner()
    {
        swapThresholdMin = min;
        swapThresholdMax = max;
    }

    function setSwapAndLiquifyStatus(bool status) public onlyOwner
    {
        swapAndLiquifyEnabled = status;
        emit SwapAndLiquifyEnabledUpdated(status);
    }

    function setSwapAndLiquifyByLimitStatus(bool status) public onlyOwner
    {
        swapAndLiquifyByLimitOnly = status;
    }

    function increaseAllowance(address spender, uint addedValue) public virtual returns (bool)
    {
        _approve(_msgSender(), spender, allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint subtractedValue) public virtual returns (bool)
    {
        _approve(_msgSender(), spender, allowances[_msgSender()][spender].sub(subtractedValue, "ERROR: Decreased allowance below zero!"));
        return true;
    }

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

    function _approve(address owner, address spender, uint amount) private
    {
        require(owner != address(0), "ERROR: Approve from the zero address!");
        require(spender != address(0), "ERROR: Approve to the zero address!");

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

    function transferToAddressNative(address payable recipient, uint amount) private
    {
        require(recipient != address(0), "ERROR: Cannot send to the 0 address!");

        recipient.transfer(amount);
    }

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

    function transferFrom(address sender, address recipient, uint amount) public override returns (bool)
    {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), allowances[sender][_msgSender()].sub(amount, "ERROR: Transfer amount exceeds allowance!"));
        return true;
    }

    function _transfer(address sender, address recipient, uint amount) private returns (bool)
    {
        require(sender != address(0), "ERROR: Transfer from the zero address!");
        require(recipient != address(0), "ERROR: Transfer to the zero address!");
        require(!isBot[recipient] && !isBot[sender], "ERROR: Transfers are not permitted!");

        if (inSwapAndLiquify)
        {
            balances[sender] = balances[sender].sub(amount, "ERROR: Insufficient balance!");
            balances[recipient] = balances[recipient].add(amount);

            emit Transfer(sender, recipient, amount);
            return true;
        }
        else
        {
            uint contractTokenBalance = balanceOf(address(this));
            if (contractTokenBalance >= swapThresholdMin && !inSwapAndLiquify && !isMarketPair[sender] && swapAndLiquifyEnabled)
            {
                if (swapAndLiquifyByLimitOnly)
                    contractTokenBalance = contractTokenBalance > swapThresholdMax ? swapThresholdMax : contractTokenBalance;

                swapAndLiquify(contractTokenBalance);
            }

            balances[sender] = balances[sender].sub(amount, "ERROR: Insufficient balance!");

            uint finalAmount = (isFeeExempt[sender] || isFeeExempt[recipient]) ? amount : takeFee(sender, recipient, amount);
            balances[recipient] = balances[recipient].add(finalAmount);

            emit Transfer(sender, recipient, finalAmount);
            return true;
        }
    }

    function swapAndLiquify(uint amount) private lockTheSwap
    {
        swapTokensForNative(amount);
        transferToAddressNative(marketingAddress, address(this).balance);
    }

    function takeFee(address sender, address recipient, uint amount) internal returns (uint256)
    {
        uint feeAmount = 0;

        if (isMarketPair[sender])
            feeAmount = amount.mul(fees.inFee).div(1000);
        else if (isMarketPair[recipient])
            feeAmount = amount.mul(fees.outFee).div(1000);
        else
            feeAmount = amount.mul(fees.transferFee).div(1000);

        if (feeAmount > 0)
        {
            balances[address(this)] = balances[address(this)].add(feeAmount);
            emit Transfer(sender, address(this), feeAmount);
        }

        return amount.sub(feeAmount);
    }

    function swapTokensForNative(uint tokenAmount) private
    {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

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

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

        emit SwapTokensForETH(tokenAmount, path);
    }

    function withdrawStuckNative(address recipient, uint amount) public onlyOwner
    {
        require(recipient != address(0), "ERROR: Cannot send to the 0 address!");

        payable(recipient).transfer(amount);
    }

    function withdrawForeignToken(address tokenAddress, address recipient, uint amount) public onlyOwner
    {
        require(recipient != address(0), "ERROR: Cannot send to the 0 address!");

        IERC20(tokenAddress).transfer(recipient, amount);
    }

    receive() external payable {}
}

File 2 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 3 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 4 of 10 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 5 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 6 of 10 : 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 7 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 8 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 9 of 10 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

File 10 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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":"_marketing","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","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":"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":"wallet","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fees","outputs":[{"internalType":"uint256","name":"inFee","type":"uint256"},{"internalType":"uint256","name":"outFee","type":"uint256"},{"internalType":"uint256","name":"transferFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"isMarketPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"renounceAntiBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceBotStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setBotStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"inFee","type":"uint256"},{"internalType":"uint256","name":"outFee","type":"uint256"},{"internalType":"uint256","name":"transferFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setMarketPairStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSwapAndLiquifyByLimitStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSwapAndLiquifyStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"min","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setSwapThresholds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyByLimitOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThresholdMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThresholdMin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawForeignToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawStuckNative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600660809081526521b7bab9b4b760d11b60a05260019062000027908262000517565b5060408051808201909152600381526221aaad60e91b602082015260029062000051908262000517565b50601260038190556200006690600a620006ee565b6200007690633b9aca0062000702565b600455620186a06004546200008c91906200071c565b6005556107d0600454620000a191906200071c565b600655348015620000b0575f80fd5b50604051620023e6380380620023e6833981016040819052620000d3916200073c565b3380620000f957604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b620001048162000428565b50600880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000168573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200018e91906200073c565b6001600160a01b031663c9c653963060085f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200021491906200073c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200025f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200028591906200073c565b600780546001600160a01b03199081166001600160a01b0393841617909155600454305f908152600b6020908152604080832060085487168452909152812091909155600980549092169284169290921790556014600f81905560105560118190556012805463ffff000019166301010000179055600190600d90620003125f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055600d84527f81955a0a11e65eac625c29e8882660bae4e165a75d72780094acae8ece9a29ee80548616600190811790915530825283822080548716821790556009548316825283822080548716821790556007549092168152600e90935290822080549093161790915560045490600a90620003b83390565b6001600160a01b0316815260208101919091526040015f2055336001600160a01b03165f6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6004546040516200041991815260200190565b60405180910390a35062000764565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620004a057607f821691505b602082108103620004bf57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000512575f81815260208120601f850160051c81016020861015620004ed5750805b601f850160051c820191505b818110156200050e57828155600101620004f9565b5050505b505050565b81516001600160401b0381111562000533576200053362000477565b6200054b816200054484546200048b565b84620004c5565b602080601f83116001811462000581575f8415620005695750858301515b5f19600386901b1c1916600185901b1785556200050e565b5f85815260208120601f198616915b82811015620005b15788860151825594840194600190910190840162000590565b5085821015620005cf57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200063357815f1904821115620006175762000617620005df565b808516156200062557918102915b93841c9390800290620005f8565b509250929050565b5f826200064b57506001620006e8565b816200065957505f620006e8565b81600181146200067257600281146200067d576200069d565b6001915050620006e8565b60ff841115620006915762000691620005df565b50506001821b620006e8565b5060208310610133831016604e8410600b8410161715620006c2575081810a620006e8565b620006ce8383620005f3565b805f1904821115620006e457620006e4620005df565b0290505b92915050565b5f620006fb83836200063b565b9392505050565b8082028115828204841417620006e857620006e8620005df565b5f826200073757634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156200074d575f80fd5b81516001600160a01b0381168114620006fb575f80fd5b611c7480620007725f395ff3fe60806040526004361061020a575f3560e01c8063830d010a11610113578063a9059cbb1161009d578063dd62ed3e1161006d578063dd62ed3e146105fa578063ee2e5a2e1461063e578063f242ab411461065d578063f2fde38b1461067c578063fff0505e1461069b575f80fd5b8063a9059cbb1461057d578063bbfad5b51461059c578063cec10c11146105bb578063da00097d146105da575f80fd5b806395d89b41116100e357806395d89b41146104d35780639af1d35a146104e7578063a070cb7414610520578063a457c2d71461053f578063a5ece9411461055e575f80fd5b8063830d010a1461045a578063844d591c146104795780638da5cb5b14610498578063906e9dd0146104b4575f80fd5b806323b872dd116101945780633ecad271116101645780633ecad271146103b05780634a74bb02146103de5780635988f53f146103fd57806370a0823114610412578063715018a614610446575f80fd5b806323b872dd146103495780632b112e4914610368578063313ce5671461037c5780633950935114610391575f80fd5b8063095ea7b3116101da578063095ea7b3146102ab57806315e74d64146102da57806318160ddd146102f35780631afc2b3a14610316578063220f66961461032b575f80fd5b806306065ee6146102155780630659ce5c1461022b57806306fdde031461024a5780630758d92414610274575f80fd5b3661021157005b5f80fd5b348015610220575f80fd5b506102296106ba565b005b348015610236575f80fd5b50610229610245366004611771565b61073e565b348015610255575f80fd5b5061025e6107e2565b60405161026b91906117af565b60405180910390f35b34801561027f575f80fd5b50600854610293906001600160a01b031681565b6040516001600160a01b03909116815260200161026b565b3480156102b6575f80fd5b506102ca6102c53660046117fa565b61086e565b604051901515815260200161026b565b3480156102e5575f80fd5b506012546102ca9060ff1681565b3480156102fe575f80fd5b5061030860045481565b60405190815260200161026b565b348015610321575f80fd5b5061030860065481565b348015610336575f80fd5b506012546102ca90610100900460ff1681565b348015610354575f80fd5b506102ca610363366004611771565b610884565b348015610373575f80fd5b506103086108ed565b348015610387575f80fd5b5061030860035481565b34801561039c575f80fd5b506102ca6103ab3660046117fa565b610929565b3480156103bb575f80fd5b506102ca6103ca366004611824565b600e6020525f908152604090205460ff1681565b3480156103e9575f80fd5b506012546102ca9062010000900460ff1681565b348015610408575f80fd5b5061030860055481565b34801561041d575f80fd5b5061030861042c366004611824565b6001600160a01b03165f908152600a602052604090205490565b348015610451575f80fd5b5061022961095e565b348015610465575f80fd5b506102296104743660046117fa565b610971565b348015610484575f80fd5b50610229610493366004611857565b6109d7565b3480156104a3575f80fd5b505f546001600160a01b0316610293565b3480156104bf575f80fd5b506102296104ce366004611824565b610a09565b3480156104de575f80fd5b5061025e610b38565b3480156104f2575f80fd5b50600f5460105460115461050592919083565b6040805193845260208401929092529082015260600161026b565b34801561052b575f80fd5b5061022961053a36600461188e565b610b45565b34801561054a575f80fd5b506102ca6105593660046117fa565b610b6b565b348015610569575f80fd5b50600954610293906001600160a01b031681565b348015610588575f80fd5b506102ca6105973660046117fa565b610bb8565b3480156105a7575f80fd5b506102296105b63660046118a9565b610bc4565b3480156105c6575f80fd5b506102296105d53660046118c9565b610bd7565b3480156105e5575f80fd5b506012546102ca906301000000900460ff1681565b348015610605575f80fd5b506103086106143660046118f2565b6001600160a01b039182165f908152600b6020908152604080832093909416825291909152205490565b348015610649575f80fd5b5061022961065836600461188e565b610c66565b348015610668575f80fd5b50600754610293906001600160a01b031681565b348015610687575f80fd5b50610229610696366004611824565b610cc4565b3480156106a6575f80fd5b506102296106b5366004611932565b610d01565b6106c2610e39565b60125460ff161561072f5760405162461bcd60e51b815260206004820152602c60248201527f4552524f523a20416e74692d626f742073797374656d20697320616c7265616460448201526b792072656e6f756e6365642160a01b60648201526084015b60405180910390fd5b6012805460ff19166001179055565b610746610e39565b6001600160a01b03821661076c5760405162461bcd60e51b815260040161072690611a04565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303815f875af11580156107b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107dc9190611a48565b50505050565b600180546107ef90611a63565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90611a63565b80156108665780601f1061083d57610100808354040283529160200191610866565b820191905f5260205f20905b81548152906001019060200180831161084957829003601f168201915b505050505081565b5f61087a338484610e65565b5060015b92915050565b5f610890848484610f8b565b506108e284336108dd85604051806060016040528060298152602001611c16602991396001600160a01b038a165f908152600b6020908152604080832033845290915290205491906113c3565b610e65565b5060015b9392505050565b5f808052600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e354600454610924916113ee565b905090565b335f818152600b602090815260408083206001600160a01b0387168452909152812054909161087a9185906108dd90866113f9565b610966610e39565b61096f5f611404565b565b610979610e39565b6001600160a01b03821661099f5760405162461bcd60e51b815260040161072690611a04565b6040516001600160a01b0383169082156108fc029083905f818181858888f193505050501580156109d2573d5f803e3d5ffd5b505050565b6109df610e39565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b610a11610e39565b6001600160a01b038116610a775760405162461bcd60e51b815260206004820152602760248201527f4552524f523a2057616c6c6574206d757374206e6f74206265206e756c6c20616044820152666464726573732160c81b6064820152608401610726565b6009546001600160a01b0390811690821603610ae95760405162461bcd60e51b815260206004820152602b60248201527f4552524f523a2057616c6c6574206d757374206e6f742062652065786973746960448201526a6e6720616464726573732160a81b6064820152608401610726565b600980546001600160a01b039081165f908152600d6020526040808220805460ff1990811690915584546001600160a01b03191695909316948517909355928352912080549091166001179055565b600280546107ef90611a63565b610b4d610e39565b6012805491151563010000000263ff00000019909216919091179055565b5f61087a33846108dd85604051806060016040528060268152602001611bf060269139335f908152600b602090815260408083206001600160a01b038d16845290915290205491906113c3565b5f6108e2338484610f8b565b610bcc610e39565b600591909155600655565b610bdf610e39565b60148311158015610bf1575060148211155b8015610bfe575060148111155b610c585760405162461bcd60e51b815260206004820152602560248201527f4552524f523a204d6178696d756d20646972656374696f6e616c206665652069604482015264732032252160d81b6064820152608401610726565b600f92909255601055601155565b610c6e610e39565b60128054821515620100000262ff0000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610cb990831515815260200190565b60405180910390a150565b610ccc610e39565b6001600160a01b038116610cf557604051631e4fbdf760e01b81525f6004820152602401610726565b610cfe81611404565b50565b610d09610e39565b60125460ff1615610d745760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20416e74692d626f742073797374656d206973207065726d616e60448201526e656e746c792064697361626c65642160881b6064820152608401610726565b60c882511115610dd55760405162461bcd60e51b815260206004820152602660248201527f4552524f523a204d6178696d756d2077616c6c657473206174206f6e6365206960448201526573203230302160d01b6064820152608401610726565b5f5b82518110156109d25781600c5f858481518110610df657610df6611a9b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610e3181611ac3565b915050610dd7565b5f546001600160a01b0316331461096f5760405163118cdaa760e01b8152336004820152602401610726565b6001600160a01b038316610ec95760405162461bcd60e51b815260206004820152602560248201527f4552524f523a20417070726f76652066726f6d20746865207a65726f20616464604482015264726573732160d81b6064820152608401610726565b6001600160a01b038216610f2b5760405162461bcd60e51b815260206004820152602360248201527f4552524f523a20417070726f766520746f20746865207a65726f20616464726560448201526273732160e81b6064820152608401610726565b6001600160a01b038381165f818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6001600160a01b038416610ff15760405162461bcd60e51b815260206004820152602660248201527f4552524f523a205472616e736665722066726f6d20746865207a65726f20616460448201526564726573732160d01b6064820152608401610726565b6001600160a01b0383166110535760405162461bcd60e51b8152602060048201526024808201527f4552524f523a205472616e7366657220746f20746865207a65726f20616464726044820152636573732160e01b6064820152608401610726565b6001600160a01b0383165f908152600c602052604090205460ff1615801561109357506001600160a01b0384165f908152600c602052604090205460ff16155b6110eb5760405162461bcd60e51b815260206004820152602360248201527f4552524f523a205472616e736665727320617265206e6f74207065726d69747460448201526265642160e81b6064820152608401610726565b601254610100900460ff16156111e657604080518082018252601c81527f4552524f523a20496e73756666696369656e742062616c616e636521000000006020808301919091526001600160a01b0387165f908152600a90915291909120546111559184906113c3565b6001600160a01b038086165f908152600a6020526040808220939093559085168152205461118390836113f9565b6001600160a01b038085165f818152600a602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111d69086815260200190565b60405180910390a35060016108e6565b305f908152600a6020526040902054600554811080159061120f5750601254610100900460ff16155b801561123357506001600160a01b0385165f908152600e602052604090205460ff16155b8015611247575060125462010000900460ff165b1561127d576012546301000000900460ff161561127457600654811161126d5780611271565b6006545b90505b61127d81611453565b604080518082018252601c81527f4552524f523a20496e73756666696369656e742062616c616e636521000000006020808301919091526001600160a01b0388165f908152600a90915291909120546112d79185906113c3565b6001600160a01b0386165f908152600a6020908152604080832093909355600d90529081205460ff168061132257506001600160a01b0385165f908152600d602052604090205460ff165b6113365761133186868661148f565b611338565b835b6001600160a01b0386165f908152600a602052604090205490915061135d90826113f9565b6001600160a01b038087165f818152600a602052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113b09085815260200190565b60405180910390a36001925050506108e6565b5f81848411156113e65760405162461bcd60e51b815260040161072691906117af565b505050900390565b5f6108e68284611adb565b5f6108e68284611aee565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6012805461ff00191661010017905561146b816115ae565b600954611481906001600160a01b031647610979565b506012805461ff0019169055565b6001600160a01b0383165f908152600e6020526040812054819060ff16156114d457600f546114cd906103e8906114c7908690611737565b90611742565b9050611523565b6001600160a01b0384165f908152600e602052604090205460ff161561150a576010546114cd906103e8906114c7908690611737565b601154611520906103e8906114c7908690611737565b90505b801561159b57305f908152600a602052604090205461154290826113f9565b305f818152600a6020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115929085815260200190565b60405180910390a35b6115a583826113ee565b95945050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106115e1576115e1611a9b565b6001600160a01b03928316602091820292909201810191909152600854604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611638573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061165c9190611b01565b8160018151811061166f5761166f611a9b565b6001600160a01b0392831660209182029290920101526008546116959130911684610e65565b60085460405163791ac94760e01b81526001600160a01b039091169063791ac947906116cd9085905f90869030904290600401611b5e565b5f604051808303815f87803b1580156116e4575f80fd5b505af11580156116f6573d5f803e3d5ffd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a7828260405161172b929190611b99565b60405180910390a15050565b5f6108e68284611bb9565b5f6108e68284611bd0565b6001600160a01b0381168114610cfe575f80fd5b803561176c8161174d565b919050565b5f805f60608486031215611783575f80fd5b833561178e8161174d565b9250602084013561179e8161174d565b929592945050506040919091013590565b5f6020808352835180828501525f5b818110156117da578581018301518582016040015282016117be565b505f604082860101526040601f19601f8301168501019250505092915050565b5f806040838503121561180b575f80fd5b82356118168161174d565b946020939093013593505050565b5f60208284031215611834575f80fd5b81356108e68161174d565b8015158114610cfe575f80fd5b803561176c8161183f565b5f8060408385031215611868575f80fd5b82356118738161174d565b915060208301356118838161183f565b809150509250929050565b5f6020828403121561189e575f80fd5b81356108e68161183f565b5f80604083850312156118ba575f80fd5b50508035926020909101359150565b5f805f606084860312156118db575f80fd5b505081359360208301359350604090920135919050565b5f8060408385031215611903575f80fd5b823561190e8161174d565b915060208301356118838161174d565b634e487b7160e01b5f52604160045260245ffd5b5f8060408385031215611943575f80fd5b823567ffffffffffffffff8082111561195a575f80fd5b818501915085601f83011261196d575f80fd5b81356020828211156119815761198161191e565b8160051b604051601f19603f830116810181811086821117156119a6576119a661191e565b6040529283528183019350848101820192898411156119c3575f80fd5b948201945b838610156119e8576119d986611761565b855294820194938201936119c8565b96506119f7905087820161184c565b9450505050509250929050565b60208082526024908201527f4552524f523a2043616e6e6f742073656e6420746f20746865203020616464726040820152636573732160e01b606082015260800190565b5f60208284031215611a58575f80fd5b81516108e68161183f565b600181811c90821680611a7757607f821691505b602082108103611a9557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f60018201611ad457611ad4611aaf565b5060010190565b8181038181111561087e5761087e611aaf565b8082018082111561087e5761087e611aaf565b5f60208284031215611b11575f80fd5b81516108e68161174d565b5f8151808452602080850194508084015f5b83811015611b535781516001600160a01b031687529582019590820190600101611b2e565b509495945050505050565b85815284602082015260a060408201525f611b7c60a0830186611b1c565b6001600160a01b0394909416606083015250608001529392505050565b828152604060208201525f611bb16040830184611b1c565b949350505050565b808202811582820484141761087e5761087e611aaf565b5f82611bea57634e487b7160e01b5f52601260045260245ffd5b50049056fe4552524f523a2044656372656173656420616c6c6f77616e63652062656c6f77207a65726f214552524f523a205472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636521a2646970667358221220bc52b877aeeb2ae8f6ecb9ff08ddac9157bf2931a57a044106bdb294783171b964736f6c634300081500330000000000000000000000005a3728f4eb932ab657342935b630daaa2a307edc

Deployed Bytecode

0x60806040526004361061020a575f3560e01c8063830d010a11610113578063a9059cbb1161009d578063dd62ed3e1161006d578063dd62ed3e146105fa578063ee2e5a2e1461063e578063f242ab411461065d578063f2fde38b1461067c578063fff0505e1461069b575f80fd5b8063a9059cbb1461057d578063bbfad5b51461059c578063cec10c11146105bb578063da00097d146105da575f80fd5b806395d89b41116100e357806395d89b41146104d35780639af1d35a146104e7578063a070cb7414610520578063a457c2d71461053f578063a5ece9411461055e575f80fd5b8063830d010a1461045a578063844d591c146104795780638da5cb5b14610498578063906e9dd0146104b4575f80fd5b806323b872dd116101945780633ecad271116101645780633ecad271146103b05780634a74bb02146103de5780635988f53f146103fd57806370a0823114610412578063715018a614610446575f80fd5b806323b872dd146103495780632b112e4914610368578063313ce5671461037c5780633950935114610391575f80fd5b8063095ea7b3116101da578063095ea7b3146102ab57806315e74d64146102da57806318160ddd146102f35780631afc2b3a14610316578063220f66961461032b575f80fd5b806306065ee6146102155780630659ce5c1461022b57806306fdde031461024a5780630758d92414610274575f80fd5b3661021157005b5f80fd5b348015610220575f80fd5b506102296106ba565b005b348015610236575f80fd5b50610229610245366004611771565b61073e565b348015610255575f80fd5b5061025e6107e2565b60405161026b91906117af565b60405180910390f35b34801561027f575f80fd5b50600854610293906001600160a01b031681565b6040516001600160a01b03909116815260200161026b565b3480156102b6575f80fd5b506102ca6102c53660046117fa565b61086e565b604051901515815260200161026b565b3480156102e5575f80fd5b506012546102ca9060ff1681565b3480156102fe575f80fd5b5061030860045481565b60405190815260200161026b565b348015610321575f80fd5b5061030860065481565b348015610336575f80fd5b506012546102ca90610100900460ff1681565b348015610354575f80fd5b506102ca610363366004611771565b610884565b348015610373575f80fd5b506103086108ed565b348015610387575f80fd5b5061030860035481565b34801561039c575f80fd5b506102ca6103ab3660046117fa565b610929565b3480156103bb575f80fd5b506102ca6103ca366004611824565b600e6020525f908152604090205460ff1681565b3480156103e9575f80fd5b506012546102ca9062010000900460ff1681565b348015610408575f80fd5b5061030860055481565b34801561041d575f80fd5b5061030861042c366004611824565b6001600160a01b03165f908152600a602052604090205490565b348015610451575f80fd5b5061022961095e565b348015610465575f80fd5b506102296104743660046117fa565b610971565b348015610484575f80fd5b50610229610493366004611857565b6109d7565b3480156104a3575f80fd5b505f546001600160a01b0316610293565b3480156104bf575f80fd5b506102296104ce366004611824565b610a09565b3480156104de575f80fd5b5061025e610b38565b3480156104f2575f80fd5b50600f5460105460115461050592919083565b6040805193845260208401929092529082015260600161026b565b34801561052b575f80fd5b5061022961053a36600461188e565b610b45565b34801561054a575f80fd5b506102ca6105593660046117fa565b610b6b565b348015610569575f80fd5b50600954610293906001600160a01b031681565b348015610588575f80fd5b506102ca6105973660046117fa565b610bb8565b3480156105a7575f80fd5b506102296105b63660046118a9565b610bc4565b3480156105c6575f80fd5b506102296105d53660046118c9565b610bd7565b3480156105e5575f80fd5b506012546102ca906301000000900460ff1681565b348015610605575f80fd5b506103086106143660046118f2565b6001600160a01b039182165f908152600b6020908152604080832093909416825291909152205490565b348015610649575f80fd5b5061022961065836600461188e565b610c66565b348015610668575f80fd5b50600754610293906001600160a01b031681565b348015610687575f80fd5b50610229610696366004611824565b610cc4565b3480156106a6575f80fd5b506102296106b5366004611932565b610d01565b6106c2610e39565b60125460ff161561072f5760405162461bcd60e51b815260206004820152602c60248201527f4552524f523a20416e74692d626f742073797374656d20697320616c7265616460448201526b792072656e6f756e6365642160a01b60648201526084015b60405180910390fd5b6012805460ff19166001179055565b610746610e39565b6001600160a01b03821661076c5760405162461bcd60e51b815260040161072690611a04565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303815f875af11580156107b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107dc9190611a48565b50505050565b600180546107ef90611a63565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90611a63565b80156108665780601f1061083d57610100808354040283529160200191610866565b820191905f5260205f20905b81548152906001019060200180831161084957829003601f168201915b505050505081565b5f61087a338484610e65565b5060015b92915050565b5f610890848484610f8b565b506108e284336108dd85604051806060016040528060298152602001611c16602991396001600160a01b038a165f908152600b6020908152604080832033845290915290205491906113c3565b610e65565b5060015b9392505050565b5f808052600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e354600454610924916113ee565b905090565b335f818152600b602090815260408083206001600160a01b0387168452909152812054909161087a9185906108dd90866113f9565b610966610e39565b61096f5f611404565b565b610979610e39565b6001600160a01b03821661099f5760405162461bcd60e51b815260040161072690611a04565b6040516001600160a01b0383169082156108fc029083905f818181858888f193505050501580156109d2573d5f803e3d5ffd5b505050565b6109df610e39565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b610a11610e39565b6001600160a01b038116610a775760405162461bcd60e51b815260206004820152602760248201527f4552524f523a2057616c6c6574206d757374206e6f74206265206e756c6c20616044820152666464726573732160c81b6064820152608401610726565b6009546001600160a01b0390811690821603610ae95760405162461bcd60e51b815260206004820152602b60248201527f4552524f523a2057616c6c6574206d757374206e6f742062652065786973746960448201526a6e6720616464726573732160a81b6064820152608401610726565b600980546001600160a01b039081165f908152600d6020526040808220805460ff1990811690915584546001600160a01b03191695909316948517909355928352912080549091166001179055565b600280546107ef90611a63565b610b4d610e39565b6012805491151563010000000263ff00000019909216919091179055565b5f61087a33846108dd85604051806060016040528060268152602001611bf060269139335f908152600b602090815260408083206001600160a01b038d16845290915290205491906113c3565b5f6108e2338484610f8b565b610bcc610e39565b600591909155600655565b610bdf610e39565b60148311158015610bf1575060148211155b8015610bfe575060148111155b610c585760405162461bcd60e51b815260206004820152602560248201527f4552524f523a204d6178696d756d20646972656374696f6e616c206665652069604482015264732032252160d81b6064820152608401610726565b600f92909255601055601155565b610c6e610e39565b60128054821515620100000262ff0000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610cb990831515815260200190565b60405180910390a150565b610ccc610e39565b6001600160a01b038116610cf557604051631e4fbdf760e01b81525f6004820152602401610726565b610cfe81611404565b50565b610d09610e39565b60125460ff1615610d745760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20416e74692d626f742073797374656d206973207065726d616e60448201526e656e746c792064697361626c65642160881b6064820152608401610726565b60c882511115610dd55760405162461bcd60e51b815260206004820152602660248201527f4552524f523a204d6178696d756d2077616c6c657473206174206f6e6365206960448201526573203230302160d01b6064820152608401610726565b5f5b82518110156109d25781600c5f858481518110610df657610df6611a9b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610e3181611ac3565b915050610dd7565b5f546001600160a01b0316331461096f5760405163118cdaa760e01b8152336004820152602401610726565b6001600160a01b038316610ec95760405162461bcd60e51b815260206004820152602560248201527f4552524f523a20417070726f76652066726f6d20746865207a65726f20616464604482015264726573732160d81b6064820152608401610726565b6001600160a01b038216610f2b5760405162461bcd60e51b815260206004820152602360248201527f4552524f523a20417070726f766520746f20746865207a65726f20616464726560448201526273732160e81b6064820152608401610726565b6001600160a01b038381165f818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6001600160a01b038416610ff15760405162461bcd60e51b815260206004820152602660248201527f4552524f523a205472616e736665722066726f6d20746865207a65726f20616460448201526564726573732160d01b6064820152608401610726565b6001600160a01b0383166110535760405162461bcd60e51b8152602060048201526024808201527f4552524f523a205472616e7366657220746f20746865207a65726f20616464726044820152636573732160e01b6064820152608401610726565b6001600160a01b0383165f908152600c602052604090205460ff1615801561109357506001600160a01b0384165f908152600c602052604090205460ff16155b6110eb5760405162461bcd60e51b815260206004820152602360248201527f4552524f523a205472616e736665727320617265206e6f74207065726d69747460448201526265642160e81b6064820152608401610726565b601254610100900460ff16156111e657604080518082018252601c81527f4552524f523a20496e73756666696369656e742062616c616e636521000000006020808301919091526001600160a01b0387165f908152600a90915291909120546111559184906113c3565b6001600160a01b038086165f908152600a6020526040808220939093559085168152205461118390836113f9565b6001600160a01b038085165f818152600a602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111d69086815260200190565b60405180910390a35060016108e6565b305f908152600a6020526040902054600554811080159061120f5750601254610100900460ff16155b801561123357506001600160a01b0385165f908152600e602052604090205460ff16155b8015611247575060125462010000900460ff165b1561127d576012546301000000900460ff161561127457600654811161126d5780611271565b6006545b90505b61127d81611453565b604080518082018252601c81527f4552524f523a20496e73756666696369656e742062616c616e636521000000006020808301919091526001600160a01b0388165f908152600a90915291909120546112d79185906113c3565b6001600160a01b0386165f908152600a6020908152604080832093909355600d90529081205460ff168061132257506001600160a01b0385165f908152600d602052604090205460ff165b6113365761133186868661148f565b611338565b835b6001600160a01b0386165f908152600a602052604090205490915061135d90826113f9565b6001600160a01b038087165f818152600a602052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113b09085815260200190565b60405180910390a36001925050506108e6565b5f81848411156113e65760405162461bcd60e51b815260040161072691906117af565b505050900390565b5f6108e68284611adb565b5f6108e68284611aee565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6012805461ff00191661010017905561146b816115ae565b600954611481906001600160a01b031647610979565b506012805461ff0019169055565b6001600160a01b0383165f908152600e6020526040812054819060ff16156114d457600f546114cd906103e8906114c7908690611737565b90611742565b9050611523565b6001600160a01b0384165f908152600e602052604090205460ff161561150a576010546114cd906103e8906114c7908690611737565b601154611520906103e8906114c7908690611737565b90505b801561159b57305f908152600a602052604090205461154290826113f9565b305f818152600a6020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115929085815260200190565b60405180910390a35b6115a583826113ee565b95945050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106115e1576115e1611a9b565b6001600160a01b03928316602091820292909201810191909152600854604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611638573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061165c9190611b01565b8160018151811061166f5761166f611a9b565b6001600160a01b0392831660209182029290920101526008546116959130911684610e65565b60085460405163791ac94760e01b81526001600160a01b039091169063791ac947906116cd9085905f90869030904290600401611b5e565b5f604051808303815f87803b1580156116e4575f80fd5b505af11580156116f6573d5f803e3d5ffd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a7828260405161172b929190611b99565b60405180910390a15050565b5f6108e68284611bb9565b5f6108e68284611bd0565b6001600160a01b0381168114610cfe575f80fd5b803561176c8161174d565b919050565b5f805f60608486031215611783575f80fd5b833561178e8161174d565b9250602084013561179e8161174d565b929592945050506040919091013590565b5f6020808352835180828501525f5b818110156117da578581018301518582016040015282016117be565b505f604082860101526040601f19601f8301168501019250505092915050565b5f806040838503121561180b575f80fd5b82356118168161174d565b946020939093013593505050565b5f60208284031215611834575f80fd5b81356108e68161174d565b8015158114610cfe575f80fd5b803561176c8161183f565b5f8060408385031215611868575f80fd5b82356118738161174d565b915060208301356118838161183f565b809150509250929050565b5f6020828403121561189e575f80fd5b81356108e68161183f565b5f80604083850312156118ba575f80fd5b50508035926020909101359150565b5f805f606084860312156118db575f80fd5b505081359360208301359350604090920135919050565b5f8060408385031215611903575f80fd5b823561190e8161174d565b915060208301356118838161174d565b634e487b7160e01b5f52604160045260245ffd5b5f8060408385031215611943575f80fd5b823567ffffffffffffffff8082111561195a575f80fd5b818501915085601f83011261196d575f80fd5b81356020828211156119815761198161191e565b8160051b604051601f19603f830116810181811086821117156119a6576119a661191e565b6040529283528183019350848101820192898411156119c3575f80fd5b948201945b838610156119e8576119d986611761565b855294820194938201936119c8565b96506119f7905087820161184c565b9450505050509250929050565b60208082526024908201527f4552524f523a2043616e6e6f742073656e6420746f20746865203020616464726040820152636573732160e01b606082015260800190565b5f60208284031215611a58575f80fd5b81516108e68161183f565b600181811c90821680611a7757607f821691505b602082108103611a9557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f60018201611ad457611ad4611aaf565b5060010190565b8181038181111561087e5761087e611aaf565b8082018082111561087e5761087e611aaf565b5f60208284031215611b11575f80fd5b81516108e68161174d565b5f8151808452602080850194508084015f5b83811015611b535781516001600160a01b031687529582019590820190600101611b2e565b509495945050505050565b85815284602082015260a060408201525f611b7c60a0830186611b1c565b6001600160a01b0394909416606083015250608001529392505050565b828152604060208201525f611bb16040830184611b1c565b949350505050565b808202811582820484141761087e5761087e611aaf565b5f82611bea57634e487b7160e01b5f52601260045260245ffd5b50049056fe4552524f523a2044656372656173656420616c6c6f77616e63652062656c6f77207a65726f214552524f523a205472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636521a2646970667358221220bc52b877aeeb2ae8f6ecb9ff08ddac9157bf2931a57a044106bdb294783171b964736f6c63430008150033

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

0000000000000000000000005a3728f4eb932ab657342935b630daaa2a307edc

-----Decoded View---------------
Arg [0] : _marketing (address): 0x5A3728f4EB932Ab657342935b630daAA2A307EDC

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005a3728f4eb932ab657342935b630daaa2a307edc


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.