Can't verify my contract BSCSCAM

I get the File import error, this is the code i have for my contract

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract Sloth is ERC20 {
constructor(uint256 initialSupply) public ERC20 ("Sloth", "STH"){
_mint(msg.sender,initialSupply);
}
}

And this is the ADDRESS
0xfd8109456571028cfd297725772760146bf9d465

Hi, welcome! :wave:

Sorry, I am not familiar with the BSC-Chain, maybe you should ask for help in their forum: Home | Binance Chain Forum

And they have a documentation about how to verify contracts, maybe you can have a look at it:

Verified!