https://github.com/code-423n4/2023-10-party/blob/b23c65d62a20921c709582b0b76b387f2bb9ebb5/contracts/crowdfund/ETHCrowdfundBase.sol#L270
When processing a contribution within the  _processContribution function, ETHCrowdfundBase converts the provided ETH amount into votes with this expression:
Since votingPower is defined as uint96 and exchangeRateBps can be a number up to 10000, the multiplication can overflow the uint96 size implicitly used for evaluating the operation.
Consider using uint256 to accommodate values inflated by the product during the calculation:
