+repeats the group contents below at least once:
\S+any non-whitespace character, repeated at least once
:the literal : (5810 / 728 / 3A16)
\s*any whitespace character, repeated any number of times
"the literal " (3410 / 428 / 2216)
{*the literal { (12310 / 1738 / 7B16) , repeated any number of times
Negated Character Class[^"{}]* *matches any number of characters outside the set below:
"the literal " (3410 / 428 / 2216)
{the literal { (12310 / 1738 / 7B16)
}the literal } (12510 / 1758 / 7D16)
}*the literal } (12510 / 1758 / 7D16) , repeated any number of times
"the literal " (3410 / 428 / 2216)
\s*any whitespace character, repeated any number of times
,?optionally matches the literal , (4410 / 548 / 2C16)
\s*any whitespace character, repeated any number of times