ERC-20
MEME
Overview
Max Total Supply
417,744,754,640,014 GrumpyCat
Holders
2,824 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH (+0.23%)
Onchain Market Cap
$115,560.31
Circulating Supply Market Cap
$108,343.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GrumpyCat
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; import "@openzeppelin/[email protected]/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./BurntGrumpyCat.sol"; contract GrumpyCat is ERC20, Ownable { using SafeMath for uint256; mapping(address => bool) private pair; bool private starting; uint256 public maxWalletTimer; uint256 public maxWallet; uint256 public airdropLimit; uint256 private start; uint256 private end; BurntGrumpyCat public burntGrumpyCat; event Airdropped(address indexed from, address indexed to, uint256 amount); constructor(uint256 _maxWalletTimer, uint256 _airdropLimit, address _CEXWallet, uint256 _end) ERC20("Grumpy Cat", "GrumpyCat") { uint256 _totalSupply = 42069 * (10 ** 10) * (10 ** decimals()); burntGrumpyCat = new BurntGrumpyCat(); starting = true; maxWallet = _totalSupply; maxWalletTimer = block.timestamp.add(_maxWalletTimer); airdropLimit = _airdropLimit; end = _end; _mint(msg.sender, ((_totalSupply * 9169) / 10000)); _mint(_CEXWallet, ((_totalSupply * 831) / 10000)); } function burn(uint256 amount) public { uint256 scaledAmount = amount * (10 ** decimals()); _burn(msg.sender, scaledAmount); burntGrumpyCat.mint(address(this), scaledAmount); } function addPair(address toPair) public onlyOwner { require(!pair[toPair], "This pair is already excluded"); pair[toPair] = true; starting = false; maxWallet = ((totalSupply() * 89) / 10000); start = block.number + 1; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); uint256 current = block.number; if(starting) { require(to == owner() || from == owner(), "Trading is not yet active"); } if(current <= start.add(end) && from != owner() && to != owner()) { uint256 send = amount.mul(1).div(100); super._transfer(from, to, send); super._transfer(from, address(this), amount.sub(send)); _burn(address(this), balanceOf(address(this))); } if(block.timestamp < maxWalletTimer && from != owner() && to != owner() && pair[from]) { uint256 balance = balanceOf(to); require(balance.add(amount) <= maxWallet, "Transfer amount exceeds maximum wallet"); super._transfer(from, to, amount); } else { super._transfer(from, to, amount); } } function _transferBatchInternal(address[] memory recipients, uint256[] memory amounts) internal { require(recipients.length == amounts.length, "Mismatched recipients and amounts."); for (uint256 i = 0; i < recipients.length; i++) { super.transfer(recipients[i], amounts[i]); } } function airdrop(address[] memory recipients, uint256[] memory amounts) external { require(recipients.length == amounts.length, "Mismatched recipients and amounts."); require(recipients.length <= airdropLimit, "Exceeded airdrop recipient limit."); uint256 totalAmount = 0; for (uint256 i = 0; i < recipients.length; i++) { address recipient = recipients[i]; uint256 amount = amounts[i]; if ( block.timestamp < maxWalletTimer && balanceOf(recipient) + amount > maxWallet ) { revert("Recipient wallet would exceed maxWalletAmount"); } totalAmount += amount; } require(balanceOf(msg.sender) >= totalAmount, "Not enough tokens in the sender's wallet."); _transferBatchInternal(recipients, amounts); for (uint256 i = 0; i < recipients.length; i++) { emit Airdropped(msg.sender, recipients[i], amounts[i]); } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; import "@openzeppelin/[email protected]/access/Ownable.sol"; contract BurntGrumpyCat is ERC20, Ownable { constructor() ERC20("Burnt Grumpy Cat", "BGC") {} function mint(address to, uint256 amount) external onlyOwner { _mint(to, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_maxWalletTimer","type":"uint256"},{"internalType":"uint256","name":"_airdropLimit","type":"uint256"},{"internalType":"address","name":"_CEXWallet","type":"address"},{"internalType":"uint256","name":"_end","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Airdropped","type":"event"},{"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":"toPair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burntGrumpyCat","outputs":[{"internalType":"contract BurntGrumpyCat","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":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletTimer","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002bda38038062002bda833981016040819052620000349162000303565b6040518060400160405280600a81526020016911dc9d5b5c1e4810d85d60b21b8152506040518060400160405280600981526020016811dc9d5b5c1e50d85d60ba1b81525081600390816200008a9190620003f5565b506004620000998282620003f5565b505050620000b6620000b06200019b60201b60201c565b6200019f565b6000620000c66012600a620005d4565b620000d99066017e9d8602b400620005e5565b9050604051620000e990620002f5565b604051809103906000f08015801562000106573d6000803e3d6000fd5b50600d80546001600160a01b0319166001600160a01b03929092169190911790556007805460ff191660011790556009819055620001454286620001f1565b600855600a849055600c8290556200017a3361271062000168846123d1620005e5565b620001749190620005ff565b62000208565b6200019083612710620001688461033f620005e5565b505050505062000638565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000620001ff828462000622565b90505b92915050565b6001600160a01b038216620002635760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000277919062000622565b90915550506001600160a01b03821660009081526020819052604081208054839290620002a690849062000622565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b610e3e8062001d9c83390190565b600080600080608085870312156200031a57600080fd5b84516020860151604087015191955093506001600160a01b03811681146200034157600080fd5b6060959095015193969295505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037c57607f821691505b6020821081036200039d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002f057600081815260208120601f850160051c81016020861015620003cc5750805b601f850160051c820191505b81811015620003ed57828155600101620003d8565b505050505050565b81516001600160401b0381111562000411576200041162000351565b620004298162000422845462000367565b84620003a3565b602080601f831160018114620004615760008415620004485750858301515b600019600386901b1c1916600185901b178555620003ed565b600085815260208120601f198616915b82811015620004925788860151825594840194600190910190840162000471565b5085821015620004b15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000518578160001904821115620004fc57620004fc620004c1565b808516156200050a57918102915b93841c9390800290620004dc565b509250929050565b600082620005315750600162000202565b81620005405750600062000202565b8160018114620005595760028114620005645762000584565b600191505062000202565b60ff841115620005785762000578620004c1565b50506001821b62000202565b5060208310610133831016604e8410600b8410161715620005a9575081810a62000202565b620005b58383620004d7565b8060001904821115620005cc57620005cc620004c1565b029392505050565b6000620001ff60ff84168362000520565b8082028115828204841417620002025762000202620004c1565b6000826200061d57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620002025762000202620004c1565b61175480620006486000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063c2b7bbb61161007c578063c2b7bbb614610279578063d65bd63a1461028c578063d97e090614610295578063dd62ed3e146102a8578063f2fde38b146102e1578063f8b45b05146102f457600080fd5b8063715018a61461021e5780638da5cb5b1461022657806395d89b411461024b578063a457c2d714610253578063a9059cbb1461026657600080fd5b806339509351116100ff57806339509351146101b15780633c775b08146101c457806342966c68146101cd57806367243482146101e257806370a08231146101f557600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d57806323b872dd1461018f578063313ce567146101a2575b600080fd5b6101446102fd565b6040516101519190611181565b60405180910390f35b61016d6101683660046111eb565b61038f565b6040519015158152602001610151565b6002545b604051908152602001610151565b61016d61019d366004611215565b6103a9565b60405160128152602001610151565b61016d6101bf3660046111eb565b6103cd565b610181600a5481565b6101e06101db366004611251565b61040c565b005b6101e06101f0366004611340565b610498565b610181610203366004611400565b6001600160a01b031660009081526020819052604090205490565b6101e0610746565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610151565b61014461077c565b61016d6102613660046111eb565b61078b565b61016d6102743660046111eb565b61081d565b6101e0610287366004611400565b61082b565b61018160085481565b600d54610233906001600160a01b031681565b6101816102b636600461141b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e06102ef366004611400565b610922565b61018160095481565b60606003805461030c9061144e565b80601f01602080910402602001604051908101604052809291908181526020018280546103389061144e565b80156103855780601f1061035a57610100808354040283529160200191610385565b820191906000526020600020905b81548152906001019060200180831161036857829003601f168201915b5050505050905090565b60003361039d8185856109bd565b60019150505b92915050565b6000336103b7858285610ae2565b6103c2858585610b6e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061039d908290869061040790879061149e565b6109bd565b600061041a6012600a611595565b61042490836115a4565b90506104303382610ddd565b600d546040516340c10f1960e01b8152306004820152602481018390526001600160a01b03909116906340c10f1990604401600060405180830381600087803b15801561047c57600080fd5b505af1158015610490573d6000803e3d6000fd5b505050505050565b80518251146104c25760405162461bcd60e51b81526004016104b9906115bb565b60405180910390fd5b600a548251111561051f5760405162461bcd60e51b815260206004820152602160248201527f45786365656465642061697264726f7020726563697069656e74206c696d69746044820152601760f91b60648201526084016104b9565b6000805b8351811015610627576000848281518110610540576105406115fd565b60200260200101519050600084838151811061055e5761055e6115fd565b60200260200101519050600854421080156105a3575060095481610597846001600160a01b031660009081526020819052604090205490565b6105a1919061149e565b115b156106065760405162461bcd60e51b815260206004820152602d60248201527f526563697069656e742077616c6c657420776f756c6420657863656564206d6160448201526c1e15d85b1b195d105b5bdd5b9d609a1b60648201526084016104b9565b610610818561149e565b93505050808061061f90611613565b915050610523565b50336000908152602081905260409020548111156106995760405162461bcd60e51b815260206004820152602960248201527f4e6f7420656e6f75676820746f6b656e7320696e207468652073656e6465722760448201526839903bb0b63632ba1760b91b60648201526084016104b9565b6106a38383610f28565b60005b8351811015610740578381815181106106c1576106c16115fd565b60200260200101516001600160a01b0316336001600160a01b03167f6338f69390e35a535a8a45841594668201ebcd1a8d9561f38ae0e589140233bf85848151811061070f5761070f6115fd565b602002602001015160405161072691815260200190565b60405180910390a38061073881611613565b9150506106a6565b50505050565b6005546001600160a01b031633146107705760405162461bcd60e51b81526004016104b99061162c565b61077a6000610fa4565b565b60606004805461030c9061144e565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156108105760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104b9565b6103c282868684036109bd565b60003361039d818585610b6e565b6005546001600160a01b031633146108555760405162461bcd60e51b81526004016104b99061162c565b6001600160a01b03811660009081526006602052604090205460ff16156108be5760405162461bcd60e51b815260206004820152601d60248201527f54686973207061697220697320616c7265616479206578636c7564656400000060448201526064016104b9565b6001600160a01b0381166000908152600660205260409020805460ff199081166001179091556007805490911690556127106108f960025490565b6109049060596115a4565b61090e9190611661565b60095561091c43600161149e565b600b5550565b6005546001600160a01b0316331461094c5760405162461bcd60e51b81526004016104b99061162c565b6001600160a01b0381166109b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104b9565b6109ba81610fa4565b50565b6001600160a01b038316610a1f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b9565b6001600160a01b038216610a805760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146107405781811015610b615760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104b9565b61074084848484036109bd565b6001600160a01b038316610b945760405162461bcd60e51b81526004016104b990611683565b6001600160a01b038216610bba5760405162461bcd60e51b81526004016104b9906116c8565b600754439060ff1615610c3c576005546001600160a01b0384811691161480610bf057506005546001600160a01b038581169116145b610c3c5760405162461bcd60e51b815260206004820152601960248201527f54726164696e67206973206e6f7420796574206163746976650000000000000060448201526064016104b9565b600c54600b54610c4b91610ff6565b8111158015610c6857506005546001600160a01b03858116911614155b8015610c8257506005546001600160a01b03848116911614155b15610cdc576000610c9f6064610c99856001611009565b90611015565b9050610cac858583611021565b610cc08530610cbb8685611175565b611021565b30600081815260208190526040902054610cda9190610ddd565b505b60085442108015610cfb57506005546001600160a01b03858116911614155b8015610d1557506005546001600160a01b03848116911614155b8015610d3957506001600160a01b03841660009081526006602052604090205460ff165b15610dd2576001600160a01b038316600090815260208190526040902054600954610d648285610ff6565b1115610dc15760405162461bcd60e51b815260206004820152602660248201527f5472616e7366657220616d6f756e742065786365656473206d6178696d756d206044820152651dd85b1b195d60d21b60648201526084016104b9565b610dcc858585611021565b50610740565b610740848484611021565b6001600160a01b038216610e3d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104b9565b6001600160a01b03821660009081526020819052604090205481811015610eb15760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104b9565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610ee090849061170b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610ad5565b505050565b8051825114610f495760405162461bcd60e51b81526004016104b9906115bb565b60005b8251811015610f2357610f91838281518110610f6a57610f6a6115fd565b6020026020010151838381518110610f8457610f846115fd565b602002602001015161081d565b5080610f9c81611613565b915050610f4c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611002828461149e565b9392505050565b600061100282846115a4565b60006110028284611661565b6001600160a01b0383166110475760405162461bcd60e51b81526004016104b990611683565b6001600160a01b03821661106d5760405162461bcd60e51b81526004016104b9906116c8565b6001600160a01b038316600090815260208190526040902054818110156110e55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104b9565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061111c90849061149e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161116891815260200190565b60405180910390a3610740565b6000611002828461170b565b600060208083528351808285015260005b818110156111ae57858101830151858201604001528201611192565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146111e657600080fd5b919050565b600080604083850312156111fe57600080fd5b611207836111cf565b946020939093013593505050565b60008060006060848603121561122a57600080fd5b611233846111cf565b9250611241602085016111cf565b9150604084013590509250925092565b60006020828403121561126357600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156112a9576112a961126a565b604052919050565b600067ffffffffffffffff8211156112cb576112cb61126a565b5060051b60200190565b600082601f8301126112e657600080fd5b813560206112fb6112f6836112b1565b611280565b82815260059290921b8401810191818101908684111561131a57600080fd5b8286015b84811015611335578035835291830191830161131e565b509695505050505050565b6000806040838503121561135357600080fd5b823567ffffffffffffffff8082111561136b57600080fd5b818501915085601f83011261137f57600080fd5b8135602061138f6112f6836112b1565b82815260059290921b840181019181810190898411156113ae57600080fd5b948201945b838610156113d3576113c4866111cf565b825294820194908201906113b3565b965050860135925050808211156113e957600080fd5b506113f6858286016112d5565b9150509250929050565b60006020828403121561141257600080fd5b611002826111cf565b6000806040838503121561142e57600080fd5b611437836111cf565b9150611445602084016111cf565b90509250929050565b600181811c9082168061146257607f821691505b60208210810361148257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103a3576103a3611488565b600181815b808511156114ec5781600019048211156114d2576114d2611488565b808516156114df57918102915b93841c93908002906114b6565b509250929050565b600082611503575060016103a3565b81611510575060006103a3565b816001811461152657600281146115305761154c565b60019150506103a3565b60ff84111561154157611541611488565b50506001821b6103a3565b5060208310610133831016604e8410600b841016171561156f575081810a6103a3565b61157983836114b1565b806000190482111561158d5761158d611488565b029392505050565b600061100260ff8416836114f4565b80820281158282048414176103a3576103a3611488565b60208082526022908201527f4d69736d61746368656420726563697069656e747320616e6420616d6f756e74604082015261399760f11b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006001820161162557611625611488565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008261167e57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156103a3576103a361148856fea2646970667358221220bc3ca7149f1941cfe62e4b5a277c57c9a4068c20d5553f84052ef7777dafb18064736f6c6343000813003360806040523480156200001157600080fd5b506040518060400160405280601081526020016f109d5c9b9d0811dc9d5b5c1e4810d85d60821b8152506040518060400160405280600381526020016242474360e81b815250816003908162000068919062000195565b50600462000077828262000195565b505050620000946200008e6200009a60201b60201c565b6200009e565b62000261565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011b57607f821691505b6020821081036200013c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019057600081815260208120601f850160051c810160208610156200016b5750805b601f850160051c820191505b818110156200018c5782815560010162000177565b5050505b505050565b81516001600160401b03811115620001b157620001b1620000f0565b620001c981620001c2845462000106565b8462000142565b602080601f831160018114620002015760008415620001e85750858301515b600019600386901b1c1916600185901b1785556200018c565b600085815260208120601f198616915b82811015620002325788860151825594840194600190910190840162000211565b5085821015620002515787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610bcd80620002716000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101eb578063a9059cbb146101fe578063dd62ed3e14610211578063f2fde38b1461024a57600080fd5b806370a0823114610197578063715018a6146101c05780638da5cb5b146101c857806395d89b41146101e357600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806340c10f191461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261025d565b60405161010f91906109e2565b60405180910390f35b61012b610126366004610a4c565b6102ef565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b61015b366004610a76565b610309565b6040516012815260200161010f565b61012b61017d366004610a4c565b61032d565b610195610190366004610a4c565b61036c565b005b61013f6101a5366004610ab2565b6001600160a01b031660009081526020819052604090205490565b6101956103ad565b6005546040516001600160a01b03909116815260200161010f565b6101026103e3565b61012b6101f9366004610a4c565b6103f2565b61012b61020c366004610a4c565b610484565b61013f61021f366004610ad4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610195610258366004610ab2565b610492565b60606003805461026c90610b07565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610b07565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b6000336102fd81858561052d565b60019150505b92915050565b600033610317858285610651565b6103228585856106e3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906102fd9082908690610367908790610b41565b61052d565b6005546001600160a01b0316331461039f5760405162461bcd60e51b815260040161039690610b62565b60405180910390fd5b6103a982826108b1565b5050565b6005546001600160a01b031633146103d75760405162461bcd60e51b815260040161039690610b62565b6103e16000610990565b565b60606004805461026c90610b07565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156104775760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610396565b610322828686840361052d565b6000336102fd8185856106e3565b6005546001600160a01b031633146104bc5760405162461bcd60e51b815260040161039690610b62565b6001600160a01b0381166105215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610396565b61052a81610990565b50565b6001600160a01b03831661058f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610396565b6001600160a01b0382166105f05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610396565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146106dd57818110156106d05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610396565b6106dd848484840361052d565b50505050565b6001600160a01b0383166107475760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610396565b6001600160a01b0382166107a95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610396565b6001600160a01b038316600090815260208190526040902054818110156108215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610396565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610858908490610b41565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108a491815260200190565b60405180910390a36106dd565b6001600160a01b0382166109075760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610396565b80600260008282546109199190610b41565b90915550506001600160a01b03821660009081526020819052604081208054839290610946908490610b41565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610a0f578581018301518582016040015282016109f3565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a4757600080fd5b919050565b60008060408385031215610a5f57600080fd5b610a6883610a30565b946020939093013593505050565b600080600060608486031215610a8b57600080fd5b610a9484610a30565b9250610aa260208501610a30565b9150604084013590509250925092565b600060208284031215610ac457600080fd5b610acd82610a30565b9392505050565b60008060408385031215610ae757600080fd5b610af083610a30565b9150610afe60208401610a30565b90509250929050565b600181811c90821680610b1b57607f821691505b602082108103610b3b57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561030357634e487b7160e01b600052601160045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea26469706673582212201cd5e5cbc68594f798f947b1066d500211c8cf8c59981b803909007b04f5f8aa64736f6c634300081300330000000000000000000000000000000000000000000000000000000000093a8000000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000b3bb4a7253dee002a3b2cea676663b0e0273a6fc0000000000000000000000000000000000000000000000000000000000000019
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063c2b7bbb61161007c578063c2b7bbb614610279578063d65bd63a1461028c578063d97e090614610295578063dd62ed3e146102a8578063f2fde38b146102e1578063f8b45b05146102f457600080fd5b8063715018a61461021e5780638da5cb5b1461022657806395d89b411461024b578063a457c2d714610253578063a9059cbb1461026657600080fd5b806339509351116100ff57806339509351146101b15780633c775b08146101c457806342966c68146101cd57806367243482146101e257806370a08231146101f557600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d57806323b872dd1461018f578063313ce567146101a2575b600080fd5b6101446102fd565b6040516101519190611181565b60405180910390f35b61016d6101683660046111eb565b61038f565b6040519015158152602001610151565b6002545b604051908152602001610151565b61016d61019d366004611215565b6103a9565b60405160128152602001610151565b61016d6101bf3660046111eb565b6103cd565b610181600a5481565b6101e06101db366004611251565b61040c565b005b6101e06101f0366004611340565b610498565b610181610203366004611400565b6001600160a01b031660009081526020819052604090205490565b6101e0610746565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610151565b61014461077c565b61016d6102613660046111eb565b61078b565b61016d6102743660046111eb565b61081d565b6101e0610287366004611400565b61082b565b61018160085481565b600d54610233906001600160a01b031681565b6101816102b636600461141b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e06102ef366004611400565b610922565b61018160095481565b60606003805461030c9061144e565b80601f01602080910402602001604051908101604052809291908181526020018280546103389061144e565b80156103855780601f1061035a57610100808354040283529160200191610385565b820191906000526020600020905b81548152906001019060200180831161036857829003601f168201915b5050505050905090565b60003361039d8185856109bd565b60019150505b92915050565b6000336103b7858285610ae2565b6103c2858585610b6e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061039d908290869061040790879061149e565b6109bd565b600061041a6012600a611595565b61042490836115a4565b90506104303382610ddd565b600d546040516340c10f1960e01b8152306004820152602481018390526001600160a01b03909116906340c10f1990604401600060405180830381600087803b15801561047c57600080fd5b505af1158015610490573d6000803e3d6000fd5b505050505050565b80518251146104c25760405162461bcd60e51b81526004016104b9906115bb565b60405180910390fd5b600a548251111561051f5760405162461bcd60e51b815260206004820152602160248201527f45786365656465642061697264726f7020726563697069656e74206c696d69746044820152601760f91b60648201526084016104b9565b6000805b8351811015610627576000848281518110610540576105406115fd565b60200260200101519050600084838151811061055e5761055e6115fd565b60200260200101519050600854421080156105a3575060095481610597846001600160a01b031660009081526020819052604090205490565b6105a1919061149e565b115b156106065760405162461bcd60e51b815260206004820152602d60248201527f526563697069656e742077616c6c657420776f756c6420657863656564206d6160448201526c1e15d85b1b195d105b5bdd5b9d609a1b60648201526084016104b9565b610610818561149e565b93505050808061061f90611613565b915050610523565b50336000908152602081905260409020548111156106995760405162461bcd60e51b815260206004820152602960248201527f4e6f7420656e6f75676820746f6b656e7320696e207468652073656e6465722760448201526839903bb0b63632ba1760b91b60648201526084016104b9565b6106a38383610f28565b60005b8351811015610740578381815181106106c1576106c16115fd565b60200260200101516001600160a01b0316336001600160a01b03167f6338f69390e35a535a8a45841594668201ebcd1a8d9561f38ae0e589140233bf85848151811061070f5761070f6115fd565b602002602001015160405161072691815260200190565b60405180910390a38061073881611613565b9150506106a6565b50505050565b6005546001600160a01b031633146107705760405162461bcd60e51b81526004016104b99061162c565b61077a6000610fa4565b565b60606004805461030c9061144e565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156108105760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104b9565b6103c282868684036109bd565b60003361039d818585610b6e565b6005546001600160a01b031633146108555760405162461bcd60e51b81526004016104b99061162c565b6001600160a01b03811660009081526006602052604090205460ff16156108be5760405162461bcd60e51b815260206004820152601d60248201527f54686973207061697220697320616c7265616479206578636c7564656400000060448201526064016104b9565b6001600160a01b0381166000908152600660205260409020805460ff199081166001179091556007805490911690556127106108f960025490565b6109049060596115a4565b61090e9190611661565b60095561091c43600161149e565b600b5550565b6005546001600160a01b0316331461094c5760405162461bcd60e51b81526004016104b99061162c565b6001600160a01b0381166109b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104b9565b6109ba81610fa4565b50565b6001600160a01b038316610a1f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b9565b6001600160a01b038216610a805760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146107405781811015610b615760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104b9565b61074084848484036109bd565b6001600160a01b038316610b945760405162461bcd60e51b81526004016104b990611683565b6001600160a01b038216610bba5760405162461bcd60e51b81526004016104b9906116c8565b600754439060ff1615610c3c576005546001600160a01b0384811691161480610bf057506005546001600160a01b038581169116145b610c3c5760405162461bcd60e51b815260206004820152601960248201527f54726164696e67206973206e6f7420796574206163746976650000000000000060448201526064016104b9565b600c54600b54610c4b91610ff6565b8111158015610c6857506005546001600160a01b03858116911614155b8015610c8257506005546001600160a01b03848116911614155b15610cdc576000610c9f6064610c99856001611009565b90611015565b9050610cac858583611021565b610cc08530610cbb8685611175565b611021565b30600081815260208190526040902054610cda9190610ddd565b505b60085442108015610cfb57506005546001600160a01b03858116911614155b8015610d1557506005546001600160a01b03848116911614155b8015610d3957506001600160a01b03841660009081526006602052604090205460ff165b15610dd2576001600160a01b038316600090815260208190526040902054600954610d648285610ff6565b1115610dc15760405162461bcd60e51b815260206004820152602660248201527f5472616e7366657220616d6f756e742065786365656473206d6178696d756d206044820152651dd85b1b195d60d21b60648201526084016104b9565b610dcc858585611021565b50610740565b610740848484611021565b6001600160a01b038216610e3d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104b9565b6001600160a01b03821660009081526020819052604090205481811015610eb15760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104b9565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610ee090849061170b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610ad5565b505050565b8051825114610f495760405162461bcd60e51b81526004016104b9906115bb565b60005b8251811015610f2357610f91838281518110610f6a57610f6a6115fd565b6020026020010151838381518110610f8457610f846115fd565b602002602001015161081d565b5080610f9c81611613565b915050610f4c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611002828461149e565b9392505050565b600061100282846115a4565b60006110028284611661565b6001600160a01b0383166110475760405162461bcd60e51b81526004016104b990611683565b6001600160a01b03821661106d5760405162461bcd60e51b81526004016104b9906116c8565b6001600160a01b038316600090815260208190526040902054818110156110e55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104b9565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061111c90849061149e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161116891815260200190565b60405180910390a3610740565b6000611002828461170b565b600060208083528351808285015260005b818110156111ae57858101830151858201604001528201611192565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146111e657600080fd5b919050565b600080604083850312156111fe57600080fd5b611207836111cf565b946020939093013593505050565b60008060006060848603121561122a57600080fd5b611233846111cf565b9250611241602085016111cf565b9150604084013590509250925092565b60006020828403121561126357600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156112a9576112a961126a565b604052919050565b600067ffffffffffffffff8211156112cb576112cb61126a565b5060051b60200190565b600082601f8301126112e657600080fd5b813560206112fb6112f6836112b1565b611280565b82815260059290921b8401810191818101908684111561131a57600080fd5b8286015b84811015611335578035835291830191830161131e565b509695505050505050565b6000806040838503121561135357600080fd5b823567ffffffffffffffff8082111561136b57600080fd5b818501915085601f83011261137f57600080fd5b8135602061138f6112f6836112b1565b82815260059290921b840181019181810190898411156113ae57600080fd5b948201945b838610156113d3576113c4866111cf565b825294820194908201906113b3565b965050860135925050808211156113e957600080fd5b506113f6858286016112d5565b9150509250929050565b60006020828403121561141257600080fd5b611002826111cf565b6000806040838503121561142e57600080fd5b611437836111cf565b9150611445602084016111cf565b90509250929050565b600181811c9082168061146257607f821691505b60208210810361148257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103a3576103a3611488565b600181815b808511156114ec5781600019048211156114d2576114d2611488565b808516156114df57918102915b93841c93908002906114b6565b509250929050565b600082611503575060016103a3565b81611510575060006103a3565b816001811461152657600281146115305761154c565b60019150506103a3565b60ff84111561154157611541611488565b50506001821b6103a3565b5060208310610133831016604e8410600b841016171561156f575081810a6103a3565b61157983836114b1565b806000190482111561158d5761158d611488565b029392505050565b600061100260ff8416836114f4565b80820281158282048414176103a3576103a3611488565b60208082526022908201527f4d69736d61746368656420726563697069656e747320616e6420616d6f756e74604082015261399760f11b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006001820161162557611625611488565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008261167e57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156103a3576103a361148856fea2646970667358221220bc3ca7149f1941cfe62e4b5a277c57c9a4068c20d5553f84052ef7777dafb18064736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000093a8000000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000b3bb4a7253dee002a3b2cea676663b0e0273a6fc0000000000000000000000000000000000000000000000000000000000000019
-----Decoded View---------------
Arg [0] : _maxWalletTimer (uint256): 604800
Arg [1] : _airdropLimit (uint256): 500
Arg [2] : _CEXWallet (address): 0xb3bB4A7253DEe002a3b2cEa676663B0e0273A6fC
Arg [3] : _end (uint256): 25
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000093a80
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [2] : 000000000000000000000000b3bb4a7253dee002a3b2cea676663b0e0273a6fc
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000019
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.