Submitted by hash
Whenever minting/burning, if the netLiquidity and amountToCollect are non-zero, the premia calculation is invoked. 
https://github.com/code-423n4/2023-11-panoptic/blob/main/contracts/SemiFungiblePositionManager.sol#L1217
In case the removedLiquidity is high and the netLiquidity is extremely low, the calculation in _getPremiaDeltas will revert since the calculated amount cannot be cast to uint128. 
https://github.com/code-423n4/2023-11-panoptic/blob/main/contracts/SemiFungiblePositionManager.sol#L1280-L1285
This can be affected in the following ways:
Set fork_block_number = 18706858 and run forge test --mt testHash_PremiaRevertDueToLowNetHighLiquidity.
For dust accrual POC run: forge test --mt testHash_DustLiquidityAmount
Modify the premia calculation or use uint256 for storing premia.
DoS
dyedm1 (Panoptic) confirmed and commented:
Picodes (judge) commented:
dyedm1 (Panoptic) commented:
osmanozdemir1 (warden) commented:
Picodes (judge) decreased severity to Medium and commented:
