Feature Tip: Add private address tag to any address under My Name Tag !
Latest 25 from a total of 943 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21314686 | 7 hrs ago | IN | 0 ETH | 0.00088202 | ||||
Approve | 21314051 | 10 hrs ago | IN | 0 ETH | 0.00043171 | ||||
Approve | 21313990 | 10 hrs ago | IN | 0 ETH | 0.00074803 | ||||
Approve | 21311942 | 17 hrs ago | IN | 0 ETH | 0.00059822 | ||||
Approve | 21311559 | 18 hrs ago | IN | 0 ETH | 0.00072017 | ||||
Approve | 21311214 | 19 hrs ago | IN | 0 ETH | 0.00053093 | ||||
Transfer | 21310694 | 21 hrs ago | IN | 0 ETH | 0.00127117 | ||||
Approve | 21309850 | 24 hrs ago | IN | 0 ETH | 0.00088102 | ||||
Approve | 21309061 | 26 hrs ago | IN | 0 ETH | 0.00131766 | ||||
Transfer | 21293401 | 3 days ago | IN | 0 ETH | 0.00048267 | ||||
Transfer | 21287180 | 4 days ago | IN | 0 ETH | 0.00096641 | ||||
Transfer | 21287163 | 4 days ago | IN | 0 ETH | 0.00098533 | ||||
Approve | 21287155 | 4 days ago | IN | 0 ETH | 0.00033089 | ||||
Approve | 21287136 | 4 days ago | IN | 0 ETH | 0.00038875 | ||||
Approve | 21287134 | 4 days ago | IN | 0 ETH | 0.00065227 | ||||
Transfer | 21287083 | 4 days ago | IN | 0 ETH | 0.00104894 | ||||
Approve | 21284566 | 4 days ago | IN | 0 ETH | 0.000504 | ||||
Approve | 21283155 | 4 days ago | IN | 0 ETH | 0.00058109 | ||||
Approve | 21262318 | 7 days ago | IN | 0 ETH | 0.00033881 | ||||
Approve | 21260657 | 7 days ago | IN | 0 ETH | 0.00020099 | ||||
Approve | 21260653 | 7 days ago | IN | 0 ETH | 0.00037608 | ||||
Transfer | 21242670 | 10 days ago | IN | 0 ETH | 0.00072798 | ||||
Approve | 21242531 | 10 days ago | IN | 0 ETH | 0.00054589 | ||||
Approve | 21237807 | 11 days ago | IN | 0 ETH | 0.00095951 | ||||
Approve | 21233578 | 11 days ago | IN | 0 ETH | 0.00044701 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
19377728 | 271 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
LooterToken
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* Website: https://looter.ai/ Docs: https://docs.looter.ai/ Twitter: https://twitter.com/looter_ai */ pragma solidity 0.8.20; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract LooterToken is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 private constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address private immutable uniswapV2Pair; uint256 private constant _totalSupply = 100_000_000 * 1e18; bool public limitsInEffect = true; uint256 public maxTx = 200_000 * 1e18; uint256 public maxWallet = 500_000 * 1e18; bool public tradingActive = false; bool private swapping; uint256 public swapTokensAtAmount = (_totalSupply * 5) / 10000; // 0.05% swap wallet; address private feeWallet; bool public tokenFeeActive = true; uint256 private launchTimestamp; uint256 public buyTokenFee = 5; uint256 public sellTokenFee = 5; mapping(address => bool) public isExcludedFromFees; mapping(address => bool) public ammPairs; constructor() ERC20(unicode"Looter", unicode"LOOTER") { address owner = tx.origin; uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); ammPairs[address(uniswapV2Pair)] = true; feeWallet = owner; // exclude from paying fees or having max transaction amount excludeFromFees(owner, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); _mint(owner, _totalSupply); _transferOwnership(owner); } receive() external payable {} function enableTrading() external onlyOwner { tradingActive = true; launchTimestamp = block.timestamp; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; } function excludeFromFees(address account, bool excluded) public onlyOwner { isExcludedFromFees[account] = excluded; } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from ammPairs" ); ammPairs[pair] = value; } function disableTokenFee() public onlyOwner { tokenFeeActive = false; buyTokenFee = 0; sellTokenFee = 0; } function updateFeeWallet(address newWallet) external onlyOwner { feeWallet = newWallet; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if ( limitsInEffect && tradingActive && block.timestamp > launchTimestamp + 300 ) { // after 5 minutes of launch remove limits limitsInEffect = false; maxTx = _totalSupply; maxWallet = _totalSupply; } if (limitsInEffect && tx.origin != owner()) { require(tradingActive, "Trading is not active."); if (!swapping) { //when buy if (ammPairs[from]) { require( amount <= maxTx, "Buy transfer amount exceeds the maxTx." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if (ammPairs[to]) { require( amount <= maxTx, "Sell transfer amount exceeds the maxTx." ); } else { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } if (tokenFeeActive) { uint256 _buyTokenFee = buyTokenFee; uint256 _sellTokenFee = sellTokenFee; if (block.timestamp < launchTimestamp + 60) { _buyTokenFee = 30; _sellTokenFee = 30; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && !swapping && !ammPairs[from] && !isExcludedFromFees[from] && !isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (isExcludedFromFees[from] || isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (ammPairs[to] && _sellTokenFee > 0) { fees = amount.mul(_sellTokenFee).div(100); } // on buy else if (ammPairs[from] && _buyTokenFee > 0) { fees = amount.mul(_buyTokenFee).div(100); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, feeWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); bool success; if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForEth(contractBalance); (success, ) = address(feeWallet).call{value: address(this).balance}(""); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { // address oldOwner = _owner; _owner = newOwner; // emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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 {} }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"buyTokenFee","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":"disableTokenFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTokenFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenFeeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526005805460ff60a01b1916600160a01b178155692a5a058fc295ed0000006006556969e10de76676d08000006007556008805460ff191690556127109062000059906a52b7d2dcc80cd2e400000090620004c4565b620000659190620004e4565b600955600a805460ff60a01b1916600160a01b1790556005600c819055600d553480156200009257600080fd5b50604051806040016040528060068152602001652637b7ba32b960d11b815250604051806040016040528060068152602001652627a7aa22a960d11b8152508160039081620000e29190620005ab565b506004620000f18282620005ab565b5050506200012a620001086200034b60201b60201c565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000329050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000182573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a8919062000677565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000230919062000677565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200027e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a4919062000677565b6001600160a01b0390811660808190526000908152600f602052604090208054600160ff199091168117909155600a80546001600160a01b03191692841692909217909155620002f69082906200034f565b620003033060016200034f565b6200031261dead60016200034f565b62000329816a52b7d2dcc80cd2e400000062000384565b600580546001600160a01b0319166001600160a01b03831617905550620006bf565b3390565b620003596200044b565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6001600160a01b038216620003e05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620003f49190620006a9565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620004a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003d7565b565b505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004de57620004de620004ae565b92915050565b6000826200050257634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200053257607f821691505b6020821081036200055357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004a957600081815260208120601f850160051c81016020861015620005825750805b601f850160051c820191505b81811015620005a3578281556001016200058e565b505050505050565b81516001600160401b03811115620005c757620005c762000507565b620005df81620005d884546200051d565b8462000559565b602080601f831160018114620006175760008415620005fe5750858301515b600019600386901b1c1916600185901b178555620005a3565b600085815260208120601f198616915b82811015620006485788860151825594840194600190910190840162000627565b5085821015620006675787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200068a57600080fd5b81516001600160a01b0381168114620006a257600080fd5b9392505050565b80820180821115620004de57620004de620004ae565b6080516118b6620006db60003960006106f501526118b66000f3fe6080604052600436106101d15760003560e01c806395d89b41116100f7578063d257b34f11610095578063e70e80a111610064578063e70e80a11461052f578063ee9e654c14610545578063f2fde38b1461055b578063f8b45b051461057b57600080fd5b8063d257b34f146104c4578063dd62ed3e146104e4578063e2f4560514610504578063e493e0151461051a57600080fd5b8063a72905a2116100d1578063a72905a21461043a578063a9059cbb1461046a578063bbc0c7421461048a578063c0246668146104a457600080fd5b806395d89b41146103e55780639a7a23d6146103fa578063a457c2d71461041a57600080fd5b80634fbee1931161016f5780637437681e1161013e5780637437681e14610371578063790d3950146103875780638a8c523c146103a85780638da5cb5b146103bd57600080fd5b80634fbee193146102d4578063667185241461030457806370a0823114610326578063715018a61461035c57600080fd5b806323b872dd116101ab57806323b872dd14610257578063313ce5671461027757806339509351146102935780634a62bb65146102b357600080fd5b806306fdde03146101dd578063095ea7b31461020857806318160ddd1461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f2610591565b6040516101ff9190611533565b60405180910390f35b34801561021457600080fd5b50610228610223366004611596565b610623565b60405190151581526020016101ff565b34801561024457600080fd5b506002545b6040519081526020016101ff565b34801561026357600080fd5b506102286102723660046115c2565b61063d565b34801561028357600080fd5b50604051601281526020016101ff565b34801561029f57600080fd5b506102286102ae366004611596565b610661565b3480156102bf57600080fd5b5060055461022890600160a01b900460ff1681565b3480156102e057600080fd5b506102286102ef366004611603565b600e6020526000908152604090205460ff1681565b34801561031057600080fd5b5061032461031f366004611603565b610683565b005b34801561033257600080fd5b50610249610341366004611603565b6001600160a01b031660009081526020819052604090205490565b34801561036857600080fd5b506103246106ad565b34801561037d57600080fd5b5061024960065481565b34801561039357600080fd5b50600a5461022890600160a01b900460ff1681565b3480156103b457600080fd5b506103246106c1565b3480156103c957600080fd5b506005546040516001600160a01b0390911681526020016101ff565b3480156103f157600080fd5b506101f26106dc565b34801561040657600080fd5b50610324610415366004611620565b6106eb565b34801561042657600080fd5b50610228610435366004611596565b6107b5565b34801561044657600080fd5b50610228610455366004611603565b600f6020526000908152604090205460ff1681565b34801561047657600080fd5b50610228610485366004611596565b610830565b34801561049657600080fd5b506008546102289060ff1681565b3480156104b057600080fd5b506103246104bf366004611620565b61083e565b3480156104d057600080fd5b506103246104df36600461165e565b610871565b3480156104f057600080fd5b506102496104ff366004611677565b61099a565b34801561051057600080fd5b5061024960095481565b34801561052657600080fd5b506103246109c5565b34801561053b57600080fd5b50610249600d5481565b34801561055157600080fd5b50610249600c5481565b34801561056757600080fd5b50610324610576366004611603565b6109e6565b34801561058757600080fd5b5061024960075481565b6060600380546105a0906116a5565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc906116a5565b80156106195780601f106105ee57610100808354040283529160200191610619565b820191906000526020600020905b8154815290600101906020018083116105fc57829003601f168201915b5050505050905090565b600033610631818585610a5f565b60019150505b92915050565b60003361064b858285610b83565b610656858585610bfd565b506001949350505050565b600033610631818585610674838361099a565b61067e91906116f5565b610a5f565b61068b61112a565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6106b561112a565b6106bf6000611184565b565b6106c961112a565b6008805460ff1916600117905542600b55565b6060600480546105a0906116a5565b6106f361112a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361078a5760405162461bcd60e51b815260206004820152602860248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d20604482015267616d6d506169727360c01b60648201526084015b60405180910390fd5b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b600033816107c3828661099a565b9050838110156108235760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610781565b6106568286868403610a5f565b600033610631818585610bfd565b61084661112a565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b61087961112a565b620186a061088660025490565b610891906001611708565b61089b919061171f565b8110156109085760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610781565b6103e861091460025490565b61091f906005611708565b610929919061171f565b8111156109955760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610781565b600955565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109cd61112a565b600a805460ff60a01b191690556000600c819055600d55565b6109ee61112a565b6001600160a01b038116610a535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610781565b610a5c81611184565b50565b6001600160a01b038316610ac15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610781565b6001600160a01b038216610b225760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610781565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b8f848461099a565b90506000198114610bf75781811015610bea5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610781565b610bf78484848403610a5f565b50505050565b6001600160a01b038316610c235760405162461bcd60e51b815260040161078190611741565b6001600160a01b038216610c495760405162461bcd60e51b815260040161078190611786565b80600003610c6257610c5d838360006111a6565b505050565b600554600160a01b900460ff168015610c7d575060085460ff165b8015610c965750600b54610c939061012c6116f5565b42115b15610cbd576005805460ff60a01b191690556a52b7d2dcc80cd2e400000060068190556007555b600554600160a01b900460ff168015610ce157506005546001600160a01b03163214155b15610f1e5760085460ff16610d315760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610781565b600854610100900460ff16610f1e576001600160a01b0383166000908152600f602052604090205460ff1615610e3157600654811115610dc25760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610781565b6007546001600160a01b038316600090815260208190526040902054610de890836116f5565b1115610e2c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610781565b610f1e565b6001600160a01b0382166000908152600f602052604090205460ff1615610eb457600654811115610e2c5760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610781565b6007546001600160a01b038316600090815260208190526040902054610eda90836116f5565b1115610f1e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610781565b600a54600160a01b900460ff161561111f57600c54600d54600b54610f4490603c6116f5565b421015610f525750601e9050805b3060009081526020819052604090205460095481108015908190610f7e5750600854610100900460ff16155b8015610fa357506001600160a01b0387166000908152600f602052604090205460ff16155b8015610fc857506001600160a01b0387166000908152600e602052604090205460ff16155b8015610fed57506001600160a01b0386166000908152600e602052604090205460ff16155b15611015576008805461ff0019166101001790556110096112d0565b6008805461ff00191690555b6008546001600160a01b0388166000908152600e602052604090205460ff61010090920482161591168061106157506001600160a01b0387166000908152600e602052604090205460ff165b1561106a575060005b60008115611118576001600160a01b0388166000908152600f602052604090205460ff16801561109a5750600085115b156110bb576110b460646110ae8988611374565b90611387565b90506110fa565b6001600160a01b0389166000908152600f602052604090205460ff1680156110e35750600086115b156110fa576110f760646110ae8989611374565b90505b801561110b5761110b8930836111a6565b61111581886117c9565b96505b5050505050505b610c5d8383836111a6565b6005546001600160a01b031633146106bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610781565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166111cc5760405162461bcd60e51b815260040161078190611741565b6001600160a01b0382166111f25760405162461bcd60e51b815260040161078190611786565b6001600160a01b0383166000908152602081905260409020548181101561126a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610781565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bf7565b30600090815260208190526040812054908181036112ec575050565b6009546112fa906014611708565b8211156113125760095461130f906014611708565b91505b61131b82611393565b600a546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611368576040519150601f19603f3d011682016040523d82523d6000602084013e61136d565b606091505b5050505050565b60006113808284611708565b9392505050565b6000611380828461171f565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106113c8576113c86117dc565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561143a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145e91906117f2565b81600181518110611471576114716117dc565b60200260200101906001600160a01b031690816001600160a01b0316815250506114b030737a250d5630b4cf539739df2c5dacb4c659f2488d84610a5f565b600a5460405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9163791ac947916114fd91869160009187916001600160a01b0390911690429060040161180f565b600060405180830381600087803b15801561151757600080fd5b505af115801561152b573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561156057858101830151858201604001528201611544565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a5c57600080fd5b600080604083850312156115a957600080fd5b82356115b481611581565b946020939093013593505050565b6000806000606084860312156115d757600080fd5b83356115e281611581565b925060208401356115f281611581565b929592945050506040919091013590565b60006020828403121561161557600080fd5b813561138081611581565b6000806040838503121561163357600080fd5b823561163e81611581565b91506020830135801515811461165357600080fd5b809150509250929050565b60006020828403121561167057600080fd5b5035919050565b6000806040838503121561168a57600080fd5b823561169581611581565b9150602083013561165381611581565b600181811c908216806116b957607f821691505b6020821081036116d957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610637576106376116df565b8082028115828204841417610637576106376116df565b60008261173c57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610637576106376116df565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561180457600080fd5b815161138081611581565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561185f5784516001600160a01b03168352938301939183019160010161183a565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c18f1063db9f34754c6e0c598234522739c8a489f4abd06b407a65abd49e9c7764736f6c63430008140033
Deployed Bytecode
0x6080604052600436106101d15760003560e01c806395d89b41116100f7578063d257b34f11610095578063e70e80a111610064578063e70e80a11461052f578063ee9e654c14610545578063f2fde38b1461055b578063f8b45b051461057b57600080fd5b8063d257b34f146104c4578063dd62ed3e146104e4578063e2f4560514610504578063e493e0151461051a57600080fd5b8063a72905a2116100d1578063a72905a21461043a578063a9059cbb1461046a578063bbc0c7421461048a578063c0246668146104a457600080fd5b806395d89b41146103e55780639a7a23d6146103fa578063a457c2d71461041a57600080fd5b80634fbee1931161016f5780637437681e1161013e5780637437681e14610371578063790d3950146103875780638a8c523c146103a85780638da5cb5b146103bd57600080fd5b80634fbee193146102d4578063667185241461030457806370a0823114610326578063715018a61461035c57600080fd5b806323b872dd116101ab57806323b872dd14610257578063313ce5671461027757806339509351146102935780634a62bb65146102b357600080fd5b806306fdde03146101dd578063095ea7b31461020857806318160ddd1461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f2610591565b6040516101ff9190611533565b60405180910390f35b34801561021457600080fd5b50610228610223366004611596565b610623565b60405190151581526020016101ff565b34801561024457600080fd5b506002545b6040519081526020016101ff565b34801561026357600080fd5b506102286102723660046115c2565b61063d565b34801561028357600080fd5b50604051601281526020016101ff565b34801561029f57600080fd5b506102286102ae366004611596565b610661565b3480156102bf57600080fd5b5060055461022890600160a01b900460ff1681565b3480156102e057600080fd5b506102286102ef366004611603565b600e6020526000908152604090205460ff1681565b34801561031057600080fd5b5061032461031f366004611603565b610683565b005b34801561033257600080fd5b50610249610341366004611603565b6001600160a01b031660009081526020819052604090205490565b34801561036857600080fd5b506103246106ad565b34801561037d57600080fd5b5061024960065481565b34801561039357600080fd5b50600a5461022890600160a01b900460ff1681565b3480156103b457600080fd5b506103246106c1565b3480156103c957600080fd5b506005546040516001600160a01b0390911681526020016101ff565b3480156103f157600080fd5b506101f26106dc565b34801561040657600080fd5b50610324610415366004611620565b6106eb565b34801561042657600080fd5b50610228610435366004611596565b6107b5565b34801561044657600080fd5b50610228610455366004611603565b600f6020526000908152604090205460ff1681565b34801561047657600080fd5b50610228610485366004611596565b610830565b34801561049657600080fd5b506008546102289060ff1681565b3480156104b057600080fd5b506103246104bf366004611620565b61083e565b3480156104d057600080fd5b506103246104df36600461165e565b610871565b3480156104f057600080fd5b506102496104ff366004611677565b61099a565b34801561051057600080fd5b5061024960095481565b34801561052657600080fd5b506103246109c5565b34801561053b57600080fd5b50610249600d5481565b34801561055157600080fd5b50610249600c5481565b34801561056757600080fd5b50610324610576366004611603565b6109e6565b34801561058757600080fd5b5061024960075481565b6060600380546105a0906116a5565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc906116a5565b80156106195780601f106105ee57610100808354040283529160200191610619565b820191906000526020600020905b8154815290600101906020018083116105fc57829003601f168201915b5050505050905090565b600033610631818585610a5f565b60019150505b92915050565b60003361064b858285610b83565b610656858585610bfd565b506001949350505050565b600033610631818585610674838361099a565b61067e91906116f5565b610a5f565b61068b61112a565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6106b561112a565b6106bf6000611184565b565b6106c961112a565b6008805460ff1916600117905542600b55565b6060600480546105a0906116a5565b6106f361112a565b7f000000000000000000000000fda70e9a74837d647805e5576026db88744457d16001600160a01b0316826001600160a01b03160361078a5760405162461bcd60e51b815260206004820152602860248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d20604482015267616d6d506169727360c01b60648201526084015b60405180910390fd5b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b600033816107c3828661099a565b9050838110156108235760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610781565b6106568286868403610a5f565b600033610631818585610bfd565b61084661112a565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b61087961112a565b620186a061088660025490565b610891906001611708565b61089b919061171f565b8110156109085760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610781565b6103e861091460025490565b61091f906005611708565b610929919061171f565b8111156109955760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610781565b600955565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109cd61112a565b600a805460ff60a01b191690556000600c819055600d55565b6109ee61112a565b6001600160a01b038116610a535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610781565b610a5c81611184565b50565b6001600160a01b038316610ac15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610781565b6001600160a01b038216610b225760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610781565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b8f848461099a565b90506000198114610bf75781811015610bea5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610781565b610bf78484848403610a5f565b50505050565b6001600160a01b038316610c235760405162461bcd60e51b815260040161078190611741565b6001600160a01b038216610c495760405162461bcd60e51b815260040161078190611786565b80600003610c6257610c5d838360006111a6565b505050565b600554600160a01b900460ff168015610c7d575060085460ff165b8015610c965750600b54610c939061012c6116f5565b42115b15610cbd576005805460ff60a01b191690556a52b7d2dcc80cd2e400000060068190556007555b600554600160a01b900460ff168015610ce157506005546001600160a01b03163214155b15610f1e5760085460ff16610d315760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610781565b600854610100900460ff16610f1e576001600160a01b0383166000908152600f602052604090205460ff1615610e3157600654811115610dc25760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610781565b6007546001600160a01b038316600090815260208190526040902054610de890836116f5565b1115610e2c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610781565b610f1e565b6001600160a01b0382166000908152600f602052604090205460ff1615610eb457600654811115610e2c5760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610781565b6007546001600160a01b038316600090815260208190526040902054610eda90836116f5565b1115610f1e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610781565b600a54600160a01b900460ff161561111f57600c54600d54600b54610f4490603c6116f5565b421015610f525750601e9050805b3060009081526020819052604090205460095481108015908190610f7e5750600854610100900460ff16155b8015610fa357506001600160a01b0387166000908152600f602052604090205460ff16155b8015610fc857506001600160a01b0387166000908152600e602052604090205460ff16155b8015610fed57506001600160a01b0386166000908152600e602052604090205460ff16155b15611015576008805461ff0019166101001790556110096112d0565b6008805461ff00191690555b6008546001600160a01b0388166000908152600e602052604090205460ff61010090920482161591168061106157506001600160a01b0387166000908152600e602052604090205460ff165b1561106a575060005b60008115611118576001600160a01b0388166000908152600f602052604090205460ff16801561109a5750600085115b156110bb576110b460646110ae8988611374565b90611387565b90506110fa565b6001600160a01b0389166000908152600f602052604090205460ff1680156110e35750600086115b156110fa576110f760646110ae8989611374565b90505b801561110b5761110b8930836111a6565b61111581886117c9565b96505b5050505050505b610c5d8383836111a6565b6005546001600160a01b031633146106bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610781565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166111cc5760405162461bcd60e51b815260040161078190611741565b6001600160a01b0382166111f25760405162461bcd60e51b815260040161078190611786565b6001600160a01b0383166000908152602081905260409020548181101561126a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610781565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bf7565b30600090815260208190526040812054908181036112ec575050565b6009546112fa906014611708565b8211156113125760095461130f906014611708565b91505b61131b82611393565b600a546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611368576040519150601f19603f3d011682016040523d82523d6000602084013e61136d565b606091505b5050505050565b60006113808284611708565b9392505050565b6000611380828461171f565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106113c8576113c86117dc565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561143a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145e91906117f2565b81600181518110611471576114716117dc565b60200260200101906001600160a01b031690816001600160a01b0316815250506114b030737a250d5630b4cf539739df2c5dacb4c659f2488d84610a5f565b600a5460405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9163791ac947916114fd91869160009187916001600160a01b0390911690429060040161180f565b600060405180830381600087803b15801561151757600080fd5b505af115801561152b573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561156057858101830151858201604001528201611544565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a5c57600080fd5b600080604083850312156115a957600080fd5b82356115b481611581565b946020939093013593505050565b6000806000606084860312156115d757600080fd5b83356115e281611581565b925060208401356115f281611581565b929592945050506040919091013590565b60006020828403121561161557600080fd5b813561138081611581565b6000806040838503121561163357600080fd5b823561163e81611581565b91506020830135801515811461165357600080fd5b809150509250929050565b60006020828403121561167057600080fd5b5035919050565b6000806040838503121561168a57600080fd5b823561169581611581565b9150602083013561165381611581565b600181811c908216806116b957607f821691505b6020821081036116d957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610637576106376116df565b8082028115828204841417610637576106376116df565b60008261173c57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610637576106376116df565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561180457600080fd5b815161138081611581565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561185f5784516001600160a01b03168352938301939183019160010161183a565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c18f1063db9f34754c6e0c598234522739c8a489f4abd06b407a65abd49e9c7764736f6c63430008140033
Loading...
Loading
Loading...
Loading
OVERVIEW
Looter is a multi-chain suite of trading tools. You name it, MEV-protected transactions, lighting fast sniping - we've got it all.Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.01931 | 42,202.0742 | $814.93 |
Loading...
Loading
[ Download: CSV Export ]
[ 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.