I've been reading through the HotKeyNet samples and I have a question about toggling.

Code:
<HotKey 1-5>
	<Toggle>
		<SendLabel w1>
			<Key %Trigger%>
	<Toggle>
		<SendLabel w2>
			<Key %Trigger%>
	<Toggle>
		<SendLabel w3>
			<Key %Trigger%>
	<Toggle>
		<SendLabel w4>
			<Key %Trigger%>
	<Toggle>
		<SendLabel w5>
			<Key %Trigger%>

<HotKey 6>
	<Toggle>
		<SendLabel w1>
			<Key %Trigger%>
	<Toggle>
		<SendLabel w2>
			<Key %Trigger%>
	<Toggle>
		<SendLabel w3>
			<Key %Trigger%>
	<Toggle>
		<SendLabel w4>
			<Key %Trigger%>
	<Toggle>
		<SendLabel w5>
			<Key %Trigger%>
In the above script will 1-5 share a sequence, in other words, if I press 5 and then 3 will it send 5 to w1 and 3 to w2?
And will 6 be in its own sequence?


EDIT: I ran some tests and it doesn't seem to work that way
Each key maintains its own sequence. Pressing 5 and then 4 sends 5 to w1 and 4 to w1. Is there any way to get those keys to share the same sequence?