<p><strong>Special binary strings</strong> are binary strings with the following two properties:</p>
<ul>
<li>The number of <code>0</code>'s is equal to the number of <code>1</code>'s.</li>
<li>Every prefix of the binary string has at least as many <code>1</code>'s as <code>0</code>'s.</li>
</ul>
<p>You are given a <strong>special binary</strong> string <code>s</code>.</p>
<p>A move consists of choosing two consecutive, non-empty, special substrings of <code>s</code>, and swapping them. Two strings are consecutive if the last character of the first string is exactly one index before the first character of the second string.</p>
<p>Return <em>the lexicographically largest resulting string possible after applying the mentioned operations on the string</em>.</p>