Compact version with GNU `sed`:
sed -E 'H;4!d;g;s/.*\
Explanation:
* `H` collects all lines in the hold space
* `4!d` suppresses all output except for 4th line
* At 4th line, move the hold space to the pattern space (`g`) and remove everything upto the word `mono` with the `s` command
* `:a; ... ;Ta` forms a loop appending lines with `N` until `/mono` is read