ERC-20
Overview
Max Total Supply
555,555,555,555 $PEPE
Holders
66
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.449353766641095043 $PEPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PEPE
Compiler Version
v0.8.2+commit.661d1103
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** Website: ClownWorldPepe.com Twitter: Twitter.com/ClownWorldPepe_ Telegram: T.me/ClownWorldPepe **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.2; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external; } contract PEPE is ERC20, Ownable { uint256[] public marketingFee; uint256 public maxTokenPerWallet; uint256 public swapTokensAtAmount; IUniswapV2Router public uniswapV2Router; address public uniswapV2Pair; address public marketingWallet; bool private swapping; bool public tradEnable; mapping (address => bool) public isExcludedFromFee; mapping (address => bool) public isExcludedFromMaxTokenPerWallet; mapping (address => bool) public isAutomatedMarketMakerPairs; event MaxTokenPerWalletUpdated(uint256 amount); event SwapTokensAmountUpdated(uint256 amount); event AutomatedMarketMakerPairUpdated(address pair, bool value); event MarketingFeeUpdated(uint256 buy, uint256 sell, uint256 p2p); event MarketingWalletUpdated(address newWallet); event MigrateTokens(address token, address receiver, uint256 amount); event TradEnable(bool value); constructor(address owner) ERC20("Clown World Pepe", "$PEPE") { uniswapV2Router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); isExcludedFromFee[owner] = true; isExcludedFromFee[address(this)] = true; isExcludedFromMaxTokenPerWallet[owner] = true; isExcludedFromMaxTokenPerWallet[address(this)] = true; isExcludedFromMaxTokenPerWallet[address(uniswapV2Pair)] = true; isAutomatedMarketMakerPairs[address(uniswapV2Pair)] = true; maxTokenPerWallet = 27777777777 * (10 ** 18); swapTokensAtAmount = 200000000 * (10 ** 18); marketingWallet = address(0x3951E7e38659c3231F8850833B644d97C351d45A); tradEnable = false; _mint(owner, 555555555555 * (10 ** 18)); } receive() external payable {} function excludeFromFee(address account, bool status) external onlyOwner { require(isExcludedFromFee[account] != status, "Account is already the value of 'status'"); isExcludedFromFee[account] = status; } function excludeFromMaxTokenPerWallet(address account, bool status) external onlyOwner { require(isExcludedFromMaxTokenPerWallet[account] != status, "Account is already the value of 'status'"); isExcludedFromMaxTokenPerWallet[account] = status; } function setMarketingWallet(address newWallet) external onlyOwner{ require(newWallet != address(0), "Zero address"); marketingWallet = newWallet; emit MarketingWalletUpdated(newWallet); } function setMaxTokenPerWallet(uint256 amount) external onlyOwner { require(amount <= totalSupply(), "Amount cannot be over the total supply."); require(amount >= 500 * (10 ** 18), "Minimum `500` token per wallet required"); maxTokenPerWallet = amount; emit MaxTokenPerWalletUpdated(amount); } function setSwapTokensAtAmount(uint256 amount) external onlyOwner { require(amount <= totalSupply(), "Amount cannot be over the total supply."); require(amount >= 500 * (10 ** 18), "Minimum `500` token per swap required"); swapTokensAtAmount = amount; emit SwapTokensAmountUpdated(amount); } function setMarketingFee(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner { require(buy <= 2000 , "Max fee limit reached for 'BUY'"); require(sell <= 2000 , "Max fee limit reached for 'SELL'"); require(p2p <= 2000 , "Max fee limit reached for 'P2P'"); marketingFee[0] = buy; marketingFee[1] = sell; marketingFee[2] = p2p; emit MarketingFeeUpdated(buy, sell, p2p); } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require(pair != address(0), "Zero address"); require(isAutomatedMarketMakerPairs[pair] != value, "Automated market maker pair is already set to that value"); require(pair != address(uniswapV2Pair), "The pair cannot be removed from automatedMarketMakerPairs"); isExcludedFromMaxTokenPerWallet[address(pair)] = value; isAutomatedMarketMakerPairs[address(pair)] = value; emit AutomatedMarketMakerPairUpdated(pair, value); } function _transfer(address sender, address recipient, uint256 amount) internal override(ERC20){ require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); if(!tradEnable) { require(sender == owner(), "ERC20: trade is not enable"); } if(!isExcludedFromMaxTokenPerWallet[recipient]) { require((balanceOf(recipient) + amount) <= maxTokenPerWallet, "Transfer amount exceeds the `maxTokenPerWallet`."); } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if (canSwap && !swapping && isAutomatedMarketMakerPairs[recipient]) { swapping = true; swapTokensForETH(swapTokensAtAmount); swapping = false; } if(isExcludedFromFee[sender] || isExcludedFromFee[recipient]) { super._transfer(sender, recipient, amount); } else { uint256 allFee = collectFee(amount, isAutomatedMarketMakerPairs[recipient], !isAutomatedMarketMakerPairs[sender] && !isAutomatedMarketMakerPairs[recipient]); if(allFee > 0) { super._transfer(sender, address(this), allFee); } super._transfer(sender, recipient, amount - allFee); } } function collectFee(uint256 amount, bool sell, bool p2p) private view returns (uint256) { uint256 newMarketingFee = amount * (p2p ? marketingFee[2] : sell ? marketingFee[1] : marketingFee[0]) / 10000; return newMarketingFee; } function swapTokensForETH(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(marketingWallet), block.timestamp ); } function migrateETH(address payable recipient) public onlyOwner { require(recipient != address(0), "Zero address"); recipient.transfer(address(this).balance); } function migrateTokens(address token, address receiver, uint256 amount) external onlyOwner{ require(token != address(0), "Zero address"); require(receiver != address(0), "Zero address"); require(IERC20(token).balanceOf(address(this)) >= amount, "Insufficient balance on contract"); IERC20(token).transfer(address(receiver), amount); emit MigrateTokens(token, receiver, amount); } function enableTrade() public onlyOwner { require(!tradEnable, "Trade already started"); tradEnable = true; marketingFee.push(1000); marketingFee.push(2000); marketingFee.push(0); TradEnable(true); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/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; } _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; _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; } _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.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 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 (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 (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); }
{ "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
[{"inputs":[{"internalType":"address","name":"owner","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":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"AutomatedMarketMakerPairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"MarketingFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxTokenPerWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MigrateTokens","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapTokensAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"TradEnable","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"enableTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromMaxTokenPerWallet","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":"isAutomatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMaxTokenPerWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"migrateETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"migrateTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTokenPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200261838038062002618833981016040819052620000349162000567565b604080518082018252601081526f436c6f776e20576f726c64205065706560801b602080830191825283518085019094526005845264245045504560d81b9084015281519192916200008991600391620004c1565b5080516200009f906004906020840190620004c1565b505050620000bc620000b66200038360201b60201c565b62000387565b600980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17908190556040805163c45a015560e01b815290516001600160a01b03929092169163c45a015591600480820192602092909190829003018186803b1580156200012857600080fd5b505afa1580156200013d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000163919062000567565b6001600160a01b031663c9c6539630600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001c157600080fd5b505afa158015620001d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fc919062000567565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200024557600080fd5b505af11580156200025a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000280919062000567565b600a80546001600160a01b039283166001600160a01b03199182161782558383166000818152600c60209081526040808320805460ff199081166001908117909255308086528386208054831684179055958552600d845282852080548216831790559484528184208054861682179055865488168452818420805486168217905595549096168252600e90529390932080549093169091179091556b59c13d3ea1d47881e32400006007556aa56fa5b99019a5c8000000600855600b805460ff60a81b199216733951e7e38659c3231f8850833b644d97c351d45a179190911690556200037c816c070318c8e574c41eac8dac0000620003d9565b50620005f9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004345760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000448919062000597565b90915550506001600160a01b038216600090815260208190526040812080548392906200047790849062000597565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620004cf90620005bc565b90600052602060002090601f016020900481019282620004f357600085556200053e565b82601f106200050e57805160ff19168380011785556200053e565b828001600101855582156200053e579182015b828111156200053e57825182559160200191906001019062000521565b506200054c92915062000550565b5090565b5b808211156200054c576000815560010162000551565b60006020828403121562000579578081fd5b81516001600160a01b038116811462000590578182fd5b9392505050565b60008219821115620005b757634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620005d157607f821691505b60208210811415620005f357634e487b7160e01b600052602260045260246000fd5b50919050565b61200f80620006096000396000f3fe6080604052600436106101fc5760003560e01c806375f0a8741161010d578063a9059cbb116100a0578063bd8239431161006f578063bd823943146105f2578063dd62ed3e14610612578063df8408fe14610632578063e2f4560514610652578063f2fde38b1461066857610203565b8063a9059cbb14610562578063a918299c14610582578063afa4f3b2146105a2578063b5f5758b146105c257610203565b8063957537f9116100dc578063957537f9146104ed57806395d89b411461050d5780639a7a23d614610522578063a457c2d71461054257610203565b806375f0a874146104795780637a8baf521461049957806382fb7119146104af5780638da5cb5b146104cf57610203565b8063313ce567116101905780635342acb41161015f5780635342acb4146103be5780635d098b38146103ee57806370a082311461040e578063715018a61461044457806374da7cd81461045957610203565b8063313ce56714610341578063395093511461035d578063448335d41461037d57806349bd5a5e1461039e57610203565b80631694505e116101cc5780631694505e1461029a57806318160ddd146102d257806323b872dd146102f1578063255fe8471461031157610203565b806299d3861461020857806301d7532d1461021f57806306fdde031461023f578063095ea7b31461026a57610203565b3661020357005b600080fd5b34801561021457600080fd5b5061021d610688565b005b34801561022b57600080fd5b5061021d61023a366004611c28565b610785565b34801561024b57600080fd5b506102546107f7565b6040516102619190611cf7565b60405180910390f35b34801561027657600080fd5b5061028a610285366004611c55565b610889565b6040519015158152602001610261565b3480156102a657600080fd5b506009546102ba906001600160a01b031681565b6040516001600160a01b039091168152602001610261565b3480156102de57600080fd5b506002545b604051908152602001610261565b3480156102fd57600080fd5b5061028a61030c366004611be8565b6108a1565b34801561031d57600080fd5b5061028a61032c366004611b71565b600e6020526000908152604090205460ff1681565b34801561034d57600080fd5b5060405160128152602001610261565b34801561036957600080fd5b5061028a610378366004611c55565b6108c5565b34801561038957600080fd5b50600b5461028a90600160a81b900460ff1681565b3480156103aa57600080fd5b50600a546102ba906001600160a01b031681565b3480156103ca57600080fd5b5061028a6103d9366004611b71565b600c6020526000908152604090205460ff1681565b3480156103fa57600080fd5b5061021d610409366004611b71565b6108e7565b34801561041a57600080fd5b506102e3610429366004611b71565b6001600160a01b031660009081526020819052604090205490565b34801561045057600080fd5b5061021d61096a565b34801561046557600080fd5b5061021d610474366004611b71565b61097e565b34801561048557600080fd5b50600b546102ba906001600160a01b031681565b3480156104a557600080fd5b506102e360075481565b3480156104bb57600080fd5b506102e36104ca366004611c9c565b6109e5565b3480156104db57600080fd5b506005546001600160a01b03166102ba565b3480156104f957600080fd5b5061021d610508366004611be8565b610a06565b34801561051957600080fd5b50610254610bf5565b34801561052e57600080fd5b5061021d61053d366004611c28565b610c04565b34801561054e57600080fd5b5061028a61055d366004611c55565b610dc3565b34801561056e57600080fd5b5061028a61057d366004611c55565b610e3e565b34801561058e57600080fd5b5061021d61059d366004611ccc565b610e4c565b3480156105ae57600080fd5b5061021d6105bd366004611c9c565b61101b565b3480156105ce57600080fd5b5061028a6105dd366004611b71565b600d6020526000908152604090205460ff1681565b3480156105fe57600080fd5b5061021d61060d366004611c9c565b6110e1565b34801561061e57600080fd5b506102e361062d366004611bb0565b6111a9565b34801561063e57600080fd5b5061021d61064d366004611c28565b6111d4565b34801561065e57600080fd5b506102e360085481565b34801561067457600080fd5b5061021d610683366004611b71565b611246565b6106906112bf565b600b54600160a81b900460ff16156106e75760405162461bcd60e51b8152602060048201526015602482015274151c98591948185b1c9958591e481cdd185c9d1959605a1b60448201526064015b60405180910390fd5b600b805460ff60a81b1916600160a81b179055600680546001818101835560008381526103e87ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f93840155835480830185556107d090840155835480830190945592909101919091556040519081527f951f0ec1ef3aa2b634cda77633c6f13cce8806a4f8b1a02fd22f5e3efda1e5469060200160405180910390a1565b61078d6112bf565b6001600160a01b0382166000908152600d602052604090205460ff16151581151514156107cc5760405162461bcd60e51b81526004016106de90611db3565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b60606003805461080690611f65565b80601f016020809104026020016040519081016040528092919081815260200182805461083290611f65565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600033610897818585611319565b5060019392505050565b6000336108af85828561143d565b6108ba8585856114b7565b506001949350505050565b6000336108978185856108d883836111a9565b6108e29190611ef7565b611319565b6108ef6112bf565b6001600160a01b0381166109155760405162461bcd60e51b81526004016106de90611d8d565b600b80546001600160a01b0319166001600160a01b0383169081179091556040519081527fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e7906020015b60405180910390a150565b6109726112bf565b61097c600061178a565b565b6109866112bf565b6001600160a01b0381166109ac5760405162461bcd60e51b81526004016106de90611d8d565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156109e1573d6000803e3d6000fd5b5050565b600681815481106109f557600080fd5b600091825260209091200154905081565b610a0e6112bf565b6001600160a01b038316610a345760405162461bcd60e51b81526004016106de90611d8d565b6001600160a01b038216610a5a5760405162461bcd60e51b81526004016106de90611d8d565b6040516370a0823160e01b815230600482015281906001600160a01b038516906370a082319060240160206040518083038186803b158015610a9b57600080fd5b505afa158015610aaf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad39190611cb4565b1015610b215760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e742062616c616e6365206f6e20636f6e747261637460448201526064016106de565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b158015610b6b57600080fd5b505af1158015610b7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba39190611c80565b50604080516001600160a01b038086168252841660208201529081018290527fc7372460dc9d750a8e86aab4229750d8df3d2d3a19784820f83c00c986e00611906060015b60405180910390a1505050565b60606004805461080690611f65565b610c0c6112bf565b6001600160a01b038216610c325760405162461bcd60e51b81526004016106de90611d8d565b6001600160a01b0382166000908152600e602052604090205460ff1615158115151415610cc75760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084016106de565b600a546001600160a01b0383811691161415610d4b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016106de565b6001600160a01b0382166000818152600d60209081526040808320805486151560ff199182168117909255600e845293829020805490941681179093558051938452908301919091527fef0b71f3a695ce5a89064cc2745d0c503cf766ed985e781607660be6010b8e90910160405180910390a15050565b60003381610dd182866111a9565b905083811015610e315760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106de565b6108ba8286868403611319565b6000336108978185856114b7565b610e546112bf565b6107d0831115610ea65760405162461bcd60e51b815260206004820152601f60248201527f4d617820666565206c696d6974207265616368656420666f722027425559270060448201526064016106de565b6107d0821115610ef85760405162461bcd60e51b815260206004820181905260248201527f4d617820666565206c696d6974207265616368656420666f72202753454c4c2760448201526064016106de565b6107d0811115610f4a5760405162461bcd60e51b815260206004820152601f60248201527f4d617820666565206c696d6974207265616368656420666f722027503250270060448201526064016106de565b826006600081548110610f6d57634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550816006600181548110610f9e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550806006600281548110610fcf57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527f3044b38769c2aa50acc652d2a51ec6a0712bb556a8cb713ee35dcf2ef3f0507590606001610be8565b6110236112bf565b6002548111156110455760405162461bcd60e51b81526004016106de90611e40565b681b1ae4d6e2ef5000008110156110ac5760405162461bcd60e51b815260206004820152602560248201527f4d696e696d756d20603530306020746f6b656e207065722073776170207265716044820152641d5a5c995960da1b60648201526084016106de565b60088190556040518181527f28ea3a80049e637c2f1bf658d47a07f688bea6e931f3c1930cf4a4daf97b18609060200161095f565b6110e96112bf565b60025481111561110b5760405162461bcd60e51b81526004016106de90611e40565b681b1ae4d6e2ef5000008110156111745760405162461bcd60e51b815260206004820152602760248201527f4d696e696d756d20603530306020746f6b656e207065722077616c6c65742072604482015266195c5d5a5c995960ca1b60648201526084016106de565b60078190556040518181527f0271c3ca991d8fa13fc3df55bfd888e9347a178a375ef6e0f63afa9639d144f49060200161095f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6111dc6112bf565b6001600160a01b0382166000908152600c602052604090205460ff161515811515141561121b5760405162461bcd60e51b81526004016106de90611db3565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b61124e6112bf565b6001600160a01b0381166112b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106de565b6112bc8161178a565b50565b6005546001600160a01b0316331461097c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106de565b6001600160a01b03831661137b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106de565b6001600160a01b0382166113dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106de565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061144984846111a9565b905060001981146114b157818110156114a45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106de565b6114b18484848403611319565b50505050565b6001600160a01b0383166114dd5760405162461bcd60e51b81526004016106de90611dfb565b6001600160a01b0382166115035760405162461bcd60e51b81526004016106de90611d4a565b600b54600160a81b900460ff16611571576005546001600160a01b038481169116146115715760405162461bcd60e51b815260206004820152601a60248201527f45524332303a207472616465206973206e6f7420656e61626c6500000000000060448201526064016106de565b6001600160a01b0382166000908152600d602052604090205460ff1661162557600754816115b4846001600160a01b031660009081526020819052604090205490565b6115be9190611ef7565b11156116255760405162461bcd60e51b815260206004820152603060248201527f5472616e7366657220616d6f756e7420657863656564732074686520606d617860448201526f2a37b5b2b72832b92bb0b63632ba301760811b60648201526084016106de565b30600090815260208190526040902054600854811080159081906116535750600b54600160a01b900460ff16155b801561167757506001600160a01b0384166000908152600e602052604090205460ff165b156116a957600b805460ff60a01b1916600160a01b17905560085461169b906117dc565b600b805460ff60a01b191690555b6001600160a01b0385166000908152600c602052604090205460ff16806116e857506001600160a01b0384166000908152600c602052604090205460ff165b156116fd576116f885858561195d565b611783565b6001600160a01b038085166000908152600e6020526040808220549288168252812054909161175a91869160ff908116911615801561175557506001600160a01b0388166000908152600e602052604090205460ff16155b611ab1565b9050801561176d5761176d86308361195d565b611781868661177c8488611f4e565b61195d565b505b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061181f57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561187357600080fd5b505afa158015611887573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ab9190611b94565b816001815181106118cc57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526009546118f29130911684611319565b600954600b5460405163791ac94760e01b81526001600160a01b039283169263791ac9479261192f92879260009288929116904290600401611e87565b600060405180830381600087803b15801561194957600080fd5b505af1158015611781573d6000803e3d6000fd5b6001600160a01b0383166119835760405162461bcd60e51b81526004016106de90611dfb565b6001600160a01b0382166119a95760405162461bcd60e51b81526004016106de90611d4a565b6001600160a01b03831660009081526020819052604090205481811015611a215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106de565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a58908490611ef7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aa491815260200190565b60405180910390a36114b1565b60008061271083611b265784611af3576006600081548110611ae357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154611b21565b6006600181548110611b1557634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b611b54565b6006600281548110611b4857634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b611b5e9087611f2f565b611b689190611f0f565b95945050505050565b600060208284031215611b82578081fd5b8135611b8d81611fb6565b9392505050565b600060208284031215611ba5578081fd5b8151611b8d81611fb6565b60008060408385031215611bc2578081fd5b8235611bcd81611fb6565b91506020830135611bdd81611fb6565b809150509250929050565b600080600060608486031215611bfc578081fd5b8335611c0781611fb6565b92506020840135611c1781611fb6565b929592945050506040919091013590565b60008060408385031215611c3a578182fd5b8235611c4581611fb6565b91506020830135611bdd81611fcb565b60008060408385031215611c67578182fd5b8235611c7281611fb6565b946020939093013593505050565b600060208284031215611c91578081fd5b8151611b8d81611fcb565b600060208284031215611cad578081fd5b5035919050565b600060208284031215611cc5578081fd5b5051919050565b600080600060608486031215611ce0578283fd5b505081359360208301359350604090920135919050565b6000602080835283518082850152825b81811015611d2357858101830151858201604001528201611d07565b81811115611d345783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b60208082526028908201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604082015267277374617475732760c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526027908201527f416d6f756e742063616e6e6f74206265206f7665722074686520746f74616c2060408201526639bab838363c9760c91b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015611ed65784516001600160a01b031683529383019391830191600101611eb1565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115611f0a57611f0a611fa0565b500190565b600082611f2a57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611f4957611f49611fa0565b500290565b600082821015611f6057611f60611fa0565b500390565b600281046001821680611f7957607f821691505b60208210811415611f9a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146112bc57600080fd5b80151581146112bc57600080fdfea2646970667358221220ce7f9115b18e04636d950cde151858436e4e6387ab23f47553db0e0e5961b24764736f6c6343000802003300000000000000000000000018911f92d61bb888c5ef2e727560cf76df77b7af
Deployed Bytecode
0x6080604052600436106101fc5760003560e01c806375f0a8741161010d578063a9059cbb116100a0578063bd8239431161006f578063bd823943146105f2578063dd62ed3e14610612578063df8408fe14610632578063e2f4560514610652578063f2fde38b1461066857610203565b8063a9059cbb14610562578063a918299c14610582578063afa4f3b2146105a2578063b5f5758b146105c257610203565b8063957537f9116100dc578063957537f9146104ed57806395d89b411461050d5780639a7a23d614610522578063a457c2d71461054257610203565b806375f0a874146104795780637a8baf521461049957806382fb7119146104af5780638da5cb5b146104cf57610203565b8063313ce567116101905780635342acb41161015f5780635342acb4146103be5780635d098b38146103ee57806370a082311461040e578063715018a61461044457806374da7cd81461045957610203565b8063313ce56714610341578063395093511461035d578063448335d41461037d57806349bd5a5e1461039e57610203565b80631694505e116101cc5780631694505e1461029a57806318160ddd146102d257806323b872dd146102f1578063255fe8471461031157610203565b806299d3861461020857806301d7532d1461021f57806306fdde031461023f578063095ea7b31461026a57610203565b3661020357005b600080fd5b34801561021457600080fd5b5061021d610688565b005b34801561022b57600080fd5b5061021d61023a366004611c28565b610785565b34801561024b57600080fd5b506102546107f7565b6040516102619190611cf7565b60405180910390f35b34801561027657600080fd5b5061028a610285366004611c55565b610889565b6040519015158152602001610261565b3480156102a657600080fd5b506009546102ba906001600160a01b031681565b6040516001600160a01b039091168152602001610261565b3480156102de57600080fd5b506002545b604051908152602001610261565b3480156102fd57600080fd5b5061028a61030c366004611be8565b6108a1565b34801561031d57600080fd5b5061028a61032c366004611b71565b600e6020526000908152604090205460ff1681565b34801561034d57600080fd5b5060405160128152602001610261565b34801561036957600080fd5b5061028a610378366004611c55565b6108c5565b34801561038957600080fd5b50600b5461028a90600160a81b900460ff1681565b3480156103aa57600080fd5b50600a546102ba906001600160a01b031681565b3480156103ca57600080fd5b5061028a6103d9366004611b71565b600c6020526000908152604090205460ff1681565b3480156103fa57600080fd5b5061021d610409366004611b71565b6108e7565b34801561041a57600080fd5b506102e3610429366004611b71565b6001600160a01b031660009081526020819052604090205490565b34801561045057600080fd5b5061021d61096a565b34801561046557600080fd5b5061021d610474366004611b71565b61097e565b34801561048557600080fd5b50600b546102ba906001600160a01b031681565b3480156104a557600080fd5b506102e360075481565b3480156104bb57600080fd5b506102e36104ca366004611c9c565b6109e5565b3480156104db57600080fd5b506005546001600160a01b03166102ba565b3480156104f957600080fd5b5061021d610508366004611be8565b610a06565b34801561051957600080fd5b50610254610bf5565b34801561052e57600080fd5b5061021d61053d366004611c28565b610c04565b34801561054e57600080fd5b5061028a61055d366004611c55565b610dc3565b34801561056e57600080fd5b5061028a61057d366004611c55565b610e3e565b34801561058e57600080fd5b5061021d61059d366004611ccc565b610e4c565b3480156105ae57600080fd5b5061021d6105bd366004611c9c565b61101b565b3480156105ce57600080fd5b5061028a6105dd366004611b71565b600d6020526000908152604090205460ff1681565b3480156105fe57600080fd5b5061021d61060d366004611c9c565b6110e1565b34801561061e57600080fd5b506102e361062d366004611bb0565b6111a9565b34801561063e57600080fd5b5061021d61064d366004611c28565b6111d4565b34801561065e57600080fd5b506102e360085481565b34801561067457600080fd5b5061021d610683366004611b71565b611246565b6106906112bf565b600b54600160a81b900460ff16156106e75760405162461bcd60e51b8152602060048201526015602482015274151c98591948185b1c9958591e481cdd185c9d1959605a1b60448201526064015b60405180910390fd5b600b805460ff60a81b1916600160a81b179055600680546001818101835560008381526103e87ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f93840155835480830185556107d090840155835480830190945592909101919091556040519081527f951f0ec1ef3aa2b634cda77633c6f13cce8806a4f8b1a02fd22f5e3efda1e5469060200160405180910390a1565b61078d6112bf565b6001600160a01b0382166000908152600d602052604090205460ff16151581151514156107cc5760405162461bcd60e51b81526004016106de90611db3565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b60606003805461080690611f65565b80601f016020809104026020016040519081016040528092919081815260200182805461083290611f65565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600033610897818585611319565b5060019392505050565b6000336108af85828561143d565b6108ba8585856114b7565b506001949350505050565b6000336108978185856108d883836111a9565b6108e29190611ef7565b611319565b6108ef6112bf565b6001600160a01b0381166109155760405162461bcd60e51b81526004016106de90611d8d565b600b80546001600160a01b0319166001600160a01b0383169081179091556040519081527fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e7906020015b60405180910390a150565b6109726112bf565b61097c600061178a565b565b6109866112bf565b6001600160a01b0381166109ac5760405162461bcd60e51b81526004016106de90611d8d565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156109e1573d6000803e3d6000fd5b5050565b600681815481106109f557600080fd5b600091825260209091200154905081565b610a0e6112bf565b6001600160a01b038316610a345760405162461bcd60e51b81526004016106de90611d8d565b6001600160a01b038216610a5a5760405162461bcd60e51b81526004016106de90611d8d565b6040516370a0823160e01b815230600482015281906001600160a01b038516906370a082319060240160206040518083038186803b158015610a9b57600080fd5b505afa158015610aaf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad39190611cb4565b1015610b215760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e742062616c616e6365206f6e20636f6e747261637460448201526064016106de565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b158015610b6b57600080fd5b505af1158015610b7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba39190611c80565b50604080516001600160a01b038086168252841660208201529081018290527fc7372460dc9d750a8e86aab4229750d8df3d2d3a19784820f83c00c986e00611906060015b60405180910390a1505050565b60606004805461080690611f65565b610c0c6112bf565b6001600160a01b038216610c325760405162461bcd60e51b81526004016106de90611d8d565b6001600160a01b0382166000908152600e602052604090205460ff1615158115151415610cc75760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084016106de565b600a546001600160a01b0383811691161415610d4b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016106de565b6001600160a01b0382166000818152600d60209081526040808320805486151560ff199182168117909255600e845293829020805490941681179093558051938452908301919091527fef0b71f3a695ce5a89064cc2745d0c503cf766ed985e781607660be6010b8e90910160405180910390a15050565b60003381610dd182866111a9565b905083811015610e315760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106de565b6108ba8286868403611319565b6000336108978185856114b7565b610e546112bf565b6107d0831115610ea65760405162461bcd60e51b815260206004820152601f60248201527f4d617820666565206c696d6974207265616368656420666f722027425559270060448201526064016106de565b6107d0821115610ef85760405162461bcd60e51b815260206004820181905260248201527f4d617820666565206c696d6974207265616368656420666f72202753454c4c2760448201526064016106de565b6107d0811115610f4a5760405162461bcd60e51b815260206004820152601f60248201527f4d617820666565206c696d6974207265616368656420666f722027503250270060448201526064016106de565b826006600081548110610f6d57634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550816006600181548110610f9e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550806006600281548110610fcf57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527f3044b38769c2aa50acc652d2a51ec6a0712bb556a8cb713ee35dcf2ef3f0507590606001610be8565b6110236112bf565b6002548111156110455760405162461bcd60e51b81526004016106de90611e40565b681b1ae4d6e2ef5000008110156110ac5760405162461bcd60e51b815260206004820152602560248201527f4d696e696d756d20603530306020746f6b656e207065722073776170207265716044820152641d5a5c995960da1b60648201526084016106de565b60088190556040518181527f28ea3a80049e637c2f1bf658d47a07f688bea6e931f3c1930cf4a4daf97b18609060200161095f565b6110e96112bf565b60025481111561110b5760405162461bcd60e51b81526004016106de90611e40565b681b1ae4d6e2ef5000008110156111745760405162461bcd60e51b815260206004820152602760248201527f4d696e696d756d20603530306020746f6b656e207065722077616c6c65742072604482015266195c5d5a5c995960ca1b60648201526084016106de565b60078190556040518181527f0271c3ca991d8fa13fc3df55bfd888e9347a178a375ef6e0f63afa9639d144f49060200161095f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6111dc6112bf565b6001600160a01b0382166000908152600c602052604090205460ff161515811515141561121b5760405162461bcd60e51b81526004016106de90611db3565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b61124e6112bf565b6001600160a01b0381166112b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106de565b6112bc8161178a565b50565b6005546001600160a01b0316331461097c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106de565b6001600160a01b03831661137b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106de565b6001600160a01b0382166113dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106de565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061144984846111a9565b905060001981146114b157818110156114a45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106de565b6114b18484848403611319565b50505050565b6001600160a01b0383166114dd5760405162461bcd60e51b81526004016106de90611dfb565b6001600160a01b0382166115035760405162461bcd60e51b81526004016106de90611d4a565b600b54600160a81b900460ff16611571576005546001600160a01b038481169116146115715760405162461bcd60e51b815260206004820152601a60248201527f45524332303a207472616465206973206e6f7420656e61626c6500000000000060448201526064016106de565b6001600160a01b0382166000908152600d602052604090205460ff1661162557600754816115b4846001600160a01b031660009081526020819052604090205490565b6115be9190611ef7565b11156116255760405162461bcd60e51b815260206004820152603060248201527f5472616e7366657220616d6f756e7420657863656564732074686520606d617860448201526f2a37b5b2b72832b92bb0b63632ba301760811b60648201526084016106de565b30600090815260208190526040902054600854811080159081906116535750600b54600160a01b900460ff16155b801561167757506001600160a01b0384166000908152600e602052604090205460ff165b156116a957600b805460ff60a01b1916600160a01b17905560085461169b906117dc565b600b805460ff60a01b191690555b6001600160a01b0385166000908152600c602052604090205460ff16806116e857506001600160a01b0384166000908152600c602052604090205460ff165b156116fd576116f885858561195d565b611783565b6001600160a01b038085166000908152600e6020526040808220549288168252812054909161175a91869160ff908116911615801561175557506001600160a01b0388166000908152600e602052604090205460ff16155b611ab1565b9050801561176d5761176d86308361195d565b611781868661177c8488611f4e565b61195d565b505b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061181f57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561187357600080fd5b505afa158015611887573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ab9190611b94565b816001815181106118cc57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526009546118f29130911684611319565b600954600b5460405163791ac94760e01b81526001600160a01b039283169263791ac9479261192f92879260009288929116904290600401611e87565b600060405180830381600087803b15801561194957600080fd5b505af1158015611781573d6000803e3d6000fd5b6001600160a01b0383166119835760405162461bcd60e51b81526004016106de90611dfb565b6001600160a01b0382166119a95760405162461bcd60e51b81526004016106de90611d4a565b6001600160a01b03831660009081526020819052604090205481811015611a215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106de565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a58908490611ef7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aa491815260200190565b60405180910390a36114b1565b60008061271083611b265784611af3576006600081548110611ae357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154611b21565b6006600181548110611b1557634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b611b54565b6006600281548110611b4857634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b611b5e9087611f2f565b611b689190611f0f565b95945050505050565b600060208284031215611b82578081fd5b8135611b8d81611fb6565b9392505050565b600060208284031215611ba5578081fd5b8151611b8d81611fb6565b60008060408385031215611bc2578081fd5b8235611bcd81611fb6565b91506020830135611bdd81611fb6565b809150509250929050565b600080600060608486031215611bfc578081fd5b8335611c0781611fb6565b92506020840135611c1781611fb6565b929592945050506040919091013590565b60008060408385031215611c3a578182fd5b8235611c4581611fb6565b91506020830135611bdd81611fcb565b60008060408385031215611c67578182fd5b8235611c7281611fb6565b946020939093013593505050565b600060208284031215611c91578081fd5b8151611b8d81611fcb565b600060208284031215611cad578081fd5b5035919050565b600060208284031215611cc5578081fd5b5051919050565b600080600060608486031215611ce0578283fd5b505081359360208301359350604090920135919050565b6000602080835283518082850152825b81811015611d2357858101830151858201604001528201611d07565b81811115611d345783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b60208082526028908201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604082015267277374617475732760c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526027908201527f416d6f756e742063616e6e6f74206265206f7665722074686520746f74616c2060408201526639bab838363c9760c91b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015611ed65784516001600160a01b031683529383019391830191600101611eb1565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115611f0a57611f0a611fa0565b500190565b600082611f2a57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611f4957611f49611fa0565b500290565b600082821015611f6057611f60611fa0565b500390565b600281046001821680611f7957607f821691505b60208210811415611f9a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146112bc57600080fd5b80151581146112bc57600080fdfea2646970667358221220ce7f9115b18e04636d950cde151858436e4e6387ab23f47553db0e0e5961b24764736f6c63430008020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000018911f92d61bb888c5ef2e727560cf76df77b7af
-----Decoded View---------------
Arg [0] : owner (address): 0x18911F92D61bb888C5EF2E727560Cf76df77B7aF
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000018911f92d61bb888c5ef2e727560cf76df77b7af
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.