ETH Price: $3,453.60 (+1.85%)
Gas: 9 Gwei

Token

BLOCKLITICS (EDGE)
 

Overview

Max Total Supply

1,000,000,000 EDGE

Holders

186

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.217289933350351489 EDGE

Value
$0.00
0x534fc93022c2255a77bb7a09758d8d3b3cf689ab
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EDGE

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : EDGE.sol
//
// Telegram: https://t.me/BLOCKILITICS
// Twitter: https://twitter.com/BlockliticsEDGE
// Homepage: https://www.blocklitics.com
// Docs: https://docs.blocklitics.com/
//
// SPDX-License-Identifier: MIT
pragma solidity =0.8.20; 

import {ERC20} from "ERC20.sol";
import {Ownable} from "Ownable.sol";

interface IUniswapV2Factory {

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

}

interface IUniswapV2Router02 {
	function factory() external pure returns (address);

	function WETH() external pure returns (address);

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

contract EDGE is ERC20, Ownable {

	IUniswapV2Router02 public immutable uniswapV2Router;
	address public immutable uniswapV2Pair;
	address public devWallet;

	uint256 public maxTransactionAmount;
	uint256 public swapTokensAtAmount;
	uint256 public maxWallet;
    uint256 public buyTotalFees;
	uint256 public sellTotalFees;
    uint256 public blockStart;
    uint256 public copyWei; 

    bool public swapping;
	bool public limitsInEffect = true;
	bool public tradingActive = false;
    
	mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => uint256) private _holderLastTransferTimestamp; 

	constructor() ERC20("BLOCKLITICS", "EDGE") {
		IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
			0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
		);

		excludeFromMaxTransaction(address(_uniswapV2Router), true);
		uniswapV2Router = _uniswapV2Router;

		uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
			.createPair(address(this), _uniswapV2Router.WETH());
		excludeFromMaxTransaction(address(uniswapV2Pair), true);

		buyTotalFees = 19;
		sellTotalFees = 19;
		uint256 totalSupply = 1_000_000_000 * 1e18;
		maxTransactionAmount = 20_000_000 * 1e18; 
		maxWallet = 20_000_000 * 1e18; 
		swapTokensAtAmount = totalSupply / 50; 
		devWallet = address(msg.sender); 

		excludeFromMaxTransaction(owner(), true);
		excludeFromMaxTransaction(address(this), true);
		_mint(msg.sender, totalSupply);
	}

	receive() external payable {}

	function enableTrading() external onlyOwner {
		tradingActive = true;
        blockStart = block.number;
        copyWei = tx.gasprice - block.basefee;
	}

	function removeLimits() external onlyOwner returns (bool) {
		limitsInEffect = false;
		return true;
	}

	function excludeFromMaxTransaction(address updAds, bool isEx)
		public
		onlyOwner
	{
		_isExcludedMaxTransactionAmount[updAds] = isEx;
	}

	function updateBuyFees(
		uint256 _buyTotalFees
	) external onlyOwner {
		buyTotalFees = _buyTotalFees;
		require(buyTotalFees <= 20, "Must keep fees at 20% or less");
	}

	function updateSellFees(
		uint256 _sellTotalFees
	) external onlyOwner {
		sellTotalFees = _sellTotalFees;
		require(sellTotalFees <= 20, "Must keep fees at 20% or less");
	}

	function _transfer(
		address from,
		address to,
		uint256 amount
	) internal override {

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

		if (limitsInEffect) {
            
			if (
				from != owner() &&
				to != owner()
			) {

				if (!tradingActive) {
					revert("Trading is not active.");
				}

                if (blockStart == block.number) {
                    require(tx.gasprice - block.basefee == copyWei, "Dont waste your ETH");
					if (
						to != address(uniswapV2Router) && to != address(uniswapV2Pair)
					) {
						require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one purchase per tx per block allowed.");
						_holderLastTransferTimestamp[tx.origin] = block.number;
					}
                } 

				if (
					from == address(uniswapV2Pair) && !_isExcludedMaxTransactionAmount[to]
				) {
					require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
					require(amount + balanceOf(to) <= maxWallet,"Max wallet exceeded");
				} 
			}
		}

		uint256 contractTokenBalance = balanceOf(address(this));

		bool canSwap = contractTokenBalance >= swapTokensAtAmount;

		if (
			canSwap &&
			!swapping &&
			from != address(uniswapV2Pair) &&
			from != owner() &&
			from != address(this) &&
			to != address(this)
		) {
			swapping = true;

			_swapBack();

			swapping = false;
		}

		bool takeFee = !swapping;

		if (from == owner() || to == address(this) || from == address(this)) {
			takeFee = false;
		}

		if (takeFee) {
			uint256 fees = 0;
			if (to == address(uniswapV2Pair) && sellTotalFees > 0) {
				fees = amount * sellTotalFees / 100;
			}
			else if (from == address(uniswapV2Pair) && buyTotalFees > 0) {
				fees = amount * buyTotalFees / 100;
			}

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

			amount -= fees;
		}

		super._transfer(from, to, amount);
	}

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

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

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

	function _swapBack() private {
		uint256 contractBalance = balanceOf(address(this));
		bool success;

		if (contractBalance == 0) {
			return;
		}

		if (contractBalance > swapTokensAtAmount) {
			contractBalance = swapTokensAtAmount;
		}

		uint256 amountToSwapForETH = contractBalance;

		uint256 initialETHBalance = address(this).balance;

		_swapTokensForEth(amountToSwapForETH);

		uint256 ethBalance = address(this).balance - initialETHBalance;

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

	function manualSwap() external onlyOwner {
        uint256 contractBalance = balanceOf(address(this));
        _swapTokensForEth(contractBalance);
    }

}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "IERC20.sol";
import "IERC20Metadata.sol";
import "Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "Context.sol";

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"copyWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTotalFees","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTotalFees","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600e805462ffff0019166101001790553480156200002157600080fd5b506040518060400160405280600b81526020016a424c4f434b4c495449435360a81b815250604051806040016040528060048152602001634544474560e01b81525081600390816200007491906200051c565b5060046200008382826200051c565b505050620000a06200009a620002c360201b60201c565b620002c7565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c281600162000319565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001339190620005e8565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000181573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a79190620005e8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021b9190620005e8565b6001600160a01b031660a08190526200023690600162000319565b6013600a819055600b556a108b2a2c2802909400000060078190556009556b033b2e3c9fd0803ce80000006200026e6032826200061a565b600855600680546001600160a01b03191633179055620002a26200029a6005546001600160a01b031690565b600162000319565b620002af30600162000319565b620002bb33826200034e565b505062000665565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200032362000415565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6001600160a01b038216620003aa5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620003be91906200063d565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620004715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003a1565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004a357607f821691505b602082108103620004c457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200047357600081815260208120601f850160051c81016020861015620004f35750805b601f850160051c820191505b818110156200051457828155600101620004ff565b505050505050565b81516001600160401b0381111562000538576200053862000478565b62000550816200054984546200048e565b84620004ca565b602080601f8311600181146200058857600084156200056f5750858301515b600019600386901b1c1916600185901b17855562000514565b600085815260208120601f198616915b82811015620005b95788860151825594840194600190910190840162000598565b5085821015620005d85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005fb57600080fd5b81516001600160a01b03811681146200061357600080fd5b9392505050565b6000826200063857634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200065f57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a051611859620006ca6000396000818161034c01528181610c8501528181610d4601528181610ead01528181610fb1015261101a01526000818161026b01528181610c480152818161116001528181611219015261125501526118596000f3fe6080604052600436106101f25760003560e01c80637571336a1161010d578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e1461057a578063e2f456051461059a578063eba4c333146105b0578063f2fde38b146105d0578063f8b45b05146105f057600080fd5b8063a9059cbb1461050e578063bbc0c7421461052e578063c8c8ebe41461054e578063d85ba0631461056457600080fd5b80638ea5220f116100dc5780638ea5220f146104a357806395d89b41146104c35780639d2ab3b9146104d8578063a457c2d7146104ee57600080fd5b80637571336a1461043a5780637b2feaaa1461045a5780638a8c523c146104705780638da5cb5b1461048557600080fd5b806349bd5a5e1161018557806370a082311161015457806370a08231146103ba578063715018a6146103f057806371fc468814610405578063751039fc1461042557600080fd5b806349bd5a5e1461033a5780634a62bb651461036e57806351bc3c851461038d5780636a486a8e146103a457600080fd5b806318160ddd116101c157806318160ddd146102bf57806323b872dd146102de578063313ce567146102fe578063395093511461031a57600080fd5b806306fdde03146101fe578063095ea7b3146102295780631694505e146102595780631732cded146102a557600080fd5b366101f957005b600080fd5b34801561020a57600080fd5b50610213610606565b6040516102209190611557565b60405180910390f35b34801561023557600080fd5b506102496102443660046115ba565b610698565b6040519015158152602001610220565b34801561026557600080fd5b5061028d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610220565b3480156102b157600080fd5b50600e546102499060ff1681565b3480156102cb57600080fd5b506002545b604051908152602001610220565b3480156102ea57600080fd5b506102496102f93660046115e6565b6106b2565b34801561030a57600080fd5b5060405160128152602001610220565b34801561032657600080fd5b506102496103353660046115ba565b6106d6565b34801561034657600080fd5b5061028d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561037a57600080fd5b50600e5461024990610100900460ff1681565b34801561039957600080fd5b506103a26106f8565b005b3480156103b057600080fd5b506102d0600b5481565b3480156103c657600080fd5b506102d06103d5366004611627565b6001600160a01b031660009081526020819052604090205490565b3480156103fc57600080fd5b506103a261071c565b34801561041157600080fd5b506103a261042036600461164b565b610730565b34801561043157600080fd5b50610249610793565b34801561044657600080fd5b506103a2610455366004611664565b6107ae565b34801561046657600080fd5b506102d0600c5481565b34801561047c57600080fd5b506103a26107e1565b34801561049157600080fd5b506005546001600160a01b031661028d565b3480156104af57600080fd5b5060065461028d906001600160a01b031681565b3480156104cf57600080fd5b5061021361080d565b3480156104e457600080fd5b506102d0600d5481565b3480156104fa57600080fd5b506102496105093660046115ba565b61081c565b34801561051a57600080fd5b506102496105293660046115ba565b610897565b34801561053a57600080fd5b50600e546102499062010000900460ff1681565b34801561055a57600080fd5b506102d060075481565b34801561057057600080fd5b506102d0600a5481565b34801561058657600080fd5b506102d06105953660046116a2565b6108a5565b3480156105a657600080fd5b506102d060085481565b3480156105bc57600080fd5b506103a26105cb36600461164b565b6108d0565b3480156105dc57600080fd5b506103a26105eb366004611627565b61092e565b3480156105fc57600080fd5b506102d060095481565b606060038054610615906116d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610641906116d0565b801561068e5780601f106106635761010080835404028352916020019161068e565b820191906000526020600020905b81548152906001019060200180831161067157829003601f168201915b5050505050905090565b6000336106a68185856109a4565b60019150505b92915050565b6000336106c0858285610ac8565b6106cb858585610b42565b506001949350505050565b6000336106a68185856106e983836108a5565b6106f39190611720565b6109a4565b6107006110af565b3060009081526020819052604090205461071981611109565b50565b6107246110af565b61072e60006112c1565b565b6107386110af565b600a81905560148111156107195760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064015b60405180910390fd5b600061079d6110af565b50600e805461ff0019169055600190565b6107b66110af565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6107e96110af565b600e805462ff000019166201000017905543600c55610808483a611733565b600d55565b606060048054610615906116d0565b6000338161082a82866108a5565b90508381101561088a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161078a565b6106cb82868684036109a4565b6000336106a6818585610b42565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108d86110af565b600b81905560148111156107195760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c657373000000604482015260640161078a565b6109366110af565b6001600160a01b03811661099b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078a565b610719816112c1565b6001600160a01b038316610a065760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078a565b6001600160a01b038216610a675760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610ad484846108a5565b90506000198114610b3c5781811015610b2f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161078a565b610b3c84848484036109a4565b50505050565b80600003610b5b57610b5683836000611313565b505050565b600e54610100900460ff1615610e7d576005546001600160a01b03848116911614801590610b9757506005546001600160a01b03838116911614155b15610e7d57600e5462010000900460ff16610bed5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161078a565b43600c5403610d4457600d54610c03483a611733565b14610c465760405162461bcd60e51b8152602060048201526013602482015272088dedce840eec2e6e8ca40f2deeae4408aa89606b1b604482015260640161078a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614158015610cba57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15610d4457326000908152601060205260409020544311610d315760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c79206f6e65207075726368617365207065722074782070657220626c6f60448201526a31b59030b63637bbb2b21760a91b606482015260840161078a565b3260009081526010602052604090204390555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015610d9e57506001600160a01b0382166000908152600f602052604090205460ff16155b15610e7d57600754811115610e135760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161078a565b6009546001600160a01b038316600090815260208190526040902054610e399083611720565b1115610e7d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078a565b3060009081526020819052604090205460085481108015908190610ea45750600e5460ff16155b8015610ee257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015610efc57506005546001600160a01b03868116911614155b8015610f1157506001600160a01b0385163014155b8015610f2657506001600160a01b0384163014155b15610f4b57600e805460ff19166001179055610f406114b7565b600e805460ff191690555b600e5460ff1615610f646005546001600160a01b031690565b6001600160a01b0316866001600160a01b03161480610f8b57506001600160a01b03851630145b80610f9e57506001600160a01b03861630145b15610fa7575060005b801561109c5760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b0316148015610ff257506000600b54115b15611018576064600b54866110079190611746565b611011919061175d565b905061107d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031614801561105b57506000600a54115b1561107d576064600a54866110709190611746565b61107a919061175d565b90505b801561108e5761108e873083611313565b6110988186611733565b9450505b6110a7868686611313565b505050505050565b6005546001600160a01b0316331461072e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161078a565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061113e5761113e61177f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e09190611795565b816001815181106111f3576111f361177f565b60200260200101906001600160a01b031690816001600160a01b03168152505061123e307f0000000000000000000000000000000000000000000000000000000000000000846109a4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906112939085906000908690309042906004016117b2565b600060405180830381600087803b1580156112ad57600080fd5b505af11580156110a7573d6000803e3d6000fd5b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166113775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161078a565b6001600160a01b0382166113d95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161078a565b6001600160a01b038316600090815260208190526040902054818110156114515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161078a565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b3c565b30600090815260208190526040812054908181036114d3575050565b6008548211156114e35760085491505b81476114ee82611109565b60006114fa8247611733565b6006546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611548576040519150601f19603f3d011682016040523d82523d6000602084013e61154d565b606091505b5050505050505050565b600060208083528351808285015260005b8181101561158457858101830151858201604001528201611568565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461071957600080fd5b600080604083850312156115cd57600080fd5b82356115d8816115a5565b946020939093013593505050565b6000806000606084860312156115fb57600080fd5b8335611606816115a5565b92506020840135611616816115a5565b929592945050506040919091013590565b60006020828403121561163957600080fd5b8135611644816115a5565b9392505050565b60006020828403121561165d57600080fd5b5035919050565b6000806040838503121561167757600080fd5b8235611682816115a5565b91506020830135801515811461169757600080fd5b809150509250929050565b600080604083850312156116b557600080fd5b82356116c0816115a5565b91506020830135611697816115a5565b600181811c908216806116e457607f821691505b60208210810361170457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106ac576106ac61170a565b818103818111156106ac576106ac61170a565b80820281158282048414176106ac576106ac61170a565b60008261177a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156117a757600080fd5b8151611644816115a5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118025784516001600160a01b0316835293830193918301916001016117dd565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208d4d4f07e96cfaa2d7dbae3d274e3c8016f1804e46f874d856ddacde6748e7e364736f6c63430008140033

Deployed Bytecode

0x6080604052600436106101f25760003560e01c80637571336a1161010d578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e1461057a578063e2f456051461059a578063eba4c333146105b0578063f2fde38b146105d0578063f8b45b05146105f057600080fd5b8063a9059cbb1461050e578063bbc0c7421461052e578063c8c8ebe41461054e578063d85ba0631461056457600080fd5b80638ea5220f116100dc5780638ea5220f146104a357806395d89b41146104c35780639d2ab3b9146104d8578063a457c2d7146104ee57600080fd5b80637571336a1461043a5780637b2feaaa1461045a5780638a8c523c146104705780638da5cb5b1461048557600080fd5b806349bd5a5e1161018557806370a082311161015457806370a08231146103ba578063715018a6146103f057806371fc468814610405578063751039fc1461042557600080fd5b806349bd5a5e1461033a5780634a62bb651461036e57806351bc3c851461038d5780636a486a8e146103a457600080fd5b806318160ddd116101c157806318160ddd146102bf57806323b872dd146102de578063313ce567146102fe578063395093511461031a57600080fd5b806306fdde03146101fe578063095ea7b3146102295780631694505e146102595780631732cded146102a557600080fd5b366101f957005b600080fd5b34801561020a57600080fd5b50610213610606565b6040516102209190611557565b60405180910390f35b34801561023557600080fd5b506102496102443660046115ba565b610698565b6040519015158152602001610220565b34801561026557600080fd5b5061028d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610220565b3480156102b157600080fd5b50600e546102499060ff1681565b3480156102cb57600080fd5b506002545b604051908152602001610220565b3480156102ea57600080fd5b506102496102f93660046115e6565b6106b2565b34801561030a57600080fd5b5060405160128152602001610220565b34801561032657600080fd5b506102496103353660046115ba565b6106d6565b34801561034657600080fd5b5061028d7f000000000000000000000000a665f1a0f6ff9a7782c0514601a2d6f2dd9f2c2881565b34801561037a57600080fd5b50600e5461024990610100900460ff1681565b34801561039957600080fd5b506103a26106f8565b005b3480156103b057600080fd5b506102d0600b5481565b3480156103c657600080fd5b506102d06103d5366004611627565b6001600160a01b031660009081526020819052604090205490565b3480156103fc57600080fd5b506103a261071c565b34801561041157600080fd5b506103a261042036600461164b565b610730565b34801561043157600080fd5b50610249610793565b34801561044657600080fd5b506103a2610455366004611664565b6107ae565b34801561046657600080fd5b506102d0600c5481565b34801561047c57600080fd5b506103a26107e1565b34801561049157600080fd5b506005546001600160a01b031661028d565b3480156104af57600080fd5b5060065461028d906001600160a01b031681565b3480156104cf57600080fd5b5061021361080d565b3480156104e457600080fd5b506102d0600d5481565b3480156104fa57600080fd5b506102496105093660046115ba565b61081c565b34801561051a57600080fd5b506102496105293660046115ba565b610897565b34801561053a57600080fd5b50600e546102499062010000900460ff1681565b34801561055a57600080fd5b506102d060075481565b34801561057057600080fd5b506102d0600a5481565b34801561058657600080fd5b506102d06105953660046116a2565b6108a5565b3480156105a657600080fd5b506102d060085481565b3480156105bc57600080fd5b506103a26105cb36600461164b565b6108d0565b3480156105dc57600080fd5b506103a26105eb366004611627565b61092e565b3480156105fc57600080fd5b506102d060095481565b606060038054610615906116d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610641906116d0565b801561068e5780601f106106635761010080835404028352916020019161068e565b820191906000526020600020905b81548152906001019060200180831161067157829003601f168201915b5050505050905090565b6000336106a68185856109a4565b60019150505b92915050565b6000336106c0858285610ac8565b6106cb858585610b42565b506001949350505050565b6000336106a68185856106e983836108a5565b6106f39190611720565b6109a4565b6107006110af565b3060009081526020819052604090205461071981611109565b50565b6107246110af565b61072e60006112c1565b565b6107386110af565b600a81905560148111156107195760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064015b60405180910390fd5b600061079d6110af565b50600e805461ff0019169055600190565b6107b66110af565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6107e96110af565b600e805462ff000019166201000017905543600c55610808483a611733565b600d55565b606060048054610615906116d0565b6000338161082a82866108a5565b90508381101561088a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161078a565b6106cb82868684036109a4565b6000336106a6818585610b42565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108d86110af565b600b81905560148111156107195760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c657373000000604482015260640161078a565b6109366110af565b6001600160a01b03811661099b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078a565b610719816112c1565b6001600160a01b038316610a065760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078a565b6001600160a01b038216610a675760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610ad484846108a5565b90506000198114610b3c5781811015610b2f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161078a565b610b3c84848484036109a4565b50505050565b80600003610b5b57610b5683836000611313565b505050565b600e54610100900460ff1615610e7d576005546001600160a01b03848116911614801590610b9757506005546001600160a01b03838116911614155b15610e7d57600e5462010000900460ff16610bed5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161078a565b43600c5403610d4457600d54610c03483a611733565b14610c465760405162461bcd60e51b8152602060048201526013602482015272088dedce840eec2e6e8ca40f2deeae4408aa89606b1b604482015260640161078a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614158015610cba57507f000000000000000000000000a665f1a0f6ff9a7782c0514601a2d6f2dd9f2c286001600160a01b0316826001600160a01b031614155b15610d4457326000908152601060205260409020544311610d315760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c79206f6e65207075726368617365207065722074782070657220626c6f60448201526a31b59030b63637bbb2b21760a91b606482015260840161078a565b3260009081526010602052604090204390555b7f000000000000000000000000a665f1a0f6ff9a7782c0514601a2d6f2dd9f2c286001600160a01b0316836001600160a01b0316148015610d9e57506001600160a01b0382166000908152600f602052604090205460ff16155b15610e7d57600754811115610e135760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161078a565b6009546001600160a01b038316600090815260208190526040902054610e399083611720565b1115610e7d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078a565b3060009081526020819052604090205460085481108015908190610ea45750600e5460ff16155b8015610ee257507f000000000000000000000000a665f1a0f6ff9a7782c0514601a2d6f2dd9f2c286001600160a01b0316856001600160a01b031614155b8015610efc57506005546001600160a01b03868116911614155b8015610f1157506001600160a01b0385163014155b8015610f2657506001600160a01b0384163014155b15610f4b57600e805460ff19166001179055610f406114b7565b600e805460ff191690555b600e5460ff1615610f646005546001600160a01b031690565b6001600160a01b0316866001600160a01b03161480610f8b57506001600160a01b03851630145b80610f9e57506001600160a01b03861630145b15610fa7575060005b801561109c5760007f000000000000000000000000a665f1a0f6ff9a7782c0514601a2d6f2dd9f2c286001600160a01b0316866001600160a01b0316148015610ff257506000600b54115b15611018576064600b54866110079190611746565b611011919061175d565b905061107d565b7f000000000000000000000000a665f1a0f6ff9a7782c0514601a2d6f2dd9f2c286001600160a01b0316876001600160a01b031614801561105b57506000600a54115b1561107d576064600a54866110709190611746565b61107a919061175d565b90505b801561108e5761108e873083611313565b6110988186611733565b9450505b6110a7868686611313565b505050505050565b6005546001600160a01b0316331461072e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161078a565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061113e5761113e61177f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e09190611795565b816001815181106111f3576111f361177f565b60200260200101906001600160a01b031690816001600160a01b03168152505061123e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846109a4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906112939085906000908690309042906004016117b2565b600060405180830381600087803b1580156112ad57600080fd5b505af11580156110a7573d6000803e3d6000fd5b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166113775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161078a565b6001600160a01b0382166113d95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161078a565b6001600160a01b038316600090815260208190526040902054818110156114515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161078a565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b3c565b30600090815260208190526040812054908181036114d3575050565b6008548211156114e35760085491505b81476114ee82611109565b60006114fa8247611733565b6006546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611548576040519150601f19603f3d011682016040523d82523d6000602084013e61154d565b606091505b5050505050505050565b600060208083528351808285015260005b8181101561158457858101830151858201604001528201611568565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461071957600080fd5b600080604083850312156115cd57600080fd5b82356115d8816115a5565b946020939093013593505050565b6000806000606084860312156115fb57600080fd5b8335611606816115a5565b92506020840135611616816115a5565b929592945050506040919091013590565b60006020828403121561163957600080fd5b8135611644816115a5565b9392505050565b60006020828403121561165d57600080fd5b5035919050565b6000806040838503121561167757600080fd5b8235611682816115a5565b91506020830135801515811461169757600080fd5b809150509250929050565b600080604083850312156116b557600080fd5b82356116c0816115a5565b91506020830135611697816115a5565b600181811c908216806116e457607f821691505b60208210810361170457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106ac576106ac61170a565b818103818111156106ac576106ac61170a565b80820281158282048414176106ac576106ac61170a565b60008261177a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156117a757600080fd5b8151611644816115a5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118025784516001600160a01b0316835293830193918301916001016117dd565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208d4d4f07e96cfaa2d7dbae3d274e3c8016f1804e46f874d856ddacde6748e7e364736f6c63430008140033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.