Link to the contract: https://github.com/iNovaDev87/MaxWalletTaxContract/blob/4dd2686f5c48d55b5126961a53d5225c8e982b5c/DEPLOYABLE.sol#1Description: Miscalculation of tax (L124). Risk: High - Breaks the transfer function because amount + (amount * tax%) is transferred in total. Recommendation: Change to amount * thetax() / 10000 .#2Description: SafeMath not needed. Risk: Low - Since 0.8.0, Solidity checks for over/underflows. Recommendation: Remove SafeMath.#3Description: Redundant code in _tr...