Split list by boolean

Hello!

I am struggling with the following situation:

I have these lists and I would like to split them every time there is a “false”.

In other words, I would like it to be like this:

0 List
- 0 true
1 List
- 0 true
- 1 false
2 List
- 0 true
- 1 true
- 2 false
3 List
- 0 true
4 List
- 0 true
- 1 false
5 List
- 0 false

Is it possible?

It’s possible that other solutions exist, but I would do it this way:

@infeeeee Thank you so much! Worked like a charm!