ERC-20
Overview
Max Total Supply
387,624,623,331.8984072320275479 peepee
Holders
295
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,205,052,861.707002228968546665 peepeeValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Peepee
Compiler Version
v0.8.17+commit.8df45f5f
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.0; import "./Pepeable.sol"; import "./IERC721A.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; /* * @title Strings */ contract Peepee is ERC20, Pepeable { uint public MAX_SUPPLY = 420000000000 ether; uint public CLAIMABLE_TOTAL = 42000000000 ether; uint public CLAIMABLE_PER = 6026689.6254842875591907 ether; uint public TOTAL_PEEPEE_2DS = 6969; uint public MAX_BUY_LIMIT = 4200000000 ether; bool public tradingOpen = false; bool public limitEnabled = true; address public uniswapPair; mapping(uint => bool) public claimed; mapping(address => bool) public holderClaimed; mapping(address => bool) public exemptAddresses; IERC721A public pepe2d; // Claiming for 2D Owners function claim(uint[] calldata _tokenIds) external { require(tradingOpen, "Trading is not open"); require(!holderClaimed[msg.sender], "Already claimed"); uint tokensToClaim = 0; for(uint i = 0;i<_tokenIds.length;i++){ if(pepe2d.ownerOf(_tokenIds[i]) == msg.sender && !claimed[_tokenIds[i]]){ claimed[_tokenIds[i]] = true; tokensToClaim += CLAIMABLE_PER; } } require(totalSupply() + tokensToClaim <= MAX_SUPPLY, "Too many tokens minted"); holderClaimed[msg.sender] = true; _mint(msg.sender,tokensToClaim); } function setTrading(bool _status) external onlyPepe { tradingOpen = _status; } function setLimits(bool _status) external onlyPepe { limitEnabled = _status; } function setMaxBuy(uint _amount) external onlyPepe { MAX_BUY_LIMIT = _amount; } function setPair(address _ca) external onlyPepe { uniswapPair = _ca; } function setPepe2d(address _ca) external onlyPepe { pepe2d = IERC721A(_ca); } function addExemptAddress(address _address) external onlyPepe { exemptAddresses[_address] = true; } function removeExemptAddress(address _address) external onlyPepe { exemptAddresses[_address] = false; } function rescueUnclaimed() external onlyPepe { _mint(msg.sender, (MAX_SUPPLY-totalSupply())); } function getOwnedPeepees(address _holder) external view returns(uint[] memory) { uint tokenCount = pepe2d.balanceOf(_holder); if (tokenCount == 0) { // Return an empty array return new uint[](0); } else { uint[] memory result = new uint[](tokenCount); uint index; for(uint i=1;i<=TOTAL_PEEPEE_2DS;i++) { if(pepe2d.ownerOf(i) == _holder){ result[index] = i; index += 1; } } return result; } } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { if(exemptAddresses[from] || exemptAddresses[to]){ // Owner can send and receive tokens any time. }else{ require(tradingOpen, "Trading is not open"); if(limitEnabled && from == uniswapPair){ require(balanceOf(to) + amount <= MAX_BUY_LIMIT, "Cannot hold more in your wallet"); } } } constructor() ERC20("peepee", "peepee") { exemptAddresses[msg.sender] = true; pepe2d = IERC721A(0x08dbE010BF723B334ed62e3c6F2d227731806C9E); _mint(msg.sender, (MAX_SUPPLY-CLAIMABLE_TOTAL)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Context.sol"; abstract contract Pepeable is Context { address private pepe; event OwnershipTransferred(address indexed previousPepe, address indexed newPepe); constructor() { _transferPepeship(_msgSender()); } modifier onlyPepe() { _checkPepe(); _; } function owner() public view virtual returns (address) { return pepe; } function _checkPepe() internal view virtual { require(owner() == _msgSender(), "Pepeable: caller is not Pepe"); } function renouncePepeship() public virtual onlyPepe { _transferPepeship(address(0)); } function transferPepeship(address _pepe) public virtual onlyPepe { require(_pepe != address(0), "Pepeable: new owner is the zero address"); _transferPepeship(_pepe); } function _transferPepeship(address _pepe) internal virtual { address oldPepe = pepe; pepe = _pepe; emit OwnershipTransferred(oldPepe, pepe); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// 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.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousPepe","type":"address"},{"indexed":true,"internalType":"address","name":"newPepe","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":[],"name":"CLAIMABLE_PER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLAIMABLE_TOTAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BUY_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_PEEPEE_2DS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addExemptAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"exemptAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"getOwnedPeepees","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holderClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitEnabled","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":"pepe2d","outputs":[{"internalType":"contract IERC721A","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeExemptAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renouncePepeship","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueUnclaimed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ca","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ca","type":"address"}],"name":"setPepe2d","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setTrading","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":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pepe","type":"address"}],"name":"transferPepeship","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526c054d17db76321263eca00000006006556b87b595f2383509fe100000006007556a04fc337fce57d52af1c8ac600855611b396009556b0d92289838d21a9968000000600a55600b805461ffff19166101001790553480156200006657600080fd5b5060408051808201825260068082526570656570656560d01b6020808401829052845180860190955291845290830152906003620000a5838262000452565b506004620000b4828262000452565b505050620000d1620000cb6200013460201b60201c565b62000138565b336000818152600e60205260409020805460ff19166001179055600f80546001600160a01b0319167308dbe010bf723b334ed62e3c6f2d227731806c9e1790556007546006546200012e9291620001289162000534565b6200018a565b62000566565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001e65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001f4600083836200025f565b806002600082825462000208919062000550565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166000908152600e602052604090205460ff16806200029f57506001600160a01b0382166000908152600e602052604090205460ff165b620003a957600b5460ff16620002f85760405162461bcd60e51b815260206004820152601360248201527f54726164696e67206973206e6f74206f70656e000000000000000000000000006044820152606401620001dd565b600b54610100900460ff168015620003235750600b546001600160a01b038481166201000090920416145b15620003a957600a54816200034d846001600160a01b031660009081526020819052604090205490565b62000359919062000550565b1115620003a95760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f7420686f6c64206d6f726520696e20796f75722077616c6c6574006044820152606401620001dd565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003d957607f821691505b602082108103620003fa57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003a957600081815260208120601f850160051c81016020861015620004295750805b601f850160051c820191505b818110156200044a5782815560010162000435565b505050505050565b81516001600160401b038111156200046e576200046e620003ae565b62000486816200047f8454620003c4565b8462000400565b602080601f831160018114620004be5760008415620004a55750858301515b600019600386901b1c1916600185901b1785556200044a565b600085815260208120601f198616915b82811015620004ef57888601518255948401946001909101908401620004ce565b50858210156200050e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b818103818111156200054a576200054a6200051e565b92915050565b808201808211156200054a576200054a6200051e565b6115c180620005766000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80638edb562e11610125578063c85b8d1d116100ad578063dd8fbc5b1161007c578063dd8fbc5b146104a0578063e69592f9146104b3578063f53bc835146104d6578063fec4bcab146104e9578063ffb54a99146104f157600080fd5b8063c85b8d1d1461043f578063dbe7e3bd14610447578063dd62ed3e1461046a578063dd6f5c531461047d57600080fd5b8063a457c2d7116100f4578063a457c2d7146103cd578063a8720589146103e0578063a9059cbb146103f3578063b207d5b914610406578063c816841b1461042657600080fd5b80638edb562e146103965780638f70ccf71461039f57806395d89b41146103b25780639adce734146103ba57600080fd5b806339509351116101a857806370a082311161017757806370a082311461032d5780637b1c359c146103565780638187f516146103695780638c7590e01461037c5780638da5cb5b1461038557600080fd5b806339509351146102e05780636078c0f9146102f35780636ba4c138146103085780636d800a3c1461031b57600080fd5b806318160ddd116101ef57806318160ddd146102a45780631cd007b5146102ac57806323b872dd146102b5578063313ce567146102c857806332cb6b0c146102d757600080fd5b806306fdde031461022157806307bdfa871461023f578063095ea7b31461026a5780630f49a9001461028d575b600080fd5b6102296104fe565b604051610236919061127f565b60405180910390f35b600f54610252906001600160a01b031681565b6040516001600160a01b039091168152602001610236565b61027d6102783660046112e2565b610590565b6040519015158152602001610236565b61029660085481565b604051908152602001610236565b600254610296565b61029660095481565b61027d6102c336600461130e565b6105aa565b60405160128152602001610236565b61029660065481565b61027d6102ee3660046112e2565b6105ce565b61030661030136600461134f565b6105f0565b005b610306610316366004611373565b61061c565b600b5461027d90610100900460ff1681565b61029661033b36600461134f565b6001600160a01b031660009081526020819052604090205490565b61030661036436600461134f565b61088c565b61030661037736600461134f565b6108b5565b61029660075481565b6005546001600160a01b0316610252565b610296600a5481565b6103066103ad3660046113e8565b6108e7565b610229610902565b6103066103c83660046113e8565b610911565b61027d6103db3660046112e2565b610933565b6103066103ee36600461134f565b6109ae565b61027d6104013660046112e2565b6109d8565b61041961041436600461134f565b6109e6565b604051610236919061140a565b600b54610252906201000090046001600160a01b031681565b610306610b99565b61027d61045536600461144e565b600c6020526000908152604090205460ff1681565b610296610478366004611467565b610bad565b61027d61048b36600461134f565b600d6020526000908152604090205460ff1681565b6103066104ae36600461134f565b610bd8565b61027d6104c136600461134f565b600e6020526000908152604090205460ff1681565b6103066104e436600461144e565b610c52565b610306610c5f565b600b5461027d9060ff1681565b60606003805461050d906114a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610539906114a0565b80156105865780601f1061055b57610100808354040283529160200191610586565b820191906000526020600020905b81548152906001019060200180831161056957829003601f168201915b5050505050905090565b60003361059e818585610c86565b60019150505b92915050565b6000336105b8858285610daa565b6105c3858585610e24565b506001949350505050565b60003361059e8185856105e18383610bad565b6105eb91906114ea565b610c86565b6105f8610fd3565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b600b5460ff166106695760405162461bcd60e51b81526020600482015260136024820152722a3930b234b7339034b9903737ba1037b832b760691b60448201526064015b60405180910390fd5b336000908152600d602052604090205460ff16156106bb5760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4818db185a5b5959608a1b6044820152606401610660565b6000805b8281101561080457600f5433906001600160a01b0316636352211e8686858181106106ec576106ec6114fd565b905060200201356040518263ffffffff1660e01b815260040161071191815260200190565b602060405180830381865afa15801561072e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107529190611513565b6001600160a01b03161480156107985750600c6000858584818110610779576107796114fd565b602090810292909201358352508101919091526040016000205460ff16155b156107f2576001600c60008686858181106107b5576107b56114fd565b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550600854826107ef91906114ea565b91505b806107fc81611530565b9150506106bf565b506006548161081260025490565b61081c91906114ea565b11156108635760405162461bcd60e51b8152602060048201526016602482015275151bdbc81b585b9e481d1bdad95b9cc81b5a5b9d195960521b6044820152606401610660565b336000818152600d60205260409020805460ff19166001179055610887908261102d565b505050565b610894610fd3565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6108bd610fd3565b600b80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6108ef610fd3565b600b805460ff1916911515919091179055565b60606004805461050d906114a0565b610919610fd3565b600b80549115156101000261ff0019909216919091179055565b600033816109418286610bad565b9050838110156109a15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610660565b6105c38286868403610c86565b6109b6610fd3565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60003361059e818585610e24565b600f546040516370a0823160e01b81526001600160a01b0383811660048301526060926000929116906370a0823190602401602060405180830381865afa158015610a35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a599190611549565b905080600003610a79575050604080516000815260208101909152919050565b60008167ffffffffffffffff811115610a9457610a94611562565b604051908082528060200260200182016040528015610abd578160200160208202803683370190505b509050600060015b6009548111610b8957600f546040516331a9108f60e11b8152600481018390526001600160a01b03888116921690636352211e90602401602060405180830381865afa158015610b19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3d9190611513565b6001600160a01b031603610b775780838381518110610b5e57610b5e6114fd565b6020908102919091010152610b746001836114ea565b91505b80610b8181611530565b915050610ac5565b5090949350505050565b50919050565b610ba1610fd3565b610bab60006110f8565b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610be0610fd3565b6001600160a01b038116610c465760405162461bcd60e51b815260206004820152602760248201527f5065706561626c653a206e6577206f776e657220697320746865207a65726f206044820152666164647265737360c81b6064820152608401610660565b610c4f816110f8565b50565b610c5a610fd3565b600a55565b610c67610fd3565b610bab33610c7460025490565b600654610c819190611578565b61102d565b6001600160a01b038316610ce85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610660565b6001600160a01b038216610d495760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610660565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610db68484610bad565b90506000198114610e1e5781811015610e115760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610660565b610e1e8484848403610c86565b50505050565b6001600160a01b038316610e885760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610660565b6001600160a01b038216610eea5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610660565b610ef583838361114a565b6001600160a01b03831660009081526020819052604090205481811015610f6d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610660565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e1e565b6005546001600160a01b03163314610bab5760405162461bcd60e51b815260206004820152601c60248201527f5065706561626c653a2063616c6c6572206973206e6f742050657065000000006044820152606401610660565b6001600160a01b0382166110835760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610660565b61108f6000838361114a565b80600260008282546110a191906114ea565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166000908152600e602052604090205460ff168061118957506001600160a01b0382166000908152600e602052604090205460ff165b61088757600b5460ff166111d55760405162461bcd60e51b81526020600482015260136024820152722a3930b234b7339034b9903737ba1037b832b760691b6044820152606401610660565b600b54610100900460ff1680156111ff5750600b546001600160a01b038481166201000090920416145b1561088757600a5481611227846001600160a01b031660009081526020819052604090205490565b61123191906114ea565b11156108875760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f7420686f6c64206d6f726520696e20796f75722077616c6c6574006044820152606401610660565b600060208083528351808285015260005b818110156112ac57858101830151858201604001528201611290565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c4f57600080fd5b600080604083850312156112f557600080fd5b8235611300816112cd565b946020939093013593505050565b60008060006060848603121561132357600080fd5b833561132e816112cd565b9250602084013561133e816112cd565b929592945050506040919091013590565b60006020828403121561136157600080fd5b813561136c816112cd565b9392505050565b6000806020838503121561138657600080fd5b823567ffffffffffffffff8082111561139e57600080fd5b818501915085601f8301126113b257600080fd5b8135818111156113c157600080fd5b8660208260051b85010111156113d657600080fd5b60209290920196919550909350505050565b6000602082840312156113fa57600080fd5b8135801515811461136c57600080fd5b6020808252825182820181905260009190848201906040850190845b8181101561144257835183529284019291840191600101611426565b50909695505050505050565b60006020828403121561146057600080fd5b5035919050565b6000806040838503121561147a57600080fd5b8235611485816112cd565b91506020830135611495816112cd565b809150509250929050565b600181811c908216806114b457607f821691505b602082108103610b9357634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156105a4576105a46114d4565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561152557600080fd5b815161136c816112cd565b600060018201611542576115426114d4565b5060010190565b60006020828403121561155b57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b818103818111156105a4576105a46114d456fea2646970667358221220f554172420d526794991b14b94354a5105b900d8e9935f25cf8d3a5e19d69d4164736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061021c5760003560e01c80638edb562e11610125578063c85b8d1d116100ad578063dd8fbc5b1161007c578063dd8fbc5b146104a0578063e69592f9146104b3578063f53bc835146104d6578063fec4bcab146104e9578063ffb54a99146104f157600080fd5b8063c85b8d1d1461043f578063dbe7e3bd14610447578063dd62ed3e1461046a578063dd6f5c531461047d57600080fd5b8063a457c2d7116100f4578063a457c2d7146103cd578063a8720589146103e0578063a9059cbb146103f3578063b207d5b914610406578063c816841b1461042657600080fd5b80638edb562e146103965780638f70ccf71461039f57806395d89b41146103b25780639adce734146103ba57600080fd5b806339509351116101a857806370a082311161017757806370a082311461032d5780637b1c359c146103565780638187f516146103695780638c7590e01461037c5780638da5cb5b1461038557600080fd5b806339509351146102e05780636078c0f9146102f35780636ba4c138146103085780636d800a3c1461031b57600080fd5b806318160ddd116101ef57806318160ddd146102a45780631cd007b5146102ac57806323b872dd146102b5578063313ce567146102c857806332cb6b0c146102d757600080fd5b806306fdde031461022157806307bdfa871461023f578063095ea7b31461026a5780630f49a9001461028d575b600080fd5b6102296104fe565b604051610236919061127f565b60405180910390f35b600f54610252906001600160a01b031681565b6040516001600160a01b039091168152602001610236565b61027d6102783660046112e2565b610590565b6040519015158152602001610236565b61029660085481565b604051908152602001610236565b600254610296565b61029660095481565b61027d6102c336600461130e565b6105aa565b60405160128152602001610236565b61029660065481565b61027d6102ee3660046112e2565b6105ce565b61030661030136600461134f565b6105f0565b005b610306610316366004611373565b61061c565b600b5461027d90610100900460ff1681565b61029661033b36600461134f565b6001600160a01b031660009081526020819052604090205490565b61030661036436600461134f565b61088c565b61030661037736600461134f565b6108b5565b61029660075481565b6005546001600160a01b0316610252565b610296600a5481565b6103066103ad3660046113e8565b6108e7565b610229610902565b6103066103c83660046113e8565b610911565b61027d6103db3660046112e2565b610933565b6103066103ee36600461134f565b6109ae565b61027d6104013660046112e2565b6109d8565b61041961041436600461134f565b6109e6565b604051610236919061140a565b600b54610252906201000090046001600160a01b031681565b610306610b99565b61027d61045536600461144e565b600c6020526000908152604090205460ff1681565b610296610478366004611467565b610bad565b61027d61048b36600461134f565b600d6020526000908152604090205460ff1681565b6103066104ae36600461134f565b610bd8565b61027d6104c136600461134f565b600e6020526000908152604090205460ff1681565b6103066104e436600461144e565b610c52565b610306610c5f565b600b5461027d9060ff1681565b60606003805461050d906114a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610539906114a0565b80156105865780601f1061055b57610100808354040283529160200191610586565b820191906000526020600020905b81548152906001019060200180831161056957829003601f168201915b5050505050905090565b60003361059e818585610c86565b60019150505b92915050565b6000336105b8858285610daa565b6105c3858585610e24565b506001949350505050565b60003361059e8185856105e18383610bad565b6105eb91906114ea565b610c86565b6105f8610fd3565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b600b5460ff166106695760405162461bcd60e51b81526020600482015260136024820152722a3930b234b7339034b9903737ba1037b832b760691b60448201526064015b60405180910390fd5b336000908152600d602052604090205460ff16156106bb5760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4818db185a5b5959608a1b6044820152606401610660565b6000805b8281101561080457600f5433906001600160a01b0316636352211e8686858181106106ec576106ec6114fd565b905060200201356040518263ffffffff1660e01b815260040161071191815260200190565b602060405180830381865afa15801561072e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107529190611513565b6001600160a01b03161480156107985750600c6000858584818110610779576107796114fd565b602090810292909201358352508101919091526040016000205460ff16155b156107f2576001600c60008686858181106107b5576107b56114fd565b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550600854826107ef91906114ea565b91505b806107fc81611530565b9150506106bf565b506006548161081260025490565b61081c91906114ea565b11156108635760405162461bcd60e51b8152602060048201526016602482015275151bdbc81b585b9e481d1bdad95b9cc81b5a5b9d195960521b6044820152606401610660565b336000818152600d60205260409020805460ff19166001179055610887908261102d565b505050565b610894610fd3565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6108bd610fd3565b600b80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6108ef610fd3565b600b805460ff1916911515919091179055565b60606004805461050d906114a0565b610919610fd3565b600b80549115156101000261ff0019909216919091179055565b600033816109418286610bad565b9050838110156109a15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610660565b6105c38286868403610c86565b6109b6610fd3565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60003361059e818585610e24565b600f546040516370a0823160e01b81526001600160a01b0383811660048301526060926000929116906370a0823190602401602060405180830381865afa158015610a35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a599190611549565b905080600003610a79575050604080516000815260208101909152919050565b60008167ffffffffffffffff811115610a9457610a94611562565b604051908082528060200260200182016040528015610abd578160200160208202803683370190505b509050600060015b6009548111610b8957600f546040516331a9108f60e11b8152600481018390526001600160a01b03888116921690636352211e90602401602060405180830381865afa158015610b19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3d9190611513565b6001600160a01b031603610b775780838381518110610b5e57610b5e6114fd565b6020908102919091010152610b746001836114ea565b91505b80610b8181611530565b915050610ac5565b5090949350505050565b50919050565b610ba1610fd3565b610bab60006110f8565b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610be0610fd3565b6001600160a01b038116610c465760405162461bcd60e51b815260206004820152602760248201527f5065706561626c653a206e6577206f776e657220697320746865207a65726f206044820152666164647265737360c81b6064820152608401610660565b610c4f816110f8565b50565b610c5a610fd3565b600a55565b610c67610fd3565b610bab33610c7460025490565b600654610c819190611578565b61102d565b6001600160a01b038316610ce85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610660565b6001600160a01b038216610d495760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610660565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610db68484610bad565b90506000198114610e1e5781811015610e115760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610660565b610e1e8484848403610c86565b50505050565b6001600160a01b038316610e885760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610660565b6001600160a01b038216610eea5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610660565b610ef583838361114a565b6001600160a01b03831660009081526020819052604090205481811015610f6d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610660565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e1e565b6005546001600160a01b03163314610bab5760405162461bcd60e51b815260206004820152601c60248201527f5065706561626c653a2063616c6c6572206973206e6f742050657065000000006044820152606401610660565b6001600160a01b0382166110835760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610660565b61108f6000838361114a565b80600260008282546110a191906114ea565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166000908152600e602052604090205460ff168061118957506001600160a01b0382166000908152600e602052604090205460ff165b61088757600b5460ff166111d55760405162461bcd60e51b81526020600482015260136024820152722a3930b234b7339034b9903737ba1037b832b760691b6044820152606401610660565b600b54610100900460ff1680156111ff5750600b546001600160a01b038481166201000090920416145b1561088757600a5481611227846001600160a01b031660009081526020819052604090205490565b61123191906114ea565b11156108875760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f7420686f6c64206d6f726520696e20796f75722077616c6c6574006044820152606401610660565b600060208083528351808285015260005b818110156112ac57858101830151858201604001528201611290565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c4f57600080fd5b600080604083850312156112f557600080fd5b8235611300816112cd565b946020939093013593505050565b60008060006060848603121561132357600080fd5b833561132e816112cd565b9250602084013561133e816112cd565b929592945050506040919091013590565b60006020828403121561136157600080fd5b813561136c816112cd565b9392505050565b6000806020838503121561138657600080fd5b823567ffffffffffffffff8082111561139e57600080fd5b818501915085601f8301126113b257600080fd5b8135818111156113c157600080fd5b8660208260051b85010111156113d657600080fd5b60209290920196919550909350505050565b6000602082840312156113fa57600080fd5b8135801515811461136c57600080fd5b6020808252825182820181905260009190848201906040850190845b8181101561144257835183529284019291840191600101611426565b50909695505050505050565b60006020828403121561146057600080fd5b5035919050565b6000806040838503121561147a57600080fd5b8235611485816112cd565b91506020830135611495816112cd565b809150509250929050565b600181811c908216806114b457607f821691505b602082108103610b9357634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156105a4576105a46114d4565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561152557600080fd5b815161136c816112cd565b600060018201611542576115426114d4565b5060010190565b60006020828403121561155b57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b818103818111156105a4576105a46114d456fea2646970667358221220f554172420d526794991b14b94354a5105b900d8e9935f25cf8d3a5e19d69d4164736f6c63430008110033
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.