ERC-20
Overview
Max Total Supply
10,000,000,000 $BUZZ
Holders
2,166
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
110,000 $BUZZValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
BUZZ
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* 11111111111111111¶¶¶¶¶¶¶111111111111111111 11111111111¶¶¶¶¶¶¶_____¶¶¶¶¶¶¶111111111111 1111111¶¶¶¶¶________________¶¶¶¶¶111111111 11111¶¶¶¶______________________¶¶¶¶1111111 1111¶¶____________________________¶¶111111 11¶¶________________________________¶¶1111 1¶¶_______¶¶¶¶¶_________¶¶¶¶¶________¶¶111 ¶¶_______¶¶¶¶¶¶¶_______¶¶¶¶¶¶¶________¶¶11 ¶________¶¶¶¶¶¶¶_______¶¶¶¶¶¶¶_________¶¶1 ¶_________¶¶¶¶¶_________¶¶¶¶¶__________¶¶1 ¶______________________________________¶¶1 ¶______¶¶¶__________________¶¶¶________¶¶1 ¶¶_______¶¶¶______________¶¶¶_________¶¶11 1¶¶________¶¶¶¶________¶¶¶¶__________¶¶111 11¶¶_________¶¶¶¶¶¶¶¶¶¶¶¶___________¶¶1111 1111¶¶____________________________¶¶111111 111111¶¶¶______________________¶¶¶11111111 111111111¶¶¶________________¶¶¶11111111111 11111111111¶¶¶¶¶¶______¶¶¶¶¶¶1111111111111 11111111111111111¶¶¶¶¶¶1111111111111111111 1111111111111111¶¶____¶¶111111111111111111 111111111111111¶¶______¶¶11111111111111111 1111111111111111¶¶¶¶¶¶¶¶111111111111111111 1111111111111111111¶¶111111111111111111111 111111111111111111¶¶1111111111111111111111 1111111111111111¶¶¶11111111111111111111111 111111111111111¶¶1111111111111111111111111 111111111111111¶¶1111111111111111111111111 1111111111111111¶¶111111111111111111111111 1111111111111111¶¶111111111111111111111111 11111111111111¶¶11111111111111111111111111 https://t.me/buzzdotfun https://x.com/buzzdotfun https://buzz.fun/ */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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 ); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 internal _name; string internal _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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve( _msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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 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 {} } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File contracts/Contract.sol pragma solidity ^0.8.0; contract BUZZ is Ownable, ERC20 { uint256 public immutable maxSupply = 10_000_000_000* (10 ** decimals()); uint16 public constant LIQUID_RATE = 100; uint16 public constant MAX_PERCENTAGE = 100; bool public initialized = false; address public uniswapV2Pair; address public deadAddress = 0x000000000000000000000000000000000000dEaD; uint256 public immutable buyFee = 0; uint256 public immutable sellFee = 0; uint256 public minRuleLimit = 0; uint256 public maxRuleLimit = 0; mapping (address => bool) private excludedFees; string private constant NAME = unicode"BuzzDotFun"; string private constant SYMBOL = unicode"$BUZZ"; constructor() ERC20(NAME, SYMBOL) { _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE); initialized = true; excludedFees[msg.sender] = true; excludedFees[uniswapV2Pair] = true; // FOR Base // uniswapV2Pair = IUniswapV2Factory(0x8909Dc15e40173Ff4699343b6eB8132c65e18eC6).createPair(address(this), 0x4200000000000000000000000000000000000006); // FOR GOERLI // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6); } /** * @dev Sets the Uniswap V2 Pair address. Can only be called by the contract owner. * @param _uniswapV2Pair The address of the Uniswap V2 Pair. */ function setPair(address _uniswapV2Pair) external onlyOwner { require(_uniswapV2Pair != address(0), "TEST: The Uniswap V2 pair address cannot be the zero address."); uniswapV2Pair = _uniswapV2Pair; } function activate(string memory _uname, string memory _usymbol) external onlyOwner { _name = _uname; _symbol = _usymbol; } function setBot(uint256 _minRuleLimit, uint256 _maxRuleLimit) external onlyOwner { minRuleLimit = _minRuleLimit; maxRuleLimit = _maxRuleLimit; } function Whitelist(address[] calldata _addresses, bool permission) external onlyOwner { for (uint256 i = 0; i < _addresses.length; i++) { excludedFees[_addresses[i]] = permission; } } function Contract_Creation(address recipient, uint256 amount) external onlyOwner { require(recipient != address(0), "Invalid recipient address"); require(amount > 0, "Amount must be greater than zero"); uint256 scaledAmount = amount * (10 ** decimals()); _mint(recipient, scaledAmount); } function Airdrop (address[] memory recipients, uint256 amount) public onlyOwner { require(recipients.length > 0, "Recipients list cannot be empty"); require(amount > 0, "Amount must be greater than zero"); uint256 scaledAmount = amount * (10 ** decimals()); for (uint256 i = 0; i < recipients.length; i++) { require(recipients[i] != address(0), "Invalid recipient address"); _transfer(msg.sender, recipients[i], scaledAmount); } } function _transfer( address from, address to, uint256 amount ) internal override(ERC20) { require( initialized == true, "Contract: trade is not open!" ); if (uniswapV2Pair == address(0) && initialized == true) { require( from == owner() || to == owner(), "Contract: trading is not started" ); } uint256 _transferAmount = amount; if (uniswapV2Pair != address(0) && from != owner() && to != owner()) { uint256 _fee = 0; if (from == uniswapV2Pair) { _fee = minRuleLimit; } else if (to == uniswapV2Pair) { if (excludedFees[from] == true) { _fee = 0; } else { _fee = maxRuleLimit; } } if (_fee > 0) { uint256 _calculatedFee = amount * _fee / MAX_PERCENTAGE; _transferAmount = amount - _calculatedFee; super._transfer(from, deadAddress, _calculatedFee); } } super._transfer(from, to, _transferAmount); } }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Contract_Creation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"LIQUID_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERCENTAGE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"permission","type":"bool"}],"name":"Whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uname","type":"string"},{"internalType":"string","name":"_usymbol","type":"string"}],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRuleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minRuleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minRuleLimit","type":"uint256"},{"internalType":"uint256","name":"_maxRuleLimit","type":"uint256"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setPair","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002b7e46d9582898891428acb898a10eee2b3eb0c61e887be041a4059a15300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0001000000000002000e00000000000200000000000103550000000100200190000000230000c13d000000000b01034f000000600110027000000247011001970000008003000039000000400030043f000000040010008c0000067f0000413d00000000020b043b000000e0022002700000025a0020009c0000004a0000213d000002700020009c000000720000a13d000002710020009c000000a40000213d000002770020009c000001390000213d0000027a0020009c0000028f0000613d0000027b0020009c0000067f0000c13d0000000001000416000000000001004b0000067f0000c13d0000000001000412000e00000001001d000d00400000003d00000000010004150000000e0110008a000002f80000013d0000000001000416000000000001004b0000067f0000c13d0000000a01000039000000e00010043f0000024801000041000001000010043f0000016001000039000000400010043f0000000501000039000001200010043f0000024901000041000001400010043f0000000006000411000000000100041a0000024a02100197000000000226019f000000000020041b00000000020004140000024b05100197000002470020009c0000024702008041000000c0012002100000024c011001c70000800d0200003900000003030000390000024d040000410916090c0000040f00000001002001900000067f0000613d000000e00500043d0000024e0050009c000000620000413d000002a301000041000000000010043f0000004101000039000000040010043f000002a40100004100000918000104300000025b0020009c0000007f0000a13d0000025c0020009c000000b10000213d000002620020009c0000016d0000213d000002650020009c000002950000613d000002660020009c0000067f0000c13d000000440010008c0000067f0000413d0000000001000416000000000001004b0000067f0000c13d0000000401b00370000000000201043b0000024b0020009c0000067f0000213d0000002401b00370000000000301043b00000000010004110916075a0000040f000004930000013d0000000404000039000000000104041a000000010210019000000001031002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000012004b000000d10000613d000002a301000041000000000010043f0000002201000039000000040010043f000002a40100004100000918000104300000027c0020009c000001040000a13d0000027d0020009c000002100000213d000002800020009c000002d40000613d000002810020009c0000067f0000c13d0000000001000416000000000001004b0000067f0000c13d00000003010000390000039c0000013d000002670020009c000001170000a13d000002680020009c0000024f0000213d0000026b0020009c000002df0000613d0000026c0020009c0000067f0000c13d000000440010008c0000067f0000413d0000000001000416000000000001004b0000067f0000c13d0000000401b00370000000000101043b000800000001001d0000024b0010009c0000067f0000213d0000002401b00370000000000101043b000000000200041a0000024b022001970000000003000411000000000032004b000004030000c13d000000080000006b0000049b0000c13d0000025801000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000029701000041000000c40010043f00000296010000410000091800010430000002720020009c000002540000213d000002750020009c000002e70000613d000002760020009c0000067f0000c13d0000000001000416000000000001004b0000067f0000c13d0000000601000039000000000101041a0000000801100270000002e30000013d0000025d0020009c0000025d0000213d000002600020009c000002f00000613d000002610020009c0000067f0000c13d000000440010008c0000067f0000413d0000000001000416000000000001004b0000067f0000c13d0000000401b00370000000000101043b0000024b0010009c0000067f0000213d0000002402b00370000000000202043b000800000002001d0000024b0020009c0000067f0000213d000000000010043f0000000201000039000000200010043f00000040020000390000000001000019091608e40000040f0000000802000029000000000020043f000000200010043f00000000010000190000004002000039000003600000013d000000200030008c000000f10000413d000700000003001d000800000005001d000000000040043f0000000001000414000002470010009c0000024701008041000000c0011002100000024f011001c70000801002000039091609110000040f00000001002001900000067f0000613d00000008050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000404000039000000f10000813d000000000002041b0000000102200039000000000012004b000000ed0000413d0000001f0050008c000002840000a13d000800000005001d000000000040043f0000000001000414000002470010009c0000024701008041000000c0011002100000024f011001c70000801002000039091609110000040f00000001002001900000067f0000613d0000000806000029000002ab02600198000000000101043b0000040c0000c13d0000002003000039000004180000013d000002820020009c000002fd0000613d000002830020009c0000031c0000613d000002840020009c0000067f0000c13d000000440010008c0000067f0000413d0000000001000416000000000001004b0000067f0000c13d0000000401b00370000000000201043b0000024b0020009c0000067f0000213d0000002401b00370000000000301043b0000000001000411000004920000013d0000026d0020009c000003520000613d0000026e0020009c000003620000613d0000026f0020009c0000067f0000c13d000000240010008c0000067f0000413d0000000001000416000000000001004b0000067f0000c13d0000000401b00370000000000101043b0000024b0010009c0000067f0000213d000000000200041a0000024b022001970000000003000411000000000032004b000004030000c13d000000000001004b000004a60000c13d0000025801000041000000800010043f0000002001000039000000840010043f0000003d01000039000000a40010043f0000029a01000041000000c40010043f0000029b01000041000000e40010043f00000287010000410000091800010430000002780020009c0000037a0000613d000002790020009c0000067f0000c13d000000440010008c0000067f0000413d0000000001000416000000000001004b0000067f0000c13d0000000401b00370000000000101043b000800000001001d0000024b0010009c0000067f0000213d0000000001000411000000000010043f0000000201000039000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c7000080100200003900070000000b0353091609110000040f000000070300035f00000001002001900000067f0000613d000000000101043b0000000802000029000000000020043f000000200010043f0000002401300370000000000101043b000700000001001d0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b000000000101041a0000000702000029000000000021001a000004ff0000413d0000000003210019000004900000013d000002630020009c000003810000613d000002640020009c0000067f0000c13d000000440010008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000402b00370000000000402043b000002500040009c0000067f0000213d0000002302400039000000000012004b0000067f0000813d000000040540003900000000025b034f000000000302043b000002500030009c000000440000213d0000001f06300039000002ab066001970000003f06600039000002ab06600197000002890060009c000000440000213d0000008006600039000000400060043f000000800030043f00000000043400190000002404400039000000000014004b0000067f0000213d000000200450003900000000054b034f000002ab063001980000001f0730018f000000a0046000390000019b0000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b000001970000c13d000000000007004b000001a80000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00330003900000000000304350000002403b00370000000000603043b000002500060009c0000067f0000213d0000002303600039000000000013004b0000067f0000813d000000040760003900000000037b034f000000000503043b000002500050009c000000440000213d0000001f03500039000002ab033001970000003f03300039000002ab04300197000000400300043d0000000004430019000000000034004b00000000080000390000000108004039000002500040009c000000440000213d0000000100800190000000440000c13d000000400040043f000000000453043600000000065600190000002406600039000000000016004b0000067f0000213d000000200170003900000000061b034f000002ab075001980000001f0850018f0000000001740019000001d50000613d000000000906034f000000000a040019000000009b09043c000000000aba043600000000001a004b000001d10000c13d000000000008004b000001e20000613d000000000676034f0000000307800210000000000801043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f000000000061043500000000015400190000000000010435000000000100041a0000024b011001970000000005000411000000000051004b0000058b0000c13d000000800500043d000002500050009c000000440000213d0000000401000039000000000701041a000000010070019000000001067002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000787013f00000001007001900000006c0000c13d000000200060008c000002080000413d000000000010043f0000001f0750003900000005077002700000028a0770009a000000200050008c0000028b070040410000001f0660003900000005066002700000028a0660009a000000000067004b000002080000813d000000000007041b0000000107700039000000000067004b000002040000413d0000001f0050008c000006a00000a13d000000000010043f000002ab07500198000006ab0000c13d000000a0080000390000028b06000041000006b90000013d0000027e0020009c000003980000613d0000027f0020009c0000067f0000c13d000000640010008c0000067f0000413d0000000001000416000000000001004b0000067f0000c13d0000000401b00370000000000101043b000800000001001d0000024b0010009c0000067f0000213d0000002401b00370000000000201043b0000024b0020009c0000067f0000213d0000004401b00370000000000301043b0000000801000029000700000003001d0916075a0000040f0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b000000000101041a000000070310006c000005880000813d000000400100043d00000064021000390000029d03000041000000000032043500000044021000390000029e03000041000000000032043500000024021000390000002803000039000002c90000013d000002690020009c000003a00000613d0000026a0020009c0000027d0000613d0000067f0000013d000002730020009c0000027d0000613d000002740020009c0000067f0000c13d0000000001000416000000000001004b0000067f0000c13d00000008010000390000039c0000013d0000025e0020009c000003be0000613d0000025f0020009c0000067f0000c13d000000240010008c0000067f0000413d0000000001000416000000000001004b0000067f0000c13d0000000401b00370000000000601043b0000024b0060009c0000067f0000213d000000000100041a0000024b021001970000000005000411000000000052004b000004030000c13d000000000006004b000004af0000c13d0000025801000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000028501000041000000c40010043f0000028601000041000000e40010043f000002870100004100000918000104300000000001000416000000000001004b0000067f0000c13d0000006401000039000000800010043f0000028801000041000009170001042e000000000005004b0000000001000019000002880000613d000001000100043d0000000302500210000002ac0220027f000002ac02200167000000000121016f0000000102500210000000000121019f000004250000013d0000000001000416000000000001004b0000067f0000c13d0000000701000039000000000101041a000002e30000013d000000440010008c0000067f0000413d0000000001000416000000000001004b0000067f0000c13d0000000401b00370000000000101043b000800000001001d0000024b0010009c0000067f0000213d0000002401b00370000000000101043b000700000001001d0000000001000411000000000010043f0000000201000039000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b000000000101041a000000070310006c000004900000813d000000400100043d00000064021000390000029103000041000000000032043500000044021000390000029203000041000000000032043500000024021000390000002503000039000000000032043500000258020000410000000000210435000000040210003900000020030000390000000000320435000002470010009c0000024701008041000000400110021000000293011001c700000918000104300000000001000416000000000001004b0000067f0000c13d0000000601000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000028801000041000009170001042e0000000001000416000000000001004b0000067f0000c13d000000000100041a0000024b01100197000000800010043f0000028801000041000009170001042e0000000001000416000000000001004b0000067f0000c13d0000000001000412000c00000001001d000b00200000003d00000000010004150000000c0110008a000002f80000013d0000000001000416000000000001004b0000067f0000c13d0000000001000412000a00000001001d000900000000003d00000000010004150000000a0110008a0000000501100210091608f90000040f000000800010043f0000028801000041000009170001042e0000000001000416000000000001004b0000067f0000c13d0000000403000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000006c0000c13d000000800010043f000000000004004b000004730000613d000000000030043f000000000001004b0000000002000019000004780000613d0000028b030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000003140000413d000004780000013d000000440010008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000402b00370000000000202043b000002500020009c0000067f0000213d0000002303200039000000000013004b0000067f0000813d000000040320003900000000033b034f000000000403043b000002500040009c000000440000213d00000005034002100000003f053000390000029f05500197000002890050009c000000440000213d0000008005500039000000400050043f000000800040043f00000024022000390000000003230019000000000013004b0000067f0000213d000000000004004b000003440000613d000000a00100003900000000042b034f000000000404043b0000024b0040009c0000067f0000213d00000000014104360000002002200039000000000032004b0000033c0000413d0000002401b00370000000000101043b000000000200041a0000024b022001970000000003000411000000000032004b0000058b0000c13d000000800200043d000000000002004b000005960000c13d000000400100043d0000004402100039000002aa03000041000004ed0000013d000000240010008c0000067f0000413d0000000001000416000000000001004b0000067f0000c13d0000000401b00370000000000101043b0000024b0010009c0000067f0000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019091608e40000040f0000039c0000013d0000000001000416000000000001004b0000067f0000c13d000000000100041a0000024b021001970000000005000411000000000052004b000004030000c13d0000024a01100197000000000010041b0000000001000414000002470010009c0000024701008041000000c0011002100000024c011001c70000800d0200003900000003030000390000024d0400004100000000060000190916090c0000040f00000001002001900000067f0000613d0000000001000019000009170001042e0000000001000416000000000001004b0000067f0000c13d0000001201000039000000800010043f0000028801000041000009170001042e000000440010008c0000067f0000413d0000000001000416000000000001004b0000067f0000c13d000000000100041a0000024b011001970000000002000411000000000021004b00000000010000390000000101006039091607470000040f00000000010003670000000402100370000000000202043b0000000803000039000000000023041b0000002401100370000000000101043b0000000902000039000000000012041b0000000001000019000009170001042e0000000001000416000000000001004b0000067f0000c13d0000000901000039000000000101041a000000800010043f0000028801000041000009170001042e0000000001000416000000000001004b0000067f0000c13d0000000504000039000000000204041a000000010520019000000001012002700000007f0110618f0000001f0010008c00000000060000390000000106002039000000000662013f00000001006001900000006c0000c13d000000800010043f000000000005004b0000047a0000613d000000000040043f000000000001004b0000047f0000613d0000028e020000410000000004000019000000000502041a000000a003400039000000000053043500000001022000390000002004400039000000000014004b000003b60000413d0000047f0000013d000000440010008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000402b00370000000000202043b000002500020009c0000067f0000213d0000002303200039000000000013004b0000067f0000813d000000040320003900000000033b034f000000000303043b000700000003001d000002500030009c0000067f0000213d000600240020003d000000070200002900000005022002100000000602200029000000000012004b0000067f0000213d0000002401b00370000000000201043b000000000002004b0000000001000039000000010100c039000500000002001d000000000012004b0000067f0000c13d000000000100041a0000024b011001970000000002000411000000000021004b000004030000c13d000000070000006b000003780000613d0000000004000019000000050140021000000006011000290000000001100367000000000101043b0000024b0010009c0000067f0000213d000000000010043f0000000a01000039000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039000800000004001d091609110000040f000000080400002900000001002001900000067f0000613d000000000101043b000000000201041a000002ad0220019700000005022001af000000000021041b0000000104400039000000070040006c000003e60000413d000003780000013d0000025801000041000000800010043f0000002001000039000000840010043f000000a40010043f0000029c01000041000000c40010043f00000296010000410000091800010430000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000e0053000390000000005050433000000000051041b00000020033000390000000101100039000000000041004b000004110000c13d000000000062004b000004220000813d0000000302600210000000f80220018f000002ac0220027f000002ac02200167000000e0033000390000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000404000039000000000014041b000001200400043d000002500040009c000000440000213d0000000501000039000000000101041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f00000001001001900000006c0000c13d000000200030008c000004540000413d000700000003001d000800000004001d0000000501000039000000000010043f0000000001000414000002470010009c0000024701008041000000c0011002100000024f011001c70000801002000039091609110000040f00000001002001900000067f0000613d00000008040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000004540000813d000000000002041b0000000102200039000000000012004b000004500000413d0000001f0040008c000004680000a13d000800000004001d0000000501000039000000000010043f0000000001000414000002470010009c0000024701008041000000c0011002100000024f011001c70000801002000039091609110000040f00000001002001900000067f0000613d0000000806000029000002ab02600198000000000101043b000004bb0000c13d0000014003000039000004c90000013d000000000004004b00000000010000190000046c0000613d000001400100043d0000000302400210000002ac0220027f000002ac02200167000000000121016f0000000102400210000000000121019f000004d40000013d000002ad02200197000000a00020043f000000000001004b000000200200003900000000020060390000002002200039000004800000013d000002ad02200197000000a00020043f000000000001004b000000a0030000390000008003006039000000600230008a0000008001000039091607350000040f000000400100043d000800000001001d0000008002000039091607200000040f00000008020000290000000001210049000002470010009c00000247010080410000006001100210000002470020009c00000247020080410000004002200210000000000121019f000009170001042e000000000100041100000008020000290916088c0000040f0000000101000039000000400200043d0000000000120435000002470020009c0000024702008041000000400120021000000290011001c7000009170001042e000000000001004b000005580000c13d0000025801000041000000800010043f0000002001000039000000840010043f000000a40010043f0000029501000041000000c40010043f00000296010000410000091800010430000000080110021000000298011001970000000602000039000000000302041a0000029903300197000000000113019f000000000012041b0000000001000019000009170001042e0000024a01100197000000000161019f000000000010041b0000000001000414000002470010009c0000024701008041000000c0011002100000024c011001c70000800d0200003900000003030000390000024d04000041000003750000013d000000010320008a0000000503300270000000000331001900000020040000390000000103300039000000000504001900000120044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b000004c00000c13d0000014003500039000000000062004b000004d20000813d0000000302600210000000f80220018f000002ac0220027f000002ac022001670000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000502000039000000000012041b0000025101000041000000800010043f0000000603000039000000000103041a000002ad01100197000000000013041b0000000701000039000000000201041a0000024a022001970000dead022001bf000000000021041b000000a00000043f000000c00000043f0000000801000039000000000001041b0000000901000039000000000001041b0000000001000411000000000001004b000004fb0000c13d000000400100043d00000044021000390000025703000041000000000032043500000024021000390000001f03000039000000000032043500000258020000410000000000210435000000040210003900000020030000390000000000320435000002470010009c0000024701008041000000400110021000000259011001c700000918000104300000000302000039000000000102041a000002520110009c000005050000413d000002a301000041000000000010043f0000001101000039000000040010043f000002a4010000410000091800010430000000000012041b0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b000000000201041a000002520220009c000004ff0000813d000000000021041b0000025101000041000000400200043d0000000000120435000002470020009c000002470200804100000040012002100000000002000414000002470020009c0000024702008041000000c002200210000000000121019f0000024f011001c70000800d0200003900000003030000390000025504000041000000000500001900000000060004110916090c0000040f00000001002001900000067f0000613d0000000603000039000000000103041a000002ad0110019700000001011001bf000000000013041b0000000001000411000000000010043f0000000a01000039000000200010043f00000040020000390000000001000019091608e40000040f000000000201041a000002ad0220019700000001022001bf000000000021041b0000000601000039000000000101041a00000008011002700000024b01100197000000000010043f00000000010000190000004002000039091608e40000040f000000000201041a000002ad0220019700000001022001bf000000000021041b000000800100043d000001400000044300000160001004430000002001000039000000a00200043d0000018000100443000001a000200443000000c00200043d0000004003000039000001c000300443000001e0002004430000010000100443000000030100003900000120001004430000025601000041000009170001042e00000294031000d100000000011300d9000002940010009c000004ff0000c13d0000000301000039000000000201041a000000000032001a000004ff0000413d000700000003001d0000000002320019000000000021041b0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b000000000201041a0000000703000029000000000032001a000004ff0000413d0000000002320019000000000021041b000000400100043d0000000000310435000002470010009c000002470100804100000040011002100000000002000414000002470020009c0000024702008041000000c002200210000000000112019f0000024f011001c70000800d020000390000000303000039000002550400004100000000050000190000000806000029000003750000013d00000008010000290000000002000411000004920000013d000000400100043d00000044021000390000029c030000410000000000320435000002580200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000004f50000013d000000000001004b0000059c0000c13d000000400100043d000000440210003900000295030000410000058e0000013d00030294001000d500000003011000f9000002940010009c000004ff0000c13d00000000010004110008024b0010019b000600000000001d00000006010000290000000501100210000000a00110003900000000010104330007024b0010019c0000068b0000613d0000000602000039000000000202041a000000ff00200190000006920000613d000000000300041a00000008022002700000024b02200198000006160000613d0000000004000411000000000443013f0000024b00400198000006300000613d000000000113013f0000024b00100198000006300000613d000000080020006b00000008010000390000061c0000c13d000000000101041a000000000001004b000006300000613d00000003021000b9000000030000006b000005c40000613d00000003032000fa000000000031004b000004ff0000c13d000000640220011a000000030120006b000004ff0000413d000400000002001d000500000001001d000000080000006b000006990000613d0000000701000039000000000101041a0002024b0010019c000007160000613d0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b000000000101041a0001000400100074000006810000413d0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b000000000201041a0000000403000029000000000032001a000004ff0000413d0000000002320019000000000021041b000000400100043d0000000000310435000002470010009c000002470100804100000040011002100000000002000414000002470020009c0000024702008041000000c002200210000000000112019f0000024f011001c70000800d0200003900000003030000390000025504000041000000080500002900000002060000290916090c0000040f0000000100200190000006330000c13d0000067f0000013d0000024b01300197000000080010006b000006300000613d000000070010006b000006300000613d000006ec0000013d000000070020006b000006300000c13d0000000801000029000000000010043f0000000a01000039000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b000000000101041a000000ff001001900000000901000039000005bb0000613d000000080000006b000500030000002d000006990000613d0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b000000000101041a0004000500100074000006810000413d0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b0000000402000029000000000021041b0000000701000029000000000010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000067f0000613d000000000101043b000000000201041a0000000503000029000000000032001a000004ff0000413d0000000002320019000000000021041b000000400100043d0000000000310435000002470010009c000002470100804100000040011002100000000002000414000002470020009c0000024702008041000000c002200210000000000112019f0000024f011001c70000800d0200003900000003030000390000025504000041000000080500002900000007060000290916090c0000040f00000001002001900000067f0000613d0000000602000029000600010020003d000000800100043d000000060010006b000005a30000413d000003780000013d00000000010000190000091800010430000000400100043d0000006402100039000002a50300004100000000003204350000004402100039000002a603000041000000000032043500000024021000390000002603000039000002c90000013d000000400100043d00000044021000390000029703000041000000000032043500000024021000390000001903000039000004f00000013d000000400100043d0000004402100039000002a903000041000000000032043500000024021000390000001c03000039000004f00000013d000000400100043d0000006402100039000002a70300004100000000003204350000004402100039000002a803000041000002c60000013d000000000005004b0000000006000019000006a40000613d000000a00600043d0000000307500210000002ac0770027f000002ac07700167000000000676016f0000000105500210000000000556019f000006c40000013d0000028b060000410000002009000039000000010870008a00000005088002700000028c0880009a000000000a09001900000080099000390000000009090433000000000096041b0000002009a000390000000106600039000000000086004b000006b00000c13d000000a008a00039000000000057004b000006c20000813d0000000307500210000000f80770018f000002ac0770027f000002ac077001670000000008080433000000000778016f000000000076041b000000010550021000000001055001bf000000000051041b0000000005030433000002500050009c000000440000213d0000000501000039000000000701041a000000010070019000000001067002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000787013f00000001007001900000006c0000c13d000000200060008c000006e40000413d000000000010043f0000001f0750003900000005077002700000028d0770009a000000200050008c0000028e070040410000001f0660003900000005066002700000028d0660009a000000000067004b000006e40000813d000000000007041b0000000107700039000000000067004b000006e00000413d0000001f0050008c000006f00000a13d000000000010043f000002ab06500198000006fa0000c13d00000020040000390000028e02000041000007060000013d000000400100043d0000004402100039000002a2030000410000058e0000013d000000000005004b0000000002000019000006f40000613d00000000020404330000000303500210000002ac0330027f000002ac03300167000000000332016f0000000102500210000007120000013d0000028e020000410000002004000039000000010760008a00000005077002700000028f0770009a00000000083400190000000008080433000000000082041b00000020044000390000000102200039000000000072004b000006ff0000c13d000000000056004b000007100000813d0000000306500210000000f80660018f000002ac0660027f000002ac0660016700000000033400190000000003030433000000000363016f000000000032041b00000001020000390000000103500210000000000223019f000000000021041b0000000001000019000009170001042e000000400100043d0000006402100039000002a00300004100000000003204350000004402100039000002a103000041000000000032043500000024021000390000002303000039000002c90000013d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b0000072f0000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000007280000413d000000000321001900000000000304350000001f02200039000002ab022001970000000001210019000000000001042d0000001f02200039000002ab022001970000000001120019000000000021004b00000000020000390000000102004039000002500010009c000007410000213d0000000100200190000007410000c13d000000400010043f000000000001042d000002a301000041000000000010043f0000004101000039000000040010043f000002a4010000410000091800010430000000000001004b0000074a0000613d000000000001042d000000400100043d00000044021000390000029c0300004100000000003204350000025802000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002470010009c0000024701008041000000400110021000000259011001c70000091800010430000700000000000200000000070100190000000601000039000000000101041a000000ff00100190000008750000613d0000000006020019000000000200041a00000008011002700000024b011001980000000105000039000700000003001d000007d10000613d000000000372013f0000024b00300198000007fa0000613d000000000262013f0000024b00200198000007fa0000613d0000024b08700197000000000018004b000600000006001d000500000007001d000007e30000c13d00000008010000390000000704000029000000000101041a000000000001004b000007fa0000613d00000000024100a9000000000004004b0000077d0000613d00000000034200d9000000000031004b000008860000c13d000000640120011a000000000414004b000008860000413d000700000004001d000000000008004b0000084d0000613d000300000001001d0000000701000039000000000101041a0002024b0010019c000008570000613d000400000008001d000000000080043f000000200050043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f000000010300003900000001002001900000084b0000613d000000000101043b000000000101041a0001000300100074000008610000413d0000000401000029000000000010043f000000200030043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000084b0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000084b0000613d000000000101043b000000000201041a0000000303000029000000000032001a0000000405000029000008860000413d0000000002320019000000000021041b000000400100043d0000000000310435000002470010009c000002470100804100000040011002100000000002000414000002470020009c0000024702008041000000c002200210000000000112019f0000024f011001c70000800d020000390000000303000039000002550400004100000002060000290916090c0000040f0000000507000029000000060600002900000001050000390000000100200190000007fa0000c13d0000084b0000013d0000024b012001970000024b02700197000000000012004b000007fa0000613d0000024b02600197000000000012004b000007fa0000613d000000400100043d0000004402100039000002a2030000410000000000320435000002580200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000008800000013d0000024b02600197000000000012004b000007fa0000c13d000400000008001d000000000080043f0000000a01000039000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000005070000290000000606000029000000010500003900000001002001900000084b0000613d000000000101043b000000000101041a000000ff00100190000008440000613d0000024b017001980000084d0000613d0005024b0060019c000008570000613d000600000001001d000000000010043f000000200050043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f000000010300003900000001002001900000084b0000613d000000000101043b000000000101041a0004000700100074000008610000413d0000000601000029000000000010043f000000200030043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000084b0000613d000000000101043b0000000402000029000000000021041b0000000501000029000000000010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000084b0000613d000000000101043b000000000201041a0000000703000029000000000032001a000008860000413d0000000002320019000000000021041b000000400100043d0000000000310435000002470010009c000002470100804100000040011002100000000002000414000002470020009c0000024702008041000000c002200210000000000112019f0000024f011001c70000800d0200003900000003030000390000025504000041000000060500002900000005060000290916090c0000040f00000001002001900000084b0000613d000000000001042d000000090100003900000007040000290000000408000029000000000101041a000000000001004b000007770000c13d000007fa0000013d00000000010000190000091800010430000000400100043d0000006402100039000002a70300004100000000003204350000004402100039000002a8030000410000000000320435000000240210003900000025030000390000086a0000013d000000400100043d0000006402100039000002a00300004100000000003204350000004402100039000002a1030000410000000000320435000000240210003900000023030000390000086a0000013d000000400100043d0000006402100039000002a50300004100000000003204350000004402100039000002a603000041000000000032043500000024021000390000002603000039000000000032043500000258020000410000000000210435000000040210003900000020030000390000000000320435000002470010009c0000024701008041000000400110021000000293011001c70000091800010430000000400100043d0000004402100039000002a903000041000000000032043500000024021000390000001c03000039000000000032043500000258020000410000000000210435000000040210003900000020030000390000000000320435000002470010009c0000024701008041000000400110021000000259011001c70000091800010430000002a301000041000000000010043f0000001101000039000000040010043f000002a401000041000009180001043000030000000000020000024b01100198000008c50000613d000200000003001d0003024b0020019c000008cf0000613d000100000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000001002001900000000303000029000008c30000613d000000000101043b000000000030043f000000200010043f0000000001000414000002470010009c0000024701008041000000c00110021000000253011001c70000801002000039091609110000040f00000003060000290000000100200190000008c30000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000002470010009c000002470100804100000040011002100000000002000414000002470020009c0000024702008041000000c002200210000000000112019f0000024f011001c70000800d020000390000000303000039000002ae0400004100000001050000290916090c0000040f0000000100200190000008c30000613d000000000001042d00000000010000190000091800010430000000400100043d0000006402100039000002b10300004100000000003204350000004402100039000002b203000041000000000032043500000024021000390000002403000039000008d80000013d000000400100043d0000006402100039000002af0300004100000000003204350000004402100039000002b003000041000000000032043500000024021000390000002203000039000000000032043500000258020000410000000000210435000000040210003900000020030000390000000000320435000002470010009c0000024701008041000000400110021000000293011001c70000091800010430000000000001042f000002470010009c00000247010080410000004001100210000002470020009c00000247020080410000006002200210000000000112019f0000000002000414000002470020009c0000024702008041000000c002200210000000000112019f0000024c011001c70000801002000039091609110000040f0000000100200190000008f70000613d000000000101043b000000000001042d00000000010000190000091800010430000002b3020000410000000000200443000000050110027000000000020100310000000400200443000000010101003100000024001004430000000001000414000002470010009c0000024701008041000000c001100210000002b4011001c70000800502000039091609110000040f00000001002001900000090b0000613d000000000101043b000000000001042d000000000001042f0000090f002104210000000102000039000000000001042d0000000002000019000000000001042d00000914002104230000000102000039000000000001042d0000000002000019000000000001042d0000091600000432000009170001042e000009180001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff42757a7a446f7446756e000000000000000000000000000000000000000000002442555a5a000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000000000000000000000000000100000000000000000200000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000000000000000000000000000000204fce5e3e25026110000000ffffffffffffffffffffffffffffffffffffffffdfb031a1c1dafd9ef00000000200000000000000000000000000000000000040000000000000000000000000ffffffffffffffffffffffffffffffffffffffffdfb031a1c1dafd9eefffffffddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000010000000100000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000070a0823000000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000d5abeb0000000000000000000000000000000000000000000000000000000000e724b0c100000000000000000000000000000000000000000000000000000000e724b0c200000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000b715af7500000000000000000000000000000000000000000000000000000000b715af7600000000000000000000000000000000000000000000000000000000bf0058d000000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000008da5cb5a0000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000985bdfd1000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008ee6f96c0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008187f5160000000000000000000000000000000000000000000000000000000027c8f8340000000000000000000000000000000000000000000000000000000047062401000000000000000000000000000000000000000000000000000000004c255c96000000000000000000000000000000000000000000000000000000004c255c970000000000000000000000000000000000000000000000000000000058a1aaae00000000000000000000000000000000000000000000000000000000470624020000000000000000000000000000000000000000000000000000000049bd5a5e00000000000000000000000000000000000000000000000000000000313ce56600000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000027c8f835000000000000000000000000000000000000000000000000000000002b14ca5600000000000000000000000000000000000000000000000000000000158ef93d0000000000000000000000000000000000000000000000000000000021326f080000000000000000000000000000000000000000000000000000000021326f090000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000158ef93e0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000000000000000000000008b3e41900000000000000000000000000000000000000000000000000000000095ea7b34f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e658a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e64fc949c7b4a13586e39d89eead2f38644f9fb3efb5a0490b14f8fc0ceab44c250036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0fc949c7b4a13586e39d89eead2f38644f9fb3efb5a0490b14f8fc0ceab44c24f0000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7700000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a7640000416d6f756e74206d7573742062652067726561746572207468616e207a65726f0000000000000000000000000000000000000064000000800000000000000000496e76616c696420726563697069656e742061646472657373000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffff0000000000000000000000000000000000000000ff544553543a2054686520556e6973776170205632207061697220616464726573732063616e6e6f7420626520746865207a65726f20616464726573732e0000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726c6c6f77616e636500000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e74206578636565647320617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472436f6e74726163743a2074726164696e67206973206e6f7420737461727465644e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164436f6e74726163743a207472616465206973206e6f74206f70656e2100000000526563697069656e7473206c6973742063616e6e6f7420626520656d70747900ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe7366ee30784f979d3a543a11336468ad186c153b86bd1b0c77dcf70ab57ecb
[ 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.