Sorry, we were unable to locate a matching Contract ABI or SourceCode for this contract. If you are the contract owner, please Verify Your Contract Source Code here

I create BEP20 or ERC20 token by using the code below in Remix IDE.

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract SUGOI is ERC20 {
    constructor() ERC20("SUGOI", "SGI") {
        _mint(msg.sender, 10000 * 10 ** decimals());
    }
}

But When checking the contract of Token in BSC Scan, the following error occurs.

I tried many times, but the result did not change.
On the other hand,it is successful in ETH Scan.

Please tell me about the cause of occurrence!!