ERC-20
Overview
Max Total Supply
50,000,000 CRAB
Holders
29
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
16,304,607.488787178928449932 CRABValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CrabRaveCoin
Compiler Version
v0.8.25+commit.b61c2a91
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.25; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; /// @custom:security-contact [email protected] (mail) /// @custom:security-contact https://crabravecoin.wixsite.com/home (site) /// @custom:security-contact https://t.me/CrabRaveCoin (Telegram) contract CrabRaveCoin is ERC20, Ownable { uint256 private _maxWalletSize; mapping(address => bool) private _excludedFromAntiWhale; // Constructor to initialize the contract with initial parameters constructor( string memory name, string memory symbol, uint256 initialSupply, address initialOwner ) ERC20(name, symbol) Ownable(initialOwner) { uint256 maxWalletPercentage = 3; // 3% _maxWalletSize = (initialSupply * maxWalletPercentage) / 100; _excludedFromAntiWhale[msg.sender] = true; // Owner excluded from anti-whale _mint(msg.sender, 50000000 * 10 ** decimals()); } // Modifier to restrict transactions based on wallet size modifier antiWhale(uint256 amount) { require( _excludedFromAntiWhale[msg.sender] || balanceOf(msg.sender) <= _maxWalletSize, "Max wallet size exceeded" ); _; } // Function to set maximum wallet size, only callable by the owner function setMaxWalletSize(uint256 amount) external onlyOwner { _maxWalletSize = amount; } // Function to check if an address is excluded from anti-whale mechanism function isExcludedFromAntiWhale(address account) external view returns (bool) { return _excludedFromAntiWhale[account]; } // Function to exclude an address from anti-whale mechanism, only callable by the owner function excludeFromAntiWhale(address account) external onlyOwner { _excludedFromAntiWhale[account] = true; } // Function to include an address in anti-whale mechanism, only callable by the owner function includeInAntiWhale(address account) external onlyOwner { _excludedFromAntiWhale[account] = false; } // Override transfer function to implement anti-whale mechanism function transfer(address recipient, uint256 amount) public override antiWhale(amount) returns (bool) { require( (!_excludedFromAntiWhale[msg.sender] || balanceOf(msg.sender) - amount >= 0), "Sender's balance insufficient" ); if (!_excludedFromAntiWhale[recipient]) { require( balanceOf(recipient) + amount <= _maxWalletSize, "Recipient's wallet exceeds maximum size after transfer" ); } _transfer(msg.sender, recipient, amount); return true; } // Override transferFrom function to implement anti-whale mechanism function transferFrom(address sender, address recipient, uint256 amount) public override antiWhale(amount) returns (bool) { require( (!_excludedFromAntiWhale[sender] || balanceOf(sender) - amount >= 0) && (!_excludedFromAntiWhale[recipient] || balanceOf(recipient) + amount <= _maxWalletSize), "Sender's balance insufficient or recipient's wallet exceeds maximum size" ); _transfer(sender, recipient, amount); _approve(sender, _msgSender(), allowance(sender, _msgSender()) - amount); return true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"account","type":"address"}],"name":"excludeFromAntiWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInAntiWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromAntiWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWalletSize","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"}]
Contract Creation Code
608060405234801561000f575f80fd5b5060405161252b38038061252b833981810160405281019061003191906106d3565b80848481600390816100439190610973565b5080600490816100539190610973565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100c6575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100bd9190610a51565b60405180910390fd5b6100d58161019060201b60201c565b505f60039050606481846100e99190610a97565b6100f39190610b05565b600681905550600160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506101863361016061025360201b60201c565b600a61016c9190610c70565b6302faf08061017b9190610a97565b61025b60201b60201c565b5050505050610d4a565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102cb575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102c29190610a51565b60405180910390fd5b6102dc5f83836102e060201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610330578060025f8282546103249190610cba565b925050819055506103fe565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156103b9578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103b093929190610cfc565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610445578060025f828254039250508190555061048f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104ec9190610d31565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61055882610512565b810181811067ffffffffffffffff8211171561057757610576610522565b5b80604052505050565b5f6105896104f9565b9050610595828261054f565b919050565b5f67ffffffffffffffff8211156105b4576105b3610522565b5b6105bd82610512565b9050602081019050919050565b8281835e5f83830152505050565b5f6105ea6105e58461059a565b610580565b9050828152602081018484840111156106065761060561050e565b5b6106118482856105ca565b509392505050565b5f82601f83011261062d5761062c61050a565b5b815161063d8482602086016105d8565b91505092915050565b5f819050919050565b61065881610646565b8114610662575f80fd5b50565b5f815190506106738161064f565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6106a282610679565b9050919050565b6106b281610698565b81146106bc575f80fd5b50565b5f815190506106cd816106a9565b92915050565b5f805f80608085870312156106eb576106ea610502565b5b5f85015167ffffffffffffffff81111561070857610707610506565b5b61071487828801610619565b945050602085015167ffffffffffffffff81111561073557610734610506565b5b61074187828801610619565b935050604061075287828801610665565b9250506060610763878288016106bf565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806107bd57607f821691505b6020821081036107d0576107cf610779565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026108327fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826107f7565b61083c86836107f7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61087761087261086d84610646565b610854565b610646565b9050919050565b5f819050919050565b6108908361085d565b6108a461089c8261087e565b848454610803565b825550505050565b5f90565b6108b86108ac565b6108c3818484610887565b505050565b5b818110156108e6576108db5f826108b0565b6001810190506108c9565b5050565b601f82111561092b576108fc816107d6565b610905846107e8565b81016020851015610914578190505b610928610920856107e8565b8301826108c8565b50505b505050565b5f82821c905092915050565b5f61094b5f1984600802610930565b1980831691505092915050565b5f610963838361093c565b9150826002028217905092915050565b61097c8261076f565b67ffffffffffffffff81111561099557610994610522565b5b61099f82546107a6565b6109aa8282856108ea565b5f60209050601f8311600181146109db575f84156109c9578287015190505b6109d38582610958565b865550610a3a565b601f1984166109e9866107d6565b5f5b82811015610a10578489015182556001820191506020850194506020810190506109eb565b86831015610a2d5784890151610a29601f89168261093c565b8355505b6001600288020188555050505b505050505050565b610a4b81610698565b82525050565b5f602082019050610a645f830184610a42565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610aa182610646565b9150610aac83610646565b9250828202610aba81610646565b91508282048414831517610ad157610ad0610a6a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610b0f82610646565b9150610b1a83610646565b925082610b2a57610b29610ad8565b5b828204905092915050565b5f8160011c9050919050565b5f808291508390505b6001851115610b8a57808604811115610b6657610b65610a6a565b5b6001851615610b755780820291505b8081029050610b8385610b35565b9450610b4a565b94509492505050565b5f82610ba25760019050610c5d565b81610baf575f9050610c5d565b8160018114610bc55760028114610bcf57610bfe565b6001915050610c5d565b60ff841115610be157610be0610a6a565b5b8360020a915084821115610bf857610bf7610a6a565b5b50610c5d565b5060208310610133831016604e8410600b8410161715610c335782820a905083811115610c2e57610c2d610a6a565b5b610c5d565b610c408484846001610b41565b92509050818404811115610c5757610c56610a6a565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610c7a82610646565b9150610c8583610c64565b9250610cb27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610b93565b905092915050565b5f610cc482610646565b9150610ccf83610646565b9250828201905080821115610ce757610ce6610a6a565b5b92915050565b610cf681610646565b82525050565b5f606082019050610d0f5f830186610a42565b610d1c6020830185610ced565b610d296040830184610ced565b949350505050565b5f602082019050610d445f830184610ced565b92915050565b6117d480610d575f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063bf32371911610064578063bf323719146102ae578063dd62ed3e146102ca578063ea1644d5146102fa578063f2fde38b14610316576100fe565b8063715018a6146102385780638da5cb5b1461024257806395d89b4114610260578063a9059cbb1461027e576100fe565b8063269f534c116100d1578063269f534c1461019e578063313ce567146101ce5780634c658048146101ec57806370a0823114610208576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a610332565b60405161011791906111dd565b60405180910390f35b61013a6004803603810190610135919061128e565b6103c2565b60405161014791906112e6565b60405180910390f35b6101586103e4565b604051610165919061130e565b60405180910390f35b61018860048036038101906101839190611327565b6103ed565b60405161019591906112e6565b60405180910390f35b6101b860048036038101906101b39190611377565b6105ec565b6040516101c591906112e6565b60405180910390f35b6101d661063e565b6040516101e391906113bd565b60405180910390f35b61020660048036038101906102019190611377565b610646565b005b610222600480360381019061021d9190611377565b6106a6565b60405161022f919061130e565b60405180910390f35b6102406106eb565b005b61024a6106fe565b60405161025791906113e5565b60405180910390f35b610268610726565b60405161027591906111dd565b60405180910390f35b6102986004803603810190610293919061128e565b6107b6565b6040516102a591906112e6565b60405180910390f35b6102c860048036038101906102c39190611377565b6109bb565b005b6102e460048036038101906102df91906113fe565b610a1a565b6040516102f1919061130e565b60405180910390f35b610314600480360381019061030f919061143c565b610a9c565b005b610330600480360381019061032b9190611377565b610aae565b005b60606003805461034190611494565b80601f016020809104026020016040519081016040528092919081815260200182805461036d90611494565b80156103b85780601f1061038f576101008083540402835291602001916103b8565b820191905f5260205f20905b81548152906001019060200180831161039b57829003601f168201915b5050505050905090565b5f806103cc610b32565b90506103d9818585610b39565b600191505092915050565b5f600254905090565b5f8160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061044e575060065461044b336106a6565b11155b61048d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104849061150e565b60405180910390fd5b60075f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615806104f657505f836104e9876106a6565b6104f39190611559565b10155b8015610569575060075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158061056857506006548361055b866106a6565b610565919061158c565b11155b5b6105a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059f90611655565b60405180910390fd5b6105b3858585610b4b565b6105e0856105bf610b32565b856105d1896105cc610b32565b610a1a565b6105db9190611559565b610b39565b60019150509392505050565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f6012905090565b61064e610c3b565b600160075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106f3610c3b565b6106fc5f610cc2565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461073590611494565b80601f016020809104026020016040519081016040528092919081815260200182805461076190611494565b80156107ac5780601f10610783576101008083540402835291602001916107ac565b820191905f5260205f20905b81548152906001019060200180831161078f57829003601f168201915b5050505050905090565b5f8160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806108175750600654610814336106a6565b11155b610856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084d9061150e565b60405180910390fd5b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615806108bf57505f836108b2336106a6565b6108bc9190611559565b10155b6108fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f5906116bd565b60405180910390fd5b60075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166109a55760065483610959866106a6565b610963919061158c565b11156109a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099b9061174b565b60405180910390fd5b5b6109b0338585610b4b565b600191505092915050565b6109c3610c3b565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610aa4610c3b565b8060068190555050565b610ab6610c3b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b26575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b1d91906113e5565b60405180910390fd5b610b2f81610cc2565b50565b5f33905090565b610b468383836001610d85565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bbb575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610bb291906113e5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c2b575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c2291906113e5565b60405180910390fd5b610c36838383610f54565b505050565b610c43610b32565b73ffffffffffffffffffffffffffffffffffffffff16610c616106fe565b73ffffffffffffffffffffffffffffffffffffffff1614610cc057610c84610b32565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610cb791906113e5565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610df5575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610dec91906113e5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e65575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e5c91906113e5565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610f4e578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f45919061130e565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa4578060025f828254610f98919061158c565b92505081905550611072565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561102d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161102493929190611769565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b9578060025f8282540392505081905550611103565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611160919061130e565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6111af8261116d565b6111b98185611177565b93506111c9818560208601611187565b6111d281611195565b840191505092915050565b5f6020820190508181035f8301526111f581846111a5565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61122a82611201565b9050919050565b61123a81611220565b8114611244575f80fd5b50565b5f8135905061125581611231565b92915050565b5f819050919050565b61126d8161125b565b8114611277575f80fd5b50565b5f8135905061128881611264565b92915050565b5f80604083850312156112a4576112a36111fd565b5b5f6112b185828601611247565b92505060206112c28582860161127a565b9150509250929050565b5f8115159050919050565b6112e0816112cc565b82525050565b5f6020820190506112f95f8301846112d7565b92915050565b6113088161125b565b82525050565b5f6020820190506113215f8301846112ff565b92915050565b5f805f6060848603121561133e5761133d6111fd565b5b5f61134b86828701611247565b935050602061135c86828701611247565b925050604061136d8682870161127a565b9150509250925092565b5f6020828403121561138c5761138b6111fd565b5b5f61139984828501611247565b91505092915050565b5f60ff82169050919050565b6113b7816113a2565b82525050565b5f6020820190506113d05f8301846113ae565b92915050565b6113df81611220565b82525050565b5f6020820190506113f85f8301846113d6565b92915050565b5f8060408385031215611414576114136111fd565b5b5f61142185828601611247565b925050602061143285828601611247565b9150509250929050565b5f60208284031215611451576114506111fd565b5b5f61145e8482850161127a565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806114ab57607f821691505b6020821081036114be576114bd611467565b5b50919050565b7f4d61782077616c6c65742073697a6520657863656564656400000000000000005f82015250565b5f6114f8601883611177565b9150611503826114c4565b602082019050919050565b5f6020820190508181035f830152611525816114ec565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6115638261125b565b915061156e8361125b565b92508282039050818111156115865761158561152c565b5b92915050565b5f6115968261125b565b91506115a18361125b565b92508282019050808211156115b9576115b861152c565b5b92915050565b7f53656e64657227732062616c616e636520696e73756666696369656e74206f725f8201527f20726563697069656e7427732077616c6c65742065786365656473206d61786960208201527f6d756d2073697a65000000000000000000000000000000000000000000000000604082015250565b5f61163f604883611177565b915061164a826115bf565b606082019050919050565b5f6020820190508181035f83015261166c81611633565b9050919050565b7f53656e64657227732062616c616e636520696e73756666696369656e740000005f82015250565b5f6116a7601d83611177565b91506116b282611673565b602082019050919050565b5f6020820190508181035f8301526116d48161169b565b9050919050565b7f526563697069656e7427732077616c6c65742065786365656473206d6178696d5f8201527f756d2073697a65206166746572207472616e7366657200000000000000000000602082015250565b5f611735603683611177565b9150611740826116db565b604082019050919050565b5f6020820190508181035f83015261176281611729565b9050919050565b5f60608201905061177c5f8301866113d6565b61178960208301856112ff565b61179660408301846112ff565b94935050505056fea2646970667358221220a8688cb4cf749289e8ec3138f72a01834411787a589620aa30ec979d0fff077464736f6c63430008190033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000295be96e64066972000000000000000000000000000000c7ea34e6237ffc5fd9f237891b1c29fb165839f50000000000000000000000000000000000000000000000000000000000000008437261625261766500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044352414200000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063bf32371911610064578063bf323719146102ae578063dd62ed3e146102ca578063ea1644d5146102fa578063f2fde38b14610316576100fe565b8063715018a6146102385780638da5cb5b1461024257806395d89b4114610260578063a9059cbb1461027e576100fe565b8063269f534c116100d1578063269f534c1461019e578063313ce567146101ce5780634c658048146101ec57806370a0823114610208576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a610332565b60405161011791906111dd565b60405180910390f35b61013a6004803603810190610135919061128e565b6103c2565b60405161014791906112e6565b60405180910390f35b6101586103e4565b604051610165919061130e565b60405180910390f35b61018860048036038101906101839190611327565b6103ed565b60405161019591906112e6565b60405180910390f35b6101b860048036038101906101b39190611377565b6105ec565b6040516101c591906112e6565b60405180910390f35b6101d661063e565b6040516101e391906113bd565b60405180910390f35b61020660048036038101906102019190611377565b610646565b005b610222600480360381019061021d9190611377565b6106a6565b60405161022f919061130e565b60405180910390f35b6102406106eb565b005b61024a6106fe565b60405161025791906113e5565b60405180910390f35b610268610726565b60405161027591906111dd565b60405180910390f35b6102986004803603810190610293919061128e565b6107b6565b6040516102a591906112e6565b60405180910390f35b6102c860048036038101906102c39190611377565b6109bb565b005b6102e460048036038101906102df91906113fe565b610a1a565b6040516102f1919061130e565b60405180910390f35b610314600480360381019061030f919061143c565b610a9c565b005b610330600480360381019061032b9190611377565b610aae565b005b60606003805461034190611494565b80601f016020809104026020016040519081016040528092919081815260200182805461036d90611494565b80156103b85780601f1061038f576101008083540402835291602001916103b8565b820191905f5260205f20905b81548152906001019060200180831161039b57829003601f168201915b5050505050905090565b5f806103cc610b32565b90506103d9818585610b39565b600191505092915050565b5f600254905090565b5f8160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061044e575060065461044b336106a6565b11155b61048d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104849061150e565b60405180910390fd5b60075f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615806104f657505f836104e9876106a6565b6104f39190611559565b10155b8015610569575060075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158061056857506006548361055b866106a6565b610565919061158c565b11155b5b6105a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059f90611655565b60405180910390fd5b6105b3858585610b4b565b6105e0856105bf610b32565b856105d1896105cc610b32565b610a1a565b6105db9190611559565b610b39565b60019150509392505050565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f6012905090565b61064e610c3b565b600160075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106f3610c3b565b6106fc5f610cc2565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461073590611494565b80601f016020809104026020016040519081016040528092919081815260200182805461076190611494565b80156107ac5780601f10610783576101008083540402835291602001916107ac565b820191905f5260205f20905b81548152906001019060200180831161078f57829003601f168201915b5050505050905090565b5f8160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806108175750600654610814336106a6565b11155b610856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084d9061150e565b60405180910390fd5b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615806108bf57505f836108b2336106a6565b6108bc9190611559565b10155b6108fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f5906116bd565b60405180910390fd5b60075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166109a55760065483610959866106a6565b610963919061158c565b11156109a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099b9061174b565b60405180910390fd5b5b6109b0338585610b4b565b600191505092915050565b6109c3610c3b565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610aa4610c3b565b8060068190555050565b610ab6610c3b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b26575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b1d91906113e5565b60405180910390fd5b610b2f81610cc2565b50565b5f33905090565b610b468383836001610d85565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bbb575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610bb291906113e5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c2b575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c2291906113e5565b60405180910390fd5b610c36838383610f54565b505050565b610c43610b32565b73ffffffffffffffffffffffffffffffffffffffff16610c616106fe565b73ffffffffffffffffffffffffffffffffffffffff1614610cc057610c84610b32565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610cb791906113e5565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610df5575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610dec91906113e5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e65575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e5c91906113e5565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610f4e578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f45919061130e565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa4578060025f828254610f98919061158c565b92505081905550611072565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561102d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161102493929190611769565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b9578060025f8282540392505081905550611103565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611160919061130e565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6111af8261116d565b6111b98185611177565b93506111c9818560208601611187565b6111d281611195565b840191505092915050565b5f6020820190508181035f8301526111f581846111a5565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61122a82611201565b9050919050565b61123a81611220565b8114611244575f80fd5b50565b5f8135905061125581611231565b92915050565b5f819050919050565b61126d8161125b565b8114611277575f80fd5b50565b5f8135905061128881611264565b92915050565b5f80604083850312156112a4576112a36111fd565b5b5f6112b185828601611247565b92505060206112c28582860161127a565b9150509250929050565b5f8115159050919050565b6112e0816112cc565b82525050565b5f6020820190506112f95f8301846112d7565b92915050565b6113088161125b565b82525050565b5f6020820190506113215f8301846112ff565b92915050565b5f805f6060848603121561133e5761133d6111fd565b5b5f61134b86828701611247565b935050602061135c86828701611247565b925050604061136d8682870161127a565b9150509250925092565b5f6020828403121561138c5761138b6111fd565b5b5f61139984828501611247565b91505092915050565b5f60ff82169050919050565b6113b7816113a2565b82525050565b5f6020820190506113d05f8301846113ae565b92915050565b6113df81611220565b82525050565b5f6020820190506113f85f8301846113d6565b92915050565b5f8060408385031215611414576114136111fd565b5b5f61142185828601611247565b925050602061143285828601611247565b9150509250929050565b5f60208284031215611451576114506111fd565b5b5f61145e8482850161127a565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806114ab57607f821691505b6020821081036114be576114bd611467565b5b50919050565b7f4d61782077616c6c65742073697a6520657863656564656400000000000000005f82015250565b5f6114f8601883611177565b9150611503826114c4565b602082019050919050565b5f6020820190508181035f830152611525816114ec565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6115638261125b565b915061156e8361125b565b92508282039050818111156115865761158561152c565b5b92915050565b5f6115968261125b565b91506115a18361125b565b92508282019050808211156115b9576115b861152c565b5b92915050565b7f53656e64657227732062616c616e636520696e73756666696369656e74206f725f8201527f20726563697069656e7427732077616c6c65742065786365656473206d61786960208201527f6d756d2073697a65000000000000000000000000000000000000000000000000604082015250565b5f61163f604883611177565b915061164a826115bf565b606082019050919050565b5f6020820190508181035f83015261166c81611633565b9050919050565b7f53656e64657227732062616c616e636520696e73756666696369656e740000005f82015250565b5f6116a7601d83611177565b91506116b282611673565b602082019050919050565b5f6020820190508181035f8301526116d48161169b565b9050919050565b7f526563697069656e7427732077616c6c65742065786365656473206d6178696d5f8201527f756d2073697a65206166746572207472616e7366657200000000000000000000602082015250565b5f611735603683611177565b9150611740826116db565b604082019050919050565b5f6020820190508181035f83015261176281611729565b9050919050565b5f60608201905061177c5f8301866113d6565b61178960208301856112ff565b61179660408301846112ff565b94935050505056fea2646970667358221220a8688cb4cf749289e8ec3138f72a01834411787a589620aa30ec979d0fff077464736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000295be96e64066972000000000000000000000000000000c7ea34e6237ffc5fd9f237891b1c29fb165839f50000000000000000000000000000000000000000000000000000000000000008437261625261766500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044352414200000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): CrabRave
Arg [1] : symbol (string): CRAB
Arg [2] : initialSupply (uint256): 50000000000000000000000000
Arg [3] : initialOwner (address): 0xc7EA34E6237fFc5fD9F237891b1c29FB165839F5
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000295be96e64066972000000
Arg [3] : 000000000000000000000000c7ea34e6237ffc5fd9f237891b1c29fb165839f5
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 4372616252617665000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4352414200000000000000000000000000000000000000000000000000000000
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.