ERC-20
Source Code
Overview
Max Total Supply
1,500,000,000 FLN
Holders
158
Transfers
-
0
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Falcon
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity =0.8.18;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/IRouterV2.sol";
import "./interfaces/IFactoryV2.sol";
/**
* @title Falcon
* @notice ERC20 token for Space Dex exchange, has a sell tax that is used for marketing and holders distribution.
* @dev Uses the OpenZeppelin ERC20 library as a base, extending it to add the sell tax.
*/
contract Falcon is ERC20, ERC20Burnable, Ownable {
//---------- Contracts ----------//
IRouterV2 public dexRouter; /// @notice DEX router contract.
//---------- Variables ----------//
uint256 public constant startTrading = 1670180406; /// @notice Timestamp of start trading for sell tax calc.
address public lpPair; /// @notice Pair that contains the liquidity for the taxSwap.
address payable public treasury; /// @notice Address that manages the funds.
bool public hasLiquidity; /// @notice Boolean to check if token already have liquidity.
bool private onSwap; /// @dev Boolean to check if on swap tax tokens.
//---------- Storage -----------//
mapping(address => bool) private _lpPairs; /// @dev Contains the liquidity pairs of the token.
mapping(address => bool) private _isExcluded; /// @dev Contains the addresses excluded from the sell tax.
//---------- Events -----------//
event ModifiedExclusion(address account, bool enabled);
event ModifiedPair(address pair, bool enabled);
event NewTreasury(address newTreasury);
event NewRouter(address newRouter, address lpPair);
//---------- Constructor ----------//
constructor(address _dexRouter) ERC20("Falcon", "FLN") {
_mint(msg.sender, 1_500_000_000 * 10 ** decimals());
dexRouter = IRouterV2(_dexRouter);
lpPair = IFactoryV2(dexRouter.factory()).createPair(
dexRouter.WETH(),
address(this)
);
_lpPairs[lpPair] = true;
_isExcluded[msg.sender] = true;
_isExcluded[address(this)] = true;
treasury = payable(msg.sender);
hasLiquidity = false;
}
//---------- Modifiers ----------//
/**
* @dev Modify the status of the boolean onSwap for checks in the transfer.
*/
modifier swapLocker() {
onSwap = true;
_;
onSwap = false;
}
//----------- Internal Functions -----------//
/**
* @dev Swap the sell tax and send it to the treasury.
* @param amount of tokens to swap.
*/
function _taxSwap(uint256 amount) internal swapLocker {
if (allowance(address(this), address(dexRouter)) != type(uint256).max) {
_approve(address(this), address(dexRouter), type(uint256).max);
}
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = dexRouter.WETH();
try
dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
amount,
0,
path,
treasury,
block.timestamp
)
{} catch {
return;
}
}
/**
* @dev Check if the pair has liquidity.
*/
function _checkLiquidity() internal {
require(!hasLiquidity, "Already have liquidity");
if (balanceOf(lpPair) > 0) {
hasLiquidity = true;
}
}
/**
* @dev Override the internal transfer function to apply the sell tax and distribute it.
* @param sender address of origin.
* @param recipient destination address.
* @param amount tokens to transfer.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual override {
require(
sender != address(0x0),
"ERC20: transfer from the zero address"
);
require(
recipient != address(0x0),
"ERC20: transfer to the zero address"
);
require(amount > 0, "Transfer amount must be greater than zero");
if (!hasLiquidity) {
_checkLiquidity();
}
if (!onSwap) {
if (hasLiquidity) {
uint256 balance = balanceOf(address(this));
if (balance > 0) {
_taxSwap(balance);
}
}
}
// check whitelist
bool excluded = _isExcluded[sender] || _isExcluded[recipient];
if (excluded || !_lpPairs[recipient]) {
super._transfer(sender, recipient, amount);
} else {
// sell tax amount
uint256 taxAmount = (amount * sellTax()) / 100;
// tax transfer sent to this contract
super._transfer(sender, address(this), taxAmount);
// default transfer sent to recipient
super._transfer(sender, recipient, amount - taxAmount);
}
}
//----------- External Functions -----------//
/**
* @notice Forward the ETH to the treasury wallet.
*/
receive() external payable {
uint256 amount = msg.value;
(bool success, ) = treasury.call{value: amount, gas: 35000}("");
require(success);
}
/**
* @notice Check the current sell tax with a 10% startup that decreases over time up to 5%.
* @return uint256 the sell tax.
*/
function sellTax() public view returns (uint256) {
if (startTrading + 365 days < block.timestamp) {
return 5;
} else if (startTrading + 90 days < block.timestamp) {
return 7;
} else {
return 10;
}
}
/**
* @notice Check if a address is excluded from tax.
* @param account address to check.
* @return Boolean if excluded or not.
*/
function isExcluded(address account) external view returns (bool) {
return _isExcluded[account];
}
/**
* @notice Check if a pair address is on list.
* @param pair address to check.
* @return Boolean if on list or not.
*/
function isLpPair(address pair) external view returns (bool) {
return _lpPairs[pair];
}
//----------- Owner Functions -----------//
/**
* @notice Set address in exclude list.
* @param account address to set.
* @param enabled boolean to enable or disable.
*/
function setExcluded(address account, bool enabled) external onlyOwner {
require(account != address(0x0), "Invalid address");
_isExcluded[account] = enabled;
emit ModifiedExclusion(account, enabled);
}
/**
* @notice Set address in pairs list.
* @param pair address to set.
* @param enabled boolean to enable or disable.
*/
function setLpPair(address pair, bool enabled) external onlyOwner {
require(pair != address(0x0), "Invalid pair");
_lpPairs[pair] = enabled;
emit ModifiedPair(pair, enabled);
}
/**
* @notice Change the trasury address.
* @param newTreasury address to set.
*/
function setTreasury(address newTreasury) external onlyOwner {
require(newTreasury != address(0x0), "Invalid address");
treasury = payable(newTreasury);
emit NewTreasury(newTreasury);
}
/**
* @notice Change the dex router address before having liquidity.
* @param newRouter address to set.
*/
function setRouter(address newRouter) external onlyOwner {
require(newRouter != address(0x0), "Invalid router");
require(!hasLiquidity, "Already have liquidity");
IRouterV2 router = IRouterV2(newRouter);
address newPair = IFactoryV2(router.factory()).getPair(
address(this),
router.WETH()
);
if (newPair == address(0x0)) {
lpPair = IFactoryV2(router.factory()).createPair(
address(this),
router.WETH()
);
} else {
lpPair = newPair;
}
dexRouter = router;
_approve(address(this), address(dexRouter), type(uint256).max);
emit NewRouter(newRouter, lpPair);
}
/**
* @notice Burn tokens of sell tax.
* @param amount to burn.
*/
function burnTax(uint256 amount) external onlyOwner {
uint256 balance = balanceOf(address(this));
require(amount > 0 && balance > 0, "Zero amount");
uint256 toBurn = amount > balance ? balance : amount;
_burn(address(this), toBurn);
}
/**
* @notice Swap tokens of sell tax.
* @param amount to swap.
*/
function swapTax(uint256 amount) external onlyOwner {
uint256 balance = balanceOf(address(this));
require(amount > 0 && balance > 0, "Zero amount");
uint256 toSwap = amount > balance ? balance : amount;
_taxSwap(toSwap);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
_spendAllowance(account, _msgSender(), amount);
_burn(account, amount);
}
}// 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.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// 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
pragma solidity >=0.6.0 <0.9.0;
interface IFactoryV2 {
event PairCreated(
address indexed token0,
address indexed token1,
address lpPair,
uint256
);
function getPair(address tokenA, address tokenB)
external
view
returns (address lpPair);
function createPair(address tokenA, address tokenB)
external
returns (address lpPair);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.9.0;
interface IRouterV2 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
function addLiquidity(
address tokenA,
address tokenB,
uint256 amountADesired,
uint256 amountBDesired,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
)
external
returns (
uint256 amountA,
uint256 amountB,
uint256 liquidity
);
function swapExactETHForTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable returns (uint256[] memory amounts);
function getAmountsOut(uint256 amountIn, address[] calldata path)
external
view
returns (uint256[] memory amounts);
function getAmountsIn(uint256 amountOut, address[] calldata path)
external
view
returns (uint256[] memory amounts);
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactTokensForTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function swapExactTokensForETH(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_dexRouter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"ModifiedExclusion","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"ModifiedPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRouter","type":"address"},{"indexed":false,"internalType":"address","name":"lpPair","type":"address"}],"name":"NewRouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newTreasury","type":"address"}],"name":"NewTreasury","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnTax","outputs":[],"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":"dexRouter","outputs":[{"internalType":"contract IRouterV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasLiquidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"isLpPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setLpPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"swapTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162002328380380620023288339810160408190526200003491620003fb565b604051806040016040528060068152602001652330b631b7b760d11b8152506040518060400160405280600381526020016223262760e91b8152508160039081620000809190620004d1565b5060046200008f8282620004d1565b505050620000ac620000a6620002da60201b60201c565b620002de565b620000d533620000bf6012600a620006b2565b620000cf906359682f00620006c3565b62000330565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001559190620003fb565b6001600160a01b031663c9c65396600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001dd9190620003fb565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303816000875af11580156200022a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002509190620003fb565b600780546001600160a01b0319166001600160a01b039290921691821790556000908152600960209081526040808320805460ff19908116600190811790925533808652600a9094528285208054821683179055308552919093208054909116909217909155600880546001600160a81b03191660ff60a01b1990921691909117905550620006f3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200038b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200039f9190620006dd565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000602082840312156200040e57600080fd5b81516001600160a01b03811681146200042657600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200045857607f821691505b6020821081036200047957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003f657600081815260208120601f850160051c81016020861015620004a85750805b601f850160051c820191505b81811015620004c957828155600101620004b4565b505050505050565b81516001600160401b03811115620004ed57620004ed6200042d565b6200050581620004fe845462000443565b846200047f565b602080601f8311600181146200053d5760008415620005245750858301515b600019600386901b1c1916600185901b178555620004c9565b600085815260208120601f198616915b828110156200056e578886015182559484019460019091019084016200054d565b50858210156200058d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005f4578160001904821115620005d857620005d86200059d565b80851615620005e657918102915b93841c9390800290620005b8565b509250929050565b6000826200060d57506001620006ac565b816200061c57506000620006ac565b8160018114620006355760028114620006405762000660565b6001915050620006ac565b60ff8411156200065457620006546200059d565b50506001821b620006ac565b5060208310610133831016604e8410600b841016171562000685575081810a620006ac565b620006918383620005b3565b8060001904821115620006a857620006a86200059d565b0290505b92915050565b60006200042660ff841683620005fc565b8082028115828204841417620006ac57620006ac6200059d565b80820180821115620006ac57620006ac6200059d565b611c2580620007036000396000f3fe6080604052600436106101d15760003560e01c806379cc6790116100f7578063a9059cbb11610095578063cc1776d311610064578063cc1776d3146105dd578063dd62ed3e146105f2578063f0f4426014610612578063f2fde38b1461063257600080fd5b8063a9059cbb14610543578063b9de5a5014610563578063c0d7865514610584578063cba0e996146105a457600080fd5b806395d89b41116100d157806395d89b41146104b55780639f0c45d4146104ca578063a457c2d714610503578063a83bfb711461052357600080fd5b806379cc67901461045757806380c581d1146104775780638da5cb5b1461049757600080fd5b8063313ce5671161016f57806361d027b31161013e57806361d027b3146103cc5780636d359b70146103ec57806370a082311461040c578063715018a61461044257600080fd5b8063313ce56714610350578063395093511461036c57806342966c681461038c578063452ed4f1146103ac57600080fd5b806318160ddd116101ab57806318160ddd146102d957806323b872dd146102f85780632836be2414610318578063293230b81461033857600080fd5b806306fdde03146102465780630758d92414610271578063095ea7b3146102a957600080fd5b366102415760085460405134916000916001600160a01b03909116906188b890849084818181858888f193505050503d806000811461022c576040519150601f19603f3d011682016040523d82523d6000602084013e610231565b606091505b505090508061023f57600080fd5b005b600080fd5b34801561025257600080fd5b5061025b610652565b604051610268919061189b565b60405180910390f35b34801561027d57600080fd5b50600654610291906001600160a01b031681565b6040516001600160a01b039091168152602001610268565b3480156102b557600080fd5b506102c96102c43660046118fe565b6106e4565b6040519015158152602001610268565b3480156102e557600080fd5b506002545b604051908152602001610268565b34801561030457600080fd5b506102c961031336600461192a565b6106fe565b34801561032457600080fd5b5061023f61033336600461196b565b610722565b34801561034457600080fd5b506102ea63638cee3681565b34801561035c57600080fd5b5060405160128152602001610268565b34801561037857600080fd5b506102c96103873660046118fe565b6107db565b34801561039857600080fd5b5061023f6103a73660046119a9565b6107fd565b3480156103b857600080fd5b50600754610291906001600160a01b031681565b3480156103d857600080fd5b50600854610291906001600160a01b031681565b3480156103f857600080fd5b5061023f6104073660046119a9565b61080a565b34801561041857600080fd5b506102ea6104273660046119c2565b6001600160a01b031660009081526020819052604090205490565b34801561044e57600080fd5b5061023f61088d565b34801561046357600080fd5b5061023f6104723660046118fe565b6108a1565b34801561048357600080fd5b5061023f61049236600461196b565b6108ba565b3480156104a357600080fd5b506005546001600160a01b0316610291565b3480156104c157600080fd5b5061025b610963565b3480156104d657600080fd5b506102c96104e53660046119c2565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561050f57600080fd5b506102c961051e3660046118fe565b610972565b34801561052f57600080fd5b5061023f61053e3660046119a9565b6109ed565b34801561054f57600080fd5b506102c961055e3660046118fe565b610a6a565b34801561056f57600080fd5b506008546102c990600160a01b900460ff1681565b34801561059057600080fd5b5061023f61059f3660046119c2565b610a78565b3480156105b057600080fd5b506102c96105bf3660046119c2565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156105e957600080fd5b506102ea610e70565b3480156105fe57600080fd5b506102ea61060d3660046119e6565b610eb5565b34801561061e57600080fd5b5061023f61062d3660046119c2565b610ee0565b34801561063e57600080fd5b5061023f61064d3660046119c2565b610f84565b60606003805461066190611a14565b80601f016020809104026020016040519081016040528092919081815260200182805461068d90611a14565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b6000336106f2818585610ffa565b60019150505b92915050565b60003361070c85828561111e565b610717858585611198565b506001949350505050565b61072a611366565b6001600160a01b0382166107775760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064015b60405180910390fd5b6001600160a01b0382166000818152600a6020908152604091829020805460ff19168515159081179091558251938452908301527ff4ea157aa08eda8293c29f3ca4d0fa862e4798708d2eb2114d3c0db8b6af31bf91015b60405180910390a15050565b6000336106f28185856107ee8383610eb5565b6107f89190611a64565b610ffa565b61080733826113c0565b50565b610812611366565b3060009081526020819052604090205481158015906108315750600081115b61086b5760405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b604482015260640161076e565b600081831161087a578261087c565b815b905061088830826113c0565b505050565b610895611366565b61089f60006114f2565b565b6108ac82338361111e565b6108b682826113c0565b5050565b6108c2611366565b6001600160a01b0382166109075760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2103830b4b960a11b604482015260640161076e565b6001600160a01b038216600081815260096020908152604091829020805460ff19168515159081179091558251938452908301527f562029d5116b63b8f67e8c8917a9c980cb7ad99c12fff37cc45471af06c2d46391016107cf565b60606004805461066190611a14565b600033816109808286610eb5565b9050838110156109e05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161076e565b6107178286868403610ffa565b6109f5611366565b306000908152602081905260409020548115801590610a145750600081115b610a4e5760405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b604482015260640161076e565b6000818311610a5d5782610a5f565b815b905061088881611544565b6000336106f2818585611198565b610a80611366565b6001600160a01b038116610ac75760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b2103937baba32b960911b604482015260640161076e565b600854600160a01b900460ff1615610b1a5760405162461bcd60e51b8152602060048201526016602482015275416c72656164792068617665206c697175696469747960501b604482015260640161076e565b60008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b839190611a77565b6001600160a01b031663e6a4390530846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf49190611a77565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610c3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c639190611a77565b90506001600160a01b038116610ddc57816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd59190611a77565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d469190611a77565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db79190611a77565b600780546001600160a01b0319166001600160a01b0392909216919091179055610df8565b600780546001600160a01b0319166001600160a01b0383161790555b600680546001600160a01b0319166001600160a01b038416908117909155610e24903090600019610ffa565b600754604080516001600160a01b03808716825290921660208301527f16f1d221b3425f7b275ace551e729c5c59b49ff88f69225008c9e06b0c0c8c5e910160405180910390a1505050565b600042610e8563638cee366301e13380611a64565b1015610e915750600590565b42610ea363638cee366276a700611a64565b1015610eaf5750600790565b50600a90565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ee8611366565b6001600160a01b038116610f305760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161076e565b600880546001600160a01b0319166001600160a01b0383169081179091556040519081527fafa147634b29e2c7bd53ce194256b9f41cfb9ba3036f2b822fdd1d965beea0869060200160405180910390a150565b610f8c611366565b6001600160a01b038116610ff15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076e565b610807816114f2565b6001600160a01b03831661105c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161076e565b6001600160a01b0382166110bd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161076e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061112a8484610eb5565b9050600019811461119257818110156111855760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161076e565b6111928484848403610ffa565b50505050565b6001600160a01b0383166111be5760405162461bcd60e51b815260040161076e90611a94565b6001600160a01b0382166111e45760405162461bcd60e51b815260040161076e90611ad9565b600081116112465760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161076e565b600854600160a01b900460ff1661125f5761125f6116e9565b600854600160a81b900460ff166112a357600854600160a01b900460ff16156112a3573060009081526020819052604090205480156112a1576112a181611544565b505b6001600160a01b0383166000908152600a602052604081205460ff16806112e257506001600160a01b0383166000908152600a602052604090205460ff165b9050808061130957506001600160a01b03831660009081526009602052604090205460ff16155b1561131e57611319848484611771565b611192565b6000606461132a610e70565b6113349085611b1c565b61133e9190611b33565b905061134b853083611771565b61135f858561135a8487611b55565b611771565b5050505050565b6005546001600160a01b0316331461089f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076e565b6001600160a01b0382166114205760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161076e565b6001600160a01b038216600090815260208190526040902054818110156114945760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161076e565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008805460ff60a81b1916600160a81b179055600654600019906115729030906001600160a01b0316610eb5565b14611591576006546115919030906001600160a01b0316600019610ffa565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115c6576115c6611b68565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561161f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116439190611a77565b8160018151811061165657611656611b68565b6001600160a01b03928316602091820292909201015260065460085460405163791ac94760e01b81529183169263791ac947926116a29287926000928892909116904290600401611b7e565b600060405180830381600087803b1580156116bc57600080fd5b505af19250505080156116cd575060015b6116d757506116d9565b505b506008805460ff60a81b19169055565b600854600160a01b900460ff161561173c5760405162461bcd60e51b8152602060048201526016602482015275416c72656164792068617665206c697175696469747960501b604482015260640161076e565b6007546001600160a01b03166000908152602081905260409020541561089f576008805460ff60a01b1916600160a01b179055565b6001600160a01b0383166117975760405162461bcd60e51b815260040161076e90611a94565b6001600160a01b0382166117bd5760405162461bcd60e51b815260040161076e90611ad9565b6001600160a01b038316600090815260208190526040902054818110156118355760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161076e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611192565b600060208083528351808285015260005b818110156118c8578581018301518582016040015282016118ac565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461080757600080fd5b6000806040838503121561191157600080fd5b823561191c816118e9565b946020939093013593505050565b60008060006060848603121561193f57600080fd5b833561194a816118e9565b9250602084013561195a816118e9565b929592945050506040919091013590565b6000806040838503121561197e57600080fd5b8235611989816118e9565b91506020830135801515811461199e57600080fd5b809150509250929050565b6000602082840312156119bb57600080fd5b5035919050565b6000602082840312156119d457600080fd5b81356119df816118e9565b9392505050565b600080604083850312156119f957600080fd5b8235611a04816118e9565b9150602083013561199e816118e9565b600181811c90821680611a2857607f821691505b602082108103611a4857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106f8576106f8611a4e565b600060208284031215611a8957600080fd5b81516119df816118e9565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176106f8576106f8611a4e565b600082611b5057634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156106f8576106f8611a4e565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611bce5784516001600160a01b031683529383019391830191600101611ba9565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d5564364957c5e3dbb565e9bf12576639662502e30ebe4880aad39f865dc126864736f6c634300081200330000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b47997506
Deployed Bytecode
0x6080604052600436106101d15760003560e01c806379cc6790116100f7578063a9059cbb11610095578063cc1776d311610064578063cc1776d3146105dd578063dd62ed3e146105f2578063f0f4426014610612578063f2fde38b1461063257600080fd5b8063a9059cbb14610543578063b9de5a5014610563578063c0d7865514610584578063cba0e996146105a457600080fd5b806395d89b41116100d157806395d89b41146104b55780639f0c45d4146104ca578063a457c2d714610503578063a83bfb711461052357600080fd5b806379cc67901461045757806380c581d1146104775780638da5cb5b1461049757600080fd5b8063313ce5671161016f57806361d027b31161013e57806361d027b3146103cc5780636d359b70146103ec57806370a082311461040c578063715018a61461044257600080fd5b8063313ce56714610350578063395093511461036c57806342966c681461038c578063452ed4f1146103ac57600080fd5b806318160ddd116101ab57806318160ddd146102d957806323b872dd146102f85780632836be2414610318578063293230b81461033857600080fd5b806306fdde03146102465780630758d92414610271578063095ea7b3146102a957600080fd5b366102415760085460405134916000916001600160a01b03909116906188b890849084818181858888f193505050503d806000811461022c576040519150601f19603f3d011682016040523d82523d6000602084013e610231565b606091505b505090508061023f57600080fd5b005b600080fd5b34801561025257600080fd5b5061025b610652565b604051610268919061189b565b60405180910390f35b34801561027d57600080fd5b50600654610291906001600160a01b031681565b6040516001600160a01b039091168152602001610268565b3480156102b557600080fd5b506102c96102c43660046118fe565b6106e4565b6040519015158152602001610268565b3480156102e557600080fd5b506002545b604051908152602001610268565b34801561030457600080fd5b506102c961031336600461192a565b6106fe565b34801561032457600080fd5b5061023f61033336600461196b565b610722565b34801561034457600080fd5b506102ea63638cee3681565b34801561035c57600080fd5b5060405160128152602001610268565b34801561037857600080fd5b506102c96103873660046118fe565b6107db565b34801561039857600080fd5b5061023f6103a73660046119a9565b6107fd565b3480156103b857600080fd5b50600754610291906001600160a01b031681565b3480156103d857600080fd5b50600854610291906001600160a01b031681565b3480156103f857600080fd5b5061023f6104073660046119a9565b61080a565b34801561041857600080fd5b506102ea6104273660046119c2565b6001600160a01b031660009081526020819052604090205490565b34801561044e57600080fd5b5061023f61088d565b34801561046357600080fd5b5061023f6104723660046118fe565b6108a1565b34801561048357600080fd5b5061023f61049236600461196b565b6108ba565b3480156104a357600080fd5b506005546001600160a01b0316610291565b3480156104c157600080fd5b5061025b610963565b3480156104d657600080fd5b506102c96104e53660046119c2565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561050f57600080fd5b506102c961051e3660046118fe565b610972565b34801561052f57600080fd5b5061023f61053e3660046119a9565b6109ed565b34801561054f57600080fd5b506102c961055e3660046118fe565b610a6a565b34801561056f57600080fd5b506008546102c990600160a01b900460ff1681565b34801561059057600080fd5b5061023f61059f3660046119c2565b610a78565b3480156105b057600080fd5b506102c96105bf3660046119c2565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156105e957600080fd5b506102ea610e70565b3480156105fe57600080fd5b506102ea61060d3660046119e6565b610eb5565b34801561061e57600080fd5b5061023f61062d3660046119c2565b610ee0565b34801561063e57600080fd5b5061023f61064d3660046119c2565b610f84565b60606003805461066190611a14565b80601f016020809104026020016040519081016040528092919081815260200182805461068d90611a14565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b6000336106f2818585610ffa565b60019150505b92915050565b60003361070c85828561111e565b610717858585611198565b506001949350505050565b61072a611366565b6001600160a01b0382166107775760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064015b60405180910390fd5b6001600160a01b0382166000818152600a6020908152604091829020805460ff19168515159081179091558251938452908301527ff4ea157aa08eda8293c29f3ca4d0fa862e4798708d2eb2114d3c0db8b6af31bf91015b60405180910390a15050565b6000336106f28185856107ee8383610eb5565b6107f89190611a64565b610ffa565b61080733826113c0565b50565b610812611366565b3060009081526020819052604090205481158015906108315750600081115b61086b5760405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b604482015260640161076e565b600081831161087a578261087c565b815b905061088830826113c0565b505050565b610895611366565b61089f60006114f2565b565b6108ac82338361111e565b6108b682826113c0565b5050565b6108c2611366565b6001600160a01b0382166109075760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2103830b4b960a11b604482015260640161076e565b6001600160a01b038216600081815260096020908152604091829020805460ff19168515159081179091558251938452908301527f562029d5116b63b8f67e8c8917a9c980cb7ad99c12fff37cc45471af06c2d46391016107cf565b60606004805461066190611a14565b600033816109808286610eb5565b9050838110156109e05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161076e565b6107178286868403610ffa565b6109f5611366565b306000908152602081905260409020548115801590610a145750600081115b610a4e5760405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b604482015260640161076e565b6000818311610a5d5782610a5f565b815b905061088881611544565b6000336106f2818585611198565b610a80611366565b6001600160a01b038116610ac75760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b2103937baba32b960911b604482015260640161076e565b600854600160a01b900460ff1615610b1a5760405162461bcd60e51b8152602060048201526016602482015275416c72656164792068617665206c697175696469747960501b604482015260640161076e565b60008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b839190611a77565b6001600160a01b031663e6a4390530846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf49190611a77565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610c3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c639190611a77565b90506001600160a01b038116610ddc57816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd59190611a77565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d469190611a77565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db79190611a77565b600780546001600160a01b0319166001600160a01b0392909216919091179055610df8565b600780546001600160a01b0319166001600160a01b0383161790555b600680546001600160a01b0319166001600160a01b038416908117909155610e24903090600019610ffa565b600754604080516001600160a01b03808716825290921660208301527f16f1d221b3425f7b275ace551e729c5c59b49ff88f69225008c9e06b0c0c8c5e910160405180910390a1505050565b600042610e8563638cee366301e13380611a64565b1015610e915750600590565b42610ea363638cee366276a700611a64565b1015610eaf5750600790565b50600a90565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ee8611366565b6001600160a01b038116610f305760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161076e565b600880546001600160a01b0319166001600160a01b0383169081179091556040519081527fafa147634b29e2c7bd53ce194256b9f41cfb9ba3036f2b822fdd1d965beea0869060200160405180910390a150565b610f8c611366565b6001600160a01b038116610ff15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076e565b610807816114f2565b6001600160a01b03831661105c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161076e565b6001600160a01b0382166110bd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161076e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061112a8484610eb5565b9050600019811461119257818110156111855760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161076e565b6111928484848403610ffa565b50505050565b6001600160a01b0383166111be5760405162461bcd60e51b815260040161076e90611a94565b6001600160a01b0382166111e45760405162461bcd60e51b815260040161076e90611ad9565b600081116112465760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161076e565b600854600160a01b900460ff1661125f5761125f6116e9565b600854600160a81b900460ff166112a357600854600160a01b900460ff16156112a3573060009081526020819052604090205480156112a1576112a181611544565b505b6001600160a01b0383166000908152600a602052604081205460ff16806112e257506001600160a01b0383166000908152600a602052604090205460ff165b9050808061130957506001600160a01b03831660009081526009602052604090205460ff16155b1561131e57611319848484611771565b611192565b6000606461132a610e70565b6113349085611b1c565b61133e9190611b33565b905061134b853083611771565b61135f858561135a8487611b55565b611771565b5050505050565b6005546001600160a01b0316331461089f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076e565b6001600160a01b0382166114205760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161076e565b6001600160a01b038216600090815260208190526040902054818110156114945760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161076e565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008805460ff60a81b1916600160a81b179055600654600019906115729030906001600160a01b0316610eb5565b14611591576006546115919030906001600160a01b0316600019610ffa565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115c6576115c6611b68565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561161f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116439190611a77565b8160018151811061165657611656611b68565b6001600160a01b03928316602091820292909201015260065460085460405163791ac94760e01b81529183169263791ac947926116a29287926000928892909116904290600401611b7e565b600060405180830381600087803b1580156116bc57600080fd5b505af19250505080156116cd575060015b6116d757506116d9565b505b506008805460ff60a81b19169055565b600854600160a01b900460ff161561173c5760405162461bcd60e51b8152602060048201526016602482015275416c72656164792068617665206c697175696469747960501b604482015260640161076e565b6007546001600160a01b03166000908152602081905260409020541561089f576008805460ff60a01b1916600160a01b179055565b6001600160a01b0383166117975760405162461bcd60e51b815260040161076e90611a94565b6001600160a01b0382166117bd5760405162461bcd60e51b815260040161076e90611ad9565b6001600160a01b038316600090815260208190526040902054818110156118355760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161076e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611192565b600060208083528351808285015260005b818110156118c8578581018301518582016040015282016118ac565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461080757600080fd5b6000806040838503121561191157600080fd5b823561191c816118e9565b946020939093013593505050565b60008060006060848603121561193f57600080fd5b833561194a816118e9565b9250602084013561195a816118e9565b929592945050506040919091013590565b6000806040838503121561197e57600080fd5b8235611989816118e9565b91506020830135801515811461199e57600080fd5b809150509250929050565b6000602082840312156119bb57600080fd5b5035919050565b6000602082840312156119d457600080fd5b81356119df816118e9565b9392505050565b600080604083850312156119f957600080fd5b8235611a04816118e9565b9150602083013561199e816118e9565b600181811c90821680611a2857607f821691505b602082108103611a4857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106f8576106f8611a4e565b600060208284031215611a8957600080fd5b81516119df816118e9565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176106f8576106f8611a4e565b600082611b5057634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156106f8576106f8611a4e565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611bce5784516001600160a01b031683529383019391830191600101611ba9565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d5564364957c5e3dbb565e9bf12576639662502e30ebe4880aad39f865dc126864736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b47997506
-----Decoded View---------------
Arg [0] : _dexRouter (address): 0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b47997506
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)