+?repeats the group contents below at least once:
^start of line
\d+a digit, repeated at least once
:the literal : (5810 / 728 / 3A16)
\d+a digit, repeated at least once
\sany whitespace character
(?s)applies the following effective flags to the remainder of the pattern: gms s modifier: single line. Allows a dot to match line terminators
.*?any character, repeated any number of times
\n{2}a line-feed (newline) character (ASCII 10), repeated exactly 2 times
Negative Lookahead(?!(?P=num)) (?P=num)the text saved by group num