+repeats the group contents below at least once:
\r?optionally matches a carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
\d{4}a digit, repeated exactly 4 times
\.the literal . (4610 / 568 / 2E16)
\d{2}a digit, repeated exactly 2 times
\.the literal . (4610 / 568 / 2E16)
\d{2}a digit, repeated exactly 2 times
\ban ASCII word boundary
.*any character (except for line terminators), repeated any number of times