Feature Tip: Add private address tag to any address under My Name Tag !
Latest 25 from a total of 2,030 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23722773 | 2 days ago | IN | 0 ETH | 0.0000561 | ||||
| Approve | 23676520 | 8 days ago | IN | 0 ETH | 0.00007355 | ||||
| Approve | 23656034 | 11 days ago | IN | 0 ETH | 0.00005013 | ||||
| Transfer | 23650354 | 12 days ago | IN | 0 ETH | 0.00000537 | ||||
| Approve | 23643325 | 13 days ago | IN | 0 ETH | 0.00000862 | ||||
| Approve | 23593030 | 20 days ago | IN | 0 ETH | 0.00008217 | ||||
| Approve | 23574227 | 22 days ago | IN | 0 ETH | 0.00003567 | ||||
| Approve | 23574225 | 22 days ago | IN | 0 ETH | 0.0000676 | ||||
| Approve | 23567107 | 23 days ago | IN | 0 ETH | 0.00001636 | ||||
| Approve | 23561222 | 24 days ago | IN | 0 ETH | 0.00001006 | ||||
| Approve | 23517451 | 30 days ago | IN | 0 ETH | 0.00001647 | ||||
| Approve | 23410285 | 45 days ago | IN | 0 ETH | 0.00003321 | ||||
| Approve | 23356657 | 53 days ago | IN | 0 ETH | 0.00004576 | ||||
| Approve | 23309482 | 59 days ago | IN | 0 ETH | 0.0000063 | ||||
| Approve | 23309479 | 59 days ago | IN | 0 ETH | 0.00001127 | ||||
| Approve | 23270708 | 65 days ago | IN | 0 ETH | 0.00005687 | ||||
| Approve | 23180838 | 77 days ago | IN | 0 ETH | 0.00005845 | ||||
| Approve | 23146315 | 82 days ago | IN | 0 ETH | 0.00002444 | ||||
| Approve | 23102772 | 88 days ago | IN | 0 ETH | 0.00002121 | ||||
| Approve | 23102772 | 88 days ago | IN | 0 ETH | 0.00003701 | ||||
| Approve | 23072001 | 93 days ago | IN | 0 ETH | 0.0000136 | ||||
| Approve | 23070265 | 93 days ago | IN | 0 ETH | 0.00000967 | ||||
| Approve | 23070172 | 93 days ago | IN | 0 ETH | 0.00010426 | ||||
| Approve | 23012132 | 101 days ago | IN | 0 ETH | 0.00001759 | ||||
| Approve | 23004841 | 102 days ago | IN | 0 ETH | 0.00001835 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Add Liquidity ET... | 21588219 | 300 days ago | 1 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AddOnAi
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* Monetize your Ai Agents / Socials and Earn Passive Income. Deploy Ai Advertisement Agents. Access Multiple Ai Tools. Brought to you by $AddOn | #DeFAi Web: https://addonai.net/ TG: https://t.me/addon_ai Twitter: https://twitter.com/addon_ai Docs: https://addon-ai.gitbook.io */ pragma solidity ^0.8.22; import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; import "@openzeppelin/[email protected]/access/Ownable.sol"; interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens(uint256 amountIn,uint256 amountOutMin,address[] calldata path,address to,uint256 deadline) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } contract AddOnAi is ERC20, Ownable { uint256 private _initialBuyTax = 30; uint256 private _initialSellTax = 35; uint256 private _finalBuyTax = 0; uint256 private _finalSellTax = 0; uint256 private _reduceBuyTaxAt = 60; uint256 private _reduceSellTaxAt = 60; IUniswapV2Router02 private uniswapV2Router; address public uniswapV2Pair; mapping(address => bool) public isExempt; address private immutable taxAddress; uint256 public maxTransaction; uint256 public maxWallet; bool private launch = false; uint256 private blockLaunch; uint256 private lastSellBlock; uint256 private sellCount; uint256 private totalSells; uint256 private totalBuys; uint256 private minSwap; uint256 public maxSwap; uint256 private triggerMulti; uint256 private _buyCount= 0; bool private inSwap; modifier lockSwap { inSwap = true; _; inSwap = false; } constructor() ERC20("AddOn Ai", "AddOn") Ownable() payable { uint256 totalSupply = 10_000_000 * 10**18; taxAddress = 0xeC34a8Db25811722B2F7164f521E6d9a4F559d5a; isExempt[msg.sender] = true; isExempt[address(this)] = true; isExempt[taxAddress] = true; _mint(address(this), totalSupply); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = address( IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()) ); maxTransaction = totalSupply * 1 / 100; //1% maxWallet = totalSupply * 1 / 100; //1% maxSwap = totalSupply * 5 / 100; //5% minSwap = totalSupply / 333; //0.33%% triggerMulti = totalSupply * 3 / 100; //3% } function addLiquidityETH() external onlyOwner { uint256 tokensAmount = balanceOf(address(this)) - (totalSupply() * 15 / 100); _approve(address(this), address(uniswapV2Router), tokensAmount); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), tokensAmount, 0, 0, address(owner()), block.timestamp ); } function setMaxCaSwap(uint256 _maxSwap) external onlyOwner{ maxSwap = _maxSwap * 10**decimals(); } function swapTokensEth(uint256 tokenAmount) internal lockSwap { _approve(address(this), address(uniswapV2Router), tokenAmount); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, taxAddress, block.timestamp ); } function _transfer(address from, address to, uint256 value) internal virtual override { if (!isExempt[from] && !isExempt[to]) { require(launch, "Wait till launch"); uint256 tax = 0; require(value <= maxTransaction, "Exceeds MaxTx Limit"); //sell if (to == uniswapV2Pair) { totalSells++; tax = totalSells>_reduceSellTaxAt?(_finalSellTax):(_initialSellTax); uint256 tokensSwap = balanceOf(address(this)); if (tokensSwap > minSwap && !inSwap) { if (block.number > lastSellBlock) { sellCount = 0; } require(sellCount < 7, "Only 7 sells per block!"); sellCount++; lastSellBlock = block.number; swapTokensEth(min(maxSwap, min( (tokensSwap > triggerMulti ? (value*15/10) : value), tokensSwap))); } //buy } else if (from == uniswapV2Pair){ require(balanceOf(to) + value <= maxWallet, "Exceeds the maxWallet"); if(block.number == blockLaunch){ _buyCount++; require(_buyCount <= 75, "Exceeds buys on the first block.");tax = 0; }else{ totalBuys++; tax = totalBuys>_reduceBuyTaxAt?(_finalBuyTax):(_initialBuyTax); } } uint256 taxAmount = value * tax / 100; uint256 amountAfterTax = value - taxAmount; if (taxAmount > 0){ super._transfer(from, address(this), taxAmount); } super._transfer(from, to, amountAfterTax); return; } super._transfer(from, to, value); } function min(uint256 a, uint256 b) private pure returns (uint256){ return (a>b)?b:a; } function setMaxTx(uint256 newMaxTx) external onlyOwner { require(newMaxTx* 10**decimals() >= totalSupply()/100); //Protect: MaxTx more then 1% maxTransaction= newMaxTx * 10**decimals(); if(maxWallet < maxTransaction){ maxWallet = maxTransaction; } } function setMaxWallet(uint256 newMaxWallet) external onlyOwner { require(newMaxWallet * 10**decimals() >= totalSupply()/100); //Protect: newMaxWallet more then 1% maxWallet = newMaxWallet * 10**decimals(); } function setExcludedWallet(address wAddress, bool isExcle) external onlyOwner { isExempt[wAddress] = isExcle; } function openTrading() external onlyOwner { launch = true; blockLaunch = block.number; } function setNewTax(uint256 newBuyTax , uint256 newSellTax) external onlyOwner { require(newBuyTax <= 20 && newSellTax <= 20); _finalBuyTax = newBuyTax; _finalSellTax = newSellTax; _reduceBuyTaxAt = 0; _reduceSellTaxAt = 0; } function removeAllLimits() external onlyOwner { maxTransaction = totalSupply(); maxWallet = totalSupply(); } function exportETH() external { require(_msgSender() == taxAddress); payable(taxAddress).transfer(address(this).balance); } function trigger(uint256 amount) external { require(_msgSender() == taxAddress); amount = min(balanceOf(address(this)), amount * 10**decimals()); swapTokensEth(amount); } function burnTokensPercent(uint256 percent) external { require(_msgSender() == taxAddress); uint256 amount = min(balanceOf(address(this)), (totalSupply() * percent / 100 )); IERC20(address(this)).transfer(0x000000000000000000000000000000000000dEaD, amount); } function clearStuckToken(address tokenAddress, uint256 tokens) external returns (bool success) { require(_msgSender() == taxAddress); if(tokens == 0){ tokens = IERC20(tokenAddress).balanceOf(address(this)); } return IERC20(tokenAddress).transfer(taxAddress, tokens); } receive() external payable {} }
// 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 (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;
}
}// 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);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"remappings": []
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"payable","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":[],"name":"addLiquidityETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"burnTokensPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"clearStuckToken","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","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":"exportETH","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":"isExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wAddress","type":"address"},{"internalType":"bool","name":"isExcle","type":"bool"}],"name":"setExcludedWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSwap","type":"uint256"}],"name":"setMaxCaSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"setNewTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"trigger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
601e60065560236007555f60088181556009829055603c600a819055600b556011805460ff19169055601a9190915560a0908152674164644f6e20416960c01b60c052610120604052600560e09081526420b23227b760d91b6101005260036200006a838262000511565b50600462000079828262000511565b50505062000096620000906200035660201b60201c565b6200035a565b73ec34a8db25811722b2f7164f521e6d9a4f559d5a6080819052335f908152600e60205260408082208054600160ff199182168117909255308085529284208054821683179055939092527f988b7400ebce327323805450cb78b702e6cd92186b9d6015450914df389bb3f780549093169091179091556a084595161401484a00000090620001269082620003ab565b600c80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000189573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001af9190620005dd565b6001600160a01b031663c9c6539630600c5f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002359190620005dd565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000280573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a69190620005dd565b600d80546001600160a01b0319166001600160a01b03929092169190911790556064620002d582600162000620565b620002e1919062000640565b600f556064620002f382600162000620565b620002ff919062000640565b60105560646200031182600562000620565b6200031d919062000640565b6018556200032e61014d8262000640565b60175560646200034082600362000620565b6200034c919062000640565b6019555062000676565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620004065760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f82825462000419919062000660565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200049d57607f821691505b602082108103620004bc57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200046f57805f5260205f20601f840160051c81016020851015620004e95750805b601f840160051c820191505b818110156200050a575f8155600101620004f5565b5050505050565b81516001600160401b038111156200052d576200052d62000474565b62000545816200053e845462000488565b84620004c2565b602080601f8311600181146200057b575f8415620005635750858301515b5f19600386901b1c1916600185901b178555620005d5565b5f85815260208120601f198616915b82811015620005ab578886015182559484019460019091019084016200058a565b5085821015620005c957878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215620005ee575f80fd5b81516001600160a01b038116811462000605575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200063a576200063a6200060c565b92915050565b5f826200065b57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200063a576200063a6200060c565b608051611aca620006b95f395f8181610748015281816108000152818161089201528181610ab101528181610aef01528181610b77015261145e0152611aca5ff3fe6080604052600436106101d3575f3560e01c80639804adc4116100fd578063c9567bf911610092578063ed684cc611610062578063ed684cc61461052a578063ed99530714610549578063f2fde38b1461055d578063f8b45b051461057c575f80fd5b8063c9567bf9146104cf578063d579d4ed146104e3578063db05e5cb146104f7578063dd62ed3e1461050b575f80fd5b8063ad5dff73116100cd578063ad5dff7314610458578063bc33718214610486578063c3f70b52146104a5578063c4918b4e146104ba575f80fd5b80639804adc4146103dc578063a457c2d7146103fb578063a9059cbb1461041a578063aca2cd6e14610439575f80fd5b80633950935111610173578063715018a611610143578063715018a61461037857806377b54bad1461038c5780638da5cb5b146103ab57806395d89b41146103c8575f80fd5b806339509351146102cf57806349bd5a5e146102ee5780635d0044ca1461032557806370a0823114610344575f80fd5b806318160ddd116101ae57806318160ddd146102585780631cd602d51461027657806323b872dd14610295578063313ce567146102b4575f80fd5b8063027cc97a146101de57806306fdde03146101ff578063095ea7b314610229575f80fd5b366101da57005b5f80fd5b3480156101e9575f80fd5b506101fd6101f8366004611665565b610591565b005b34801561020a575f80fd5b506102136105b5565b604051610220919061167c565b60405180910390f35b348015610234575f80fd5b506102486102433660046116dc565b610645565b6040519015158152602001610220565b348015610263575f80fd5b506002545b604051908152602001610220565b348015610281575f80fd5b506101fd610290366004611706565b61065e565b3480156102a0575f80fd5b506102486102af366004611726565b610694565b3480156102bf575f80fd5b5060405160128152602001610220565b3480156102da575f80fd5b506102486102e93660046116dc565b6106b7565b3480156102f9575f80fd5b50600d5461030d906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b348015610330575f80fd5b506101fd61033f366004611665565b6106d8565b34801561034f575f80fd5b5061026861035e366004611764565b6001600160a01b03165f9081526020819052604090205490565b348015610383575f80fd5b506101fd610731565b348015610397575f80fd5b506102486103a63660046116dc565b610744565b3480156103b6575f80fd5b506005546001600160a01b031661030d565b3480156103d3575f80fd5b50610213610880565b3480156103e7575f80fd5b506101fd6103f6366004611665565b61088f565b348015610406575f80fd5b506102486104153660046116dc565b61096a565b348015610425575f80fd5b506102486104343660046116dc565b6109e9565b348015610444575f80fd5b506101fd61045336600461178c565b6109f6565b348015610463575f80fd5b50610248610472366004611764565b600e6020525f908152604090205460ff1681565b348015610491575f80fd5b506101fd6104a0366004611665565b610a28565b3480156104b0575f80fd5b50610268600f5481565b3480156104c5575f80fd5b5061026860185481565b3480156104da575f80fd5b506101fd610a93565b3480156104ee575f80fd5b506101fd610aae565b348015610502575f80fd5b506101fd610b34565b348015610516575f80fd5b506102686105253660046117c3565b610b4a565b348015610535575f80fd5b506101fd610544366004611665565b610b74565b348015610554575f80fd5b506101fd610bdc565b348015610568575f80fd5b506101fd610577366004611764565b610cf2565b348015610587575f80fd5b5061026860105481565b610599610d68565b6105a56012600a6118e3565b6105af90826118f1565b60185550565b6060600380546105c490611908565b80601f01602080910402602001604051908101604052809291908181526020018280546105f090611908565b801561063b5780601f106106125761010080835404028352916020019161063b565b820191905f5260205f20905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b5f33610652818585610dc2565b60019150505b92915050565b610666610d68565b60148211158015610678575060148111155b610680575f80fd5b6008919091556009555f600a819055600b55565b5f336106a1858285610ee5565b6106ac858585610f57565b506001949350505050565b5f336106528185856106c98383610b4a565b6106d3919061193a565b610dc2565b6106e0610d68565b60646106eb60025490565b6106f5919061194d565b6107016012600a6118e3565b61070b90836118f1565b1015610715575f80fd5b6107216012600a6118e3565b61072b90826118f1565b60105550565b610739610d68565b6107425f6112d8565b565b5f337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610779575f80fd5b815f036107e9576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa1580156107c2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e6919061196c565b91505b60405163a9059cbb60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af1158015610855573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108799190611983565b9392505050565b6060600480546105c490611908565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146108c3575f80fd5b305f908152602081905260408120546108fb906064846108e260025490565b6108ec91906118f1565b6108f6919061194d565b611329565b60405163a9059cbb60e01b815261dead600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610941573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109659190611983565b505050565b5f33816109778286610b4a565b9050838110156109dc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6106ac8286868403610dc2565b5f33610652818585610f57565b6109fe610d68565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b610a30610d68565b6064610a3b60025490565b610a45919061194d565b610a516012600a6118e3565b610a5b90836118f1565b1015610a65575f80fd5b610a716012600a6118e3565b610a7b90826118f1565b600f8190556010541015610a9057600f546010555b50565b610a9b610d68565b6011805460ff1916600117905543601255565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610ae2575f80fd5b6040516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016904780156108fc02915f818181858888f19350505050158015610a90573d5f803e3d5ffd5b610b3c610d68565b600254600f55600254601055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610ba8575f80fd5b305f90815260208190526040902054610bd190610bc76012600a6118e3565b6108f690846118f1565b9050610a908161133d565b610be4610d68565b5f6064610bf060025490565b610bfb90600f6118f1565b610c05919061194d565b305f90815260208190526040902054610c1e919061199e565b600c54909150610c399030906001600160a01b031683610dc2565b600c546001600160a01b031663f305d7194730845f80610c616005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610cc7573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610cec91906119b1565b50505050565b610cfa610d68565b6001600160a01b038116610d5f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d3565b610a90816112d8565b6005546001600160a01b031633146107425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109d3565b6001600160a01b038316610e245760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109d3565b6001600160a01b038216610e855760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109d3565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610ef08484610b4a565b90505f198114610cec5781811015610f4a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109d3565b610cec8484848403610dc2565b6001600160a01b0383165f908152600e602052604090205460ff16158015610f9757506001600160a01b0382165f908152600e602052604090205460ff16155b156112cd5760115460ff16610fe15760405162461bcd60e51b815260206004820152601060248201526f0aec2d2e840e8d2d8d840d8c2eadcc6d60831b60448201526064016109d3565b5f600f5482111561102a5760405162461bcd60e51b8152602060048201526013602482015272115e18d959591cc813585e151e08131a5b5a5d606a1b60448201526064016109d3565b600d546001600160a01b03908116908416036111565760158054905f61104f836119dc565b9190505550600b54601554116110675760075461106b565b6009545b305f9081526020819052604081205491925050601754811180156110925750601b5460ff16155b15611150576013544311156110a6575f6014555b6007601454106110f85760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920372073656c6c732070657220626c6f636b2100000000000000000060448201526064016109d3565b60148054905f611107836119dc565b91905055504360138190555061115061114b6018546108f6601954851161112e5786611145565b600a61113b88600f6118f1565b611145919061194d565b85611329565b61133d565b50611283565b600d546001600160a01b0390811690851603611283576010548261118e856001600160a01b03165f9081526020819052604090205490565b611198919061193a565b11156111de5760405162461bcd60e51b8152602060048201526015602482015274115e18d959591cc81d1a19481b585e15d85b1b195d605a1b60448201526064016109d3565b601254430361125557601a8054905f6111f6836119dc565b9190505550604b601a54111561124e5760405162461bcd60e51b815260206004820181905260248201527f457863656564732062757973206f6e2074686520666972737420626c6f636b2e60448201526064016109d3565b505f611283565b60168054905f611264836119dc565b9190505550600a546016541161127c57600654611280565b6008545b90505b5f606461129083856118f1565b61129a919061194d565b90505f6112a7828561199e565b905081156112ba576112ba8630846114c3565b6112c58686836114c3565b505050505050565b6109658383836114c3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f8183116113375782610879565b50919050565b601b805460ff19166001179055600c546113629030906001600160a01b031683610dc2565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611395576113956119f4565b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156113ec573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114109190611a08565b81600181518110611423576114236119f4565b6001600160a01b039283166020918202929092010152600c5460405163791ac94760e01b815291169063791ac947906114889085905f9086907f0000000000000000000000000000000000000000000000000000000000000000904290600401611a23565b5f604051808303815f87803b15801561149f575f80fd5b505af11580156114b1573d5f803e3d5ffd5b5050601b805460ff1916905550505050565b6001600160a01b0383166115275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109d3565b6001600160a01b0382166115895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109d3565b6001600160a01b0383165f90815260208190526040902054818110156116005760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109d3565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610cec565b5f60208284031215611675575f80fd5b5035919050565b5f602080835283518060208501525f5b818110156116a85785810183015185820160400152820161168c565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a90575f80fd5b5f80604083850312156116ed575f80fd5b82356116f8816116c8565b946020939093013593505050565b5f8060408385031215611717575f80fd5b50508035926020909101359150565b5f805f60608486031215611738575f80fd5b8335611743816116c8565b92506020840135611753816116c8565b929592945050506040919091013590565b5f60208284031215611774575f80fd5b8135610879816116c8565b8015158114610a90575f80fd5b5f806040838503121561179d575f80fd5b82356117a8816116c8565b915060208301356117b88161177f565b809150509250929050565b5f80604083850312156117d4575f80fd5b82356117df816116c8565b915060208301356117b8816116c8565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561183d57815f1904821115611823576118236117ef565b8085161561183057918102915b93841c9390800290611808565b509250929050565b5f8261185357506001610658565b8161185f57505f610658565b8160018114611875576002811461187f5761189b565b6001915050610658565b60ff841115611890576118906117ef565b50506001821b610658565b5060208310610133831016604e8410600b84101617156118be575081810a610658565b6118c88383611803565b805f19048211156118db576118db6117ef565b029392505050565b5f61087960ff841683611845565b8082028115828204841417610658576106586117ef565b600181811c9082168061191c57607f821691505b60208210810361133757634e487b7160e01b5f52602260045260245ffd5b80820180821115610658576106586117ef565b5f8261196757634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561197c575f80fd5b5051919050565b5f60208284031215611993575f80fd5b81516108798161177f565b81810381811115610658576106586117ef565b5f805f606084860312156119c3575f80fd5b8351925060208401519150604084015190509250925092565b5f600182016119ed576119ed6117ef565b5060010190565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611a18575f80fd5b8151610879816116c8565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611a735784516001600160a01b031683529383019391830191600101611a4e565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a4225030ae4f9b7495902b19c59fece9654f0940cf358248391bd209222f35cb64736f6c63430008160033
Deployed Bytecode
0x6080604052600436106101d3575f3560e01c80639804adc4116100fd578063c9567bf911610092578063ed684cc611610062578063ed684cc61461052a578063ed99530714610549578063f2fde38b1461055d578063f8b45b051461057c575f80fd5b8063c9567bf9146104cf578063d579d4ed146104e3578063db05e5cb146104f7578063dd62ed3e1461050b575f80fd5b8063ad5dff73116100cd578063ad5dff7314610458578063bc33718214610486578063c3f70b52146104a5578063c4918b4e146104ba575f80fd5b80639804adc4146103dc578063a457c2d7146103fb578063a9059cbb1461041a578063aca2cd6e14610439575f80fd5b80633950935111610173578063715018a611610143578063715018a61461037857806377b54bad1461038c5780638da5cb5b146103ab57806395d89b41146103c8575f80fd5b806339509351146102cf57806349bd5a5e146102ee5780635d0044ca1461032557806370a0823114610344575f80fd5b806318160ddd116101ae57806318160ddd146102585780631cd602d51461027657806323b872dd14610295578063313ce567146102b4575f80fd5b8063027cc97a146101de57806306fdde03146101ff578063095ea7b314610229575f80fd5b366101da57005b5f80fd5b3480156101e9575f80fd5b506101fd6101f8366004611665565b610591565b005b34801561020a575f80fd5b506102136105b5565b604051610220919061167c565b60405180910390f35b348015610234575f80fd5b506102486102433660046116dc565b610645565b6040519015158152602001610220565b348015610263575f80fd5b506002545b604051908152602001610220565b348015610281575f80fd5b506101fd610290366004611706565b61065e565b3480156102a0575f80fd5b506102486102af366004611726565b610694565b3480156102bf575f80fd5b5060405160128152602001610220565b3480156102da575f80fd5b506102486102e93660046116dc565b6106b7565b3480156102f9575f80fd5b50600d5461030d906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b348015610330575f80fd5b506101fd61033f366004611665565b6106d8565b34801561034f575f80fd5b5061026861035e366004611764565b6001600160a01b03165f9081526020819052604090205490565b348015610383575f80fd5b506101fd610731565b348015610397575f80fd5b506102486103a63660046116dc565b610744565b3480156103b6575f80fd5b506005546001600160a01b031661030d565b3480156103d3575f80fd5b50610213610880565b3480156103e7575f80fd5b506101fd6103f6366004611665565b61088f565b348015610406575f80fd5b506102486104153660046116dc565b61096a565b348015610425575f80fd5b506102486104343660046116dc565b6109e9565b348015610444575f80fd5b506101fd61045336600461178c565b6109f6565b348015610463575f80fd5b50610248610472366004611764565b600e6020525f908152604090205460ff1681565b348015610491575f80fd5b506101fd6104a0366004611665565b610a28565b3480156104b0575f80fd5b50610268600f5481565b3480156104c5575f80fd5b5061026860185481565b3480156104da575f80fd5b506101fd610a93565b3480156104ee575f80fd5b506101fd610aae565b348015610502575f80fd5b506101fd610b34565b348015610516575f80fd5b506102686105253660046117c3565b610b4a565b348015610535575f80fd5b506101fd610544366004611665565b610b74565b348015610554575f80fd5b506101fd610bdc565b348015610568575f80fd5b506101fd610577366004611764565b610cf2565b348015610587575f80fd5b5061026860105481565b610599610d68565b6105a56012600a6118e3565b6105af90826118f1565b60185550565b6060600380546105c490611908565b80601f01602080910402602001604051908101604052809291908181526020018280546105f090611908565b801561063b5780601f106106125761010080835404028352916020019161063b565b820191905f5260205f20905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b5f33610652818585610dc2565b60019150505b92915050565b610666610d68565b60148211158015610678575060148111155b610680575f80fd5b6008919091556009555f600a819055600b55565b5f336106a1858285610ee5565b6106ac858585610f57565b506001949350505050565b5f336106528185856106c98383610b4a565b6106d3919061193a565b610dc2565b6106e0610d68565b60646106eb60025490565b6106f5919061194d565b6107016012600a6118e3565b61070b90836118f1565b1015610715575f80fd5b6107216012600a6118e3565b61072b90826118f1565b60105550565b610739610d68565b6107425f6112d8565b565b5f337f000000000000000000000000ec34a8db25811722b2f7164f521e6d9a4f559d5a6001600160a01b031614610779575f80fd5b815f036107e9576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa1580156107c2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e6919061196c565b91505b60405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000ec34a8db25811722b2f7164f521e6d9a4f559d5a811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af1158015610855573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108799190611983565b9392505050565b6060600480546105c490611908565b337f000000000000000000000000ec34a8db25811722b2f7164f521e6d9a4f559d5a6001600160a01b0316146108c3575f80fd5b305f908152602081905260408120546108fb906064846108e260025490565b6108ec91906118f1565b6108f6919061194d565b611329565b60405163a9059cbb60e01b815261dead600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610941573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109659190611983565b505050565b5f33816109778286610b4a565b9050838110156109dc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6106ac8286868403610dc2565b5f33610652818585610f57565b6109fe610d68565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b610a30610d68565b6064610a3b60025490565b610a45919061194d565b610a516012600a6118e3565b610a5b90836118f1565b1015610a65575f80fd5b610a716012600a6118e3565b610a7b90826118f1565b600f8190556010541015610a9057600f546010555b50565b610a9b610d68565b6011805460ff1916600117905543601255565b337f000000000000000000000000ec34a8db25811722b2f7164f521e6d9a4f559d5a6001600160a01b031614610ae2575f80fd5b6040516001600160a01b037f000000000000000000000000ec34a8db25811722b2f7164f521e6d9a4f559d5a16904780156108fc02915f818181858888f19350505050158015610a90573d5f803e3d5ffd5b610b3c610d68565b600254600f55600254601055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b337f000000000000000000000000ec34a8db25811722b2f7164f521e6d9a4f559d5a6001600160a01b031614610ba8575f80fd5b305f90815260208190526040902054610bd190610bc76012600a6118e3565b6108f690846118f1565b9050610a908161133d565b610be4610d68565b5f6064610bf060025490565b610bfb90600f6118f1565b610c05919061194d565b305f90815260208190526040902054610c1e919061199e565b600c54909150610c399030906001600160a01b031683610dc2565b600c546001600160a01b031663f305d7194730845f80610c616005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610cc7573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610cec91906119b1565b50505050565b610cfa610d68565b6001600160a01b038116610d5f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d3565b610a90816112d8565b6005546001600160a01b031633146107425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109d3565b6001600160a01b038316610e245760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109d3565b6001600160a01b038216610e855760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109d3565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610ef08484610b4a565b90505f198114610cec5781811015610f4a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109d3565b610cec8484848403610dc2565b6001600160a01b0383165f908152600e602052604090205460ff16158015610f9757506001600160a01b0382165f908152600e602052604090205460ff16155b156112cd5760115460ff16610fe15760405162461bcd60e51b815260206004820152601060248201526f0aec2d2e840e8d2d8d840d8c2eadcc6d60831b60448201526064016109d3565b5f600f5482111561102a5760405162461bcd60e51b8152602060048201526013602482015272115e18d959591cc813585e151e08131a5b5a5d606a1b60448201526064016109d3565b600d546001600160a01b03908116908416036111565760158054905f61104f836119dc565b9190505550600b54601554116110675760075461106b565b6009545b305f9081526020819052604081205491925050601754811180156110925750601b5460ff16155b15611150576013544311156110a6575f6014555b6007601454106110f85760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920372073656c6c732070657220626c6f636b2100000000000000000060448201526064016109d3565b60148054905f611107836119dc565b91905055504360138190555061115061114b6018546108f6601954851161112e5786611145565b600a61113b88600f6118f1565b611145919061194d565b85611329565b61133d565b50611283565b600d546001600160a01b0390811690851603611283576010548261118e856001600160a01b03165f9081526020819052604090205490565b611198919061193a565b11156111de5760405162461bcd60e51b8152602060048201526015602482015274115e18d959591cc81d1a19481b585e15d85b1b195d605a1b60448201526064016109d3565b601254430361125557601a8054905f6111f6836119dc565b9190505550604b601a54111561124e5760405162461bcd60e51b815260206004820181905260248201527f457863656564732062757973206f6e2074686520666972737420626c6f636b2e60448201526064016109d3565b505f611283565b60168054905f611264836119dc565b9190505550600a546016541161127c57600654611280565b6008545b90505b5f606461129083856118f1565b61129a919061194d565b90505f6112a7828561199e565b905081156112ba576112ba8630846114c3565b6112c58686836114c3565b505050505050565b6109658383836114c3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f8183116113375782610879565b50919050565b601b805460ff19166001179055600c546113629030906001600160a01b031683610dc2565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611395576113956119f4565b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156113ec573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114109190611a08565b81600181518110611423576114236119f4565b6001600160a01b039283166020918202929092010152600c5460405163791ac94760e01b815291169063791ac947906114889085905f9086907f000000000000000000000000ec34a8db25811722b2f7164f521e6d9a4f559d5a904290600401611a23565b5f604051808303815f87803b15801561149f575f80fd5b505af11580156114b1573d5f803e3d5ffd5b5050601b805460ff1916905550505050565b6001600160a01b0383166115275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109d3565b6001600160a01b0382166115895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109d3565b6001600160a01b0383165f90815260208190526040902054818110156116005760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109d3565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610cec565b5f60208284031215611675575f80fd5b5035919050565b5f602080835283518060208501525f5b818110156116a85785810183015185820160400152820161168c565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a90575f80fd5b5f80604083850312156116ed575f80fd5b82356116f8816116c8565b946020939093013593505050565b5f8060408385031215611717575f80fd5b50508035926020909101359150565b5f805f60608486031215611738575f80fd5b8335611743816116c8565b92506020840135611753816116c8565b929592945050506040919091013590565b5f60208284031215611774575f80fd5b8135610879816116c8565b8015158114610a90575f80fd5b5f806040838503121561179d575f80fd5b82356117a8816116c8565b915060208301356117b88161177f565b809150509250929050565b5f80604083850312156117d4575f80fd5b82356117df816116c8565b915060208301356117b8816116c8565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561183d57815f1904821115611823576118236117ef565b8085161561183057918102915b93841c9390800290611808565b509250929050565b5f8261185357506001610658565b8161185f57505f610658565b8160018114611875576002811461187f5761189b565b6001915050610658565b60ff841115611890576118906117ef565b50506001821b610658565b5060208310610133831016604e8410600b84101617156118be575081810a610658565b6118c88383611803565b805f19048211156118db576118db6117ef565b029392505050565b5f61087960ff841683611845565b8082028115828204841417610658576106586117ef565b600181811c9082168061191c57607f821691505b60208210810361133757634e487b7160e01b5f52602260045260245ffd5b80820180821115610658576106586117ef565b5f8261196757634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561197c575f80fd5b5051919050565b5f60208284031215611993575f80fd5b81516108798161177f565b81810381811115610658576106586117ef565b5f805f606084860312156119c3575f80fd5b8351925060208401519150604084015190509250925092565b5f600182016119ed576119ed6117ef565b5060010190565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611a18575f80fd5b8151610879816116c8565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611a735784516001600160a01b031683529383019391830191600101611a4e565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a4225030ae4f9b7495902b19c59fece9654f0940cf358248391bd209222f35cb64736f6c63430008160033
Loading...
Loading
Loading...
Loading
OVERVIEW
AddOn AI aims to change the game by bridging this gap and introducing innovative monetization solutions tailored specifically for the AI ecosystem.Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.000615 | 24,138.1103 | $14.84 |
Loading...
Loading
Loading...
Loading
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.