// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "./ERC20.sol"; contract PepeFrog is ERC20 { constructor() ERC20("WhereTheFrog", unicode"WTF", 18) { _mint(msg.sender, 2_002_002_002 * 10 ** 18); } }