    function setMaxSellPercent(address vesting, uint256 maxSellPercent) external {
        require(SecondSwap_StepVesting(vesting).tokenIssuer() == msg.sender, "SS_VestingManager: Invalid Token Issuer");
        vestingSettings[vesting].maxSellPercent = maxSellPercent;
        emit MaxSellPercentUpdated(vesting, maxSellPercent);
    }
    function setMaxSellPercent(address vesting, uint256 maxSellPercent) external {
        require(SecondSwap_StepVesting(vesting).tokenIssuer() == msg.sender, "SS_VestingManager: Invalid Token Issuer");
+       require(maxSellPercent <= 10000, "maxSellPercent can't be more than 100%")
        vestingSettings[vesting].maxSellPercent = maxSellPercent;
        emit MaxSellPercentUpdated(vesting, maxSellPercent);
    }
