Discuss Scratch
- scheeepchit_remix
-
Scratcher
1000+ posts
Editor+ Discussion Forum
I believe that I should make a new forum to discuss the Editor+ beta, so that the other Forums don't get cluttered.
One suggestion from me is to add this:
This makes it so you don't need to type in “H” and set the rotation angle every time to you reload the project.
Another suggestion from me is slightly modify one piece of code in the Editor sprite:
I believe this:
One suggestion from me is to add this:
when green flag clicked
set [Rotation Angle v] to [1]
This makes it so you don't need to type in “H” and set the rotation angle every time to you reload the project.
Another suggestion from me is slightly modify one piece of code in the Editor sprite:
when green flag clicked
forever
if <key [h v] pressed?> then
ask [Set Rotation Angle:] and wait
if <not <(answer) > [90]>> then
set [Rotation Angle v] to ((answer) / (90))
set [Previous Rotation Angle v] to (Rotation Angle)
show variable [Message v]
set [Message v] to (join [Rotation Angle has been set to] (join ((Rotation Angle) / (90)) [Degrees]))
wait (4) secs
hide variable [Message v]
else
set [Rotation Angle v] to (Previous Rotation Angle)
show variable [Message v]
set [Message v] to [Must be <90 degrees]
wait (4) secs
hide variable [Message v]
end
end
end
I believe this:
(() / (90))should make it much easier for Scratchers new to Appel to understand what Rotation Angle means.
- scheeepchit_remix
-
Scratcher
1000+ posts
Editor+ Discussion Forum
I can make 9 levels, each showcasing a feature of the Editor+, to replace the main levels, if that is what you want btw
- Transrights_OP
-
Scratcher
100+ posts
Editor+ Discussion Forum
I can make 9 levels, each showcasing a feature of the Editor+, to replace the main levels, if that is what you want btw
Okay. But I removed the main levels, so It's going to be tricky to add them back (The level Select)
I'll see if I can re-add the level select button back. I'll let you know once it's done
Last edited by Transrights_OP (Aug. 6, 2022 09:10:45)
- scheeepchit_remix
-
Scratcher
1000+ posts
Editor+ Discussion Forum
That would be great, thank you!I can make 9 levels, each showcasing a feature of the Editor+, to replace the main levels, if that is what you want btw
Okay. But I removed the main levels, so It's going to be tricky to add them back (The level Select)
I'll see if I can re-add the level select button back. I'll let you know once it's done
As a side note: thanks for implementing my suggestions! :]
Last edited by scheeepchit_remix (Aug. 6, 2022 09:49:37)
- scheeepchit_remix
-
Scratcher
1000+ posts
Editor+ Discussion Forum
Wait, you implemented the other secret blocks using the 9 key? That's amazing!
There is still the strange BIG block, but no one is going to use that weird block for anything…
There is still the strange BIG block, but no one is going to use that weird block for anything…
- Transrights_OP
-
Scratcher
100+ posts
Editor+ Discussion Forum
Wait, you implemented the other secret blocks using the 9 key? That's amazing!
There is still the strange BIG block, but no one is going to use that weird block for anything…
I think the BIG block is unobtainable.
But the real Question is: What is the BIG block used for?
Last edited by Transrights_OP (Aug. 6, 2022 10:16:27)
- scheeepchit_remix
-
Scratcher
1000+ posts
Editor+ Discussion Forum
most likely to allow a normal block to go half-offscreenWait, you implemented the other secret blocks using the 9 key? That's amazing!
There is still the strange BIG block, but no one is going to use that weird block for anything…
I think the BIG block is unobtainable.
But the real Question is: What is the BIG block used for?
the normal block size can only go up to x256, but by switching costume to BIG, moving it to the correct place, and quickly switching back before the human eye notices (using “run without screen refresh”), which allows the normal block to be in the correct position up to x281, where it would be off-screen.
- Transrights_OP
-
Scratcher
100+ posts
Editor+ Discussion Forum
most likely to allow a normal block to go half-offscreenWait, you implemented the other secret blocks using the 9 key? That's amazing!
There is still the strange BIG block, but no one is going to use that weird block for anything…
I think the BIG block is unobtainable.
But the real Question is: What is the BIG block used for?
the normal block size can only go up to x256, but by switching costume to BIG, moving it to the correct place, and quickly switching back before the human eye notices (using “run without screen refresh”), which allows the normal block to be in the correct position up to x281, where it would be off-screen.
Oh, I get that now, Weird thing that when you rotate the Human eye block 45 degrees, it becomes cursed
- cwktao15764
-
Scratcher
1000+ posts
Editor+ Discussion Forum
I believe that I should make a new forum to discuss the Editor+ beta, so that the other Forums don't get cluttered.its point in dir (refrence val)*90
One suggestion from me is to add this:when green flag clicked
set [Rotation Angle v] to [1]
This makes it so you don't need to type in “H” and set the rotation angle every time to you reload the project.
Another suggestion from me is slightly modify one piece of code in the Editor sprite:when green flag clicked
forever
if <key [h v] pressed?> then
ask [Set Rotation Angle:] and wait
if <not <(answer) > [90]>> then
set [Rotation Angle v] to ((answer) / (90))
set [Previous Rotation Angle v] to (Rotation Angle)
show variable [Message v]
set [Message v] to (join [Rotation Angle has been set to] (join ((Rotation Angle) / (90)) [Degrees]))
wait (4) secs
hide variable [Message v]
else
set [Rotation Angle v] to (Previous Rotation Angle)
show variable [Message v]
set [Message v] to [Must be <90 degrees]
wait (4) secs
hide variable [Message v]
end
end
end
I believe this:(() / (90))should make it much easier for Scratchers new to Appel to understand what Rotation Angle means.
- scheeepchit_remix
-
Scratcher
1000+ posts
Editor+ Discussion Forum
i know, but having it multiplied by 90 for you makes it easier to visualizeI believe that I should make a new forum to discuss the Editor+ beta, so that the other Forums don't get cluttered.its point in dir (refrence val)*90
One suggestion from me is to add this:when green flag clicked
set [Rotation Angle v] to [1]
This makes it so you don't need to type in “H” and set the rotation angle every time to you reload the project.
Another suggestion from me is slightly modify one piece of code in the Editor sprite:when green flag clicked
forever
if <key [h v] pressed?> then
ask [Set Rotation Angle:] and wait
if <not <(answer) > [90]>> then
set [Rotation Angle v] to ((answer) / (90))
set [Previous Rotation Angle v] to (Rotation Angle)
show variable [Message v]
set [Message v] to (join [Rotation Angle has been set to] (join ((Rotation Angle) / (90)) [Degrees]))
wait (4) secs
hide variable [Message v]
else
set [Rotation Angle v] to (Previous Rotation Angle)
show variable [Message v]
set [Message v] to [Must be <90 degrees]
wait (4) secs
hide variable [Message v]
end
end
end
I believe this:(() / (90))should make it much easier for Scratchers new to Appel to understand what Rotation Angle means.
- Transrights_OP
-
Scratcher
100+ posts
Editor+ Discussion Forum
Appel Editor+ – Updates:
Okay, So here's what I've done so far :
— Made it so that the game detects whether you're using scratch or turbowarp (You can still Play on scratch once the project gets released)
— You can now press L to change the background color
You can also Press B to change the color of the blocks. Type Inf for Grayscale.
— Press 9 to get access to the secret blocks (Thanks to @cwktao15764 for telling me how to get access to those blocks)
— Changed the rotate angle feature, You can now set an input up to 90 now(Suggested By scheeepchit_remix), and you can no longer set a negative input.
— You no longer needed to press H to set the rotate angle when you reload the game.
— You now need to press i + B to open Direct Settings and C + B to close direct settings.
2 more days before it gets released!
Okay, So here's what I've done so far :
— Made it so that the game detects whether you're using scratch or turbowarp (You can still Play on scratch once the project gets released)
— You can now press L to change the background color
You can also Press B to change the color of the blocks. Type Inf for Grayscale.
— Press 9 to get access to the secret blocks (Thanks to @cwktao15764 for telling me how to get access to those blocks)
— Changed the rotate angle feature, You can now set an input up to 90 now(Suggested By scheeepchit_remix), and you can no longer set a negative input.
— You no longer needed to press H to set the rotate angle when you reload the game.
— You now need to press i + B to open Direct Settings and C + B to close direct settings.
2 more days before it gets released!
Last edited by Transrights_OP (Aug. 7, 2022 09:04:48)
- scheeepchit_remix
-
Scratcher
1000+ posts
Editor+ Discussion Forum
Appel Editor+ – Updates:Why is there a broken feature when you press the 0 key? It appears to do the same function as when you press B, but broken.
Okay, So here's what I've done so far :
— Made it so that the game detects whether you're using scratch or turbowarp (You can still Play on scratch once the project gets released)
— You can now press L to change the background color
You can also Press B to change the color of the blocks. Type Inf for Grayscale.
— Press 9 to get access to the secret blocks (Thanks to @cwktao15764 for telling me how to get access to those blocks)
— Changed the rotate angle feature, You can now set an input up to 90 now(Suggested By scheeepchit_remix), and you can no longer set a negative input.
— You no longer needed to press H to set the rotate angle when you reload the game.
— You now need to press i + B to open Direct Settings and C + B to close direct settings.
2 more days before it gets released!
Ooh, you optimized the Rotation Angle! One suggestion there though, when you share the project, set the Rotation Angle to 90 just before you share the project, so when I refresh the page and rotate something I don't accidentally rotate it 35 degrees.
I also suggest adding this:
when green flag clicked
set [varshow v] to [0]
and condensing the Toggle Direct Settings Show/Hide to this:
when [o v] key pressed
if <key [i v] pressed?> then
if <(varshow) = [0]> then
show variable [HUE Var v]
show variable [HUE Var: Background v]
show variable [Rotation Angle v]
set [varshow v] to [1]
stop [this script v]
else
hide variable [HUE Var v]
hide variable [HUE Var: Background v]
hide variable [Rotation Angle v]
set [varshow v] to [0]
stop [this script v]
end
else
end
The reason I suggest changing I+B and C+B into I+O is because B is already used for changing Background colour.
- Transrights_OP
-
Scratcher
100+ posts
Editor+ Discussion Forum
Appel Editor+ – Updates:Why is there a broken feature when you press the 0 key? It appears to do the same function as when you press B, but broken.
Okay, So here's what I've done so far :
— Made it so that the game detects whether you're using scratch or turbowarp (You can still Play on scratch once the project gets released)
— You can now press L to change the background color
You can also Press B to change the color of the blocks. Type Inf for Grayscale.
— Press 9 to get access to the secret blocks (Thanks to @cwktao15764 for telling me how to get access to those blocks)
— Changed the rotate angle feature, You can now set an input up to 90 now(Suggested By scheeepchit_remix), and you can no longer set a negative input.
— You no longer needed to press H to set the rotate angle when you reload the game.
— You now need to press i + B to open Direct Settings and C + B to close direct settings.
2 more days before it gets released!
Ooh, you optimized the Rotation Angle! One suggestion there though, when you share the project, set the Rotation Angle to 90 just before you share the project, so when I refresh the page and rotate something I don't accidentally rotate it 35 degrees.
I also suggest adding this:when green flag clicked
set [varshow v] to [0]
and condensing the Toggle Direct Settings Show/Hide to this:when [o v] key pressed
if <key [i v] pressed?> then
if <(varshow) = [0]> then
show variable [HUE Var v]
show variable [HUE Var: Background v]
show variable [Rotation Angle v]
set [varshow v] to [1]
stop [this script v]
else
hide variable [HUE Var v]
hide variable [HUE Var: Background v]
hide variable [Rotation Angle v]
set [varshow v] to [0]
stop [this script v]
end
else
end
The reason I suggest changing I+B and C+B into I+O is because B is already used for changing Background colour.
Done. I had to modify the code you suggested because yesterday, I had added the “Is TurboWarp?” Block in the editor (It's not a hacked block. it was created by GarboMuffin, the player that created TurboWarp.) so that it can detect whether you are in TurboWarp or not.
Also i will try to remove the broken feature, I didn't realize it till now.
Last edited by Transrights_OP (Aug. 7, 2022 15:56:35)
- scheeepchit_remix
-
Scratcher
1000+ posts
Editor+ Discussion Forum
Thank you for responding so quickly and making changes! ^_^Appel Editor+ – Updates:Why is there a broken feature when you press the 0 key? It appears to do the same function as when you press B, but broken.
Okay, So here's what I've done so far :
— Made it so that the game detects whether you're using scratch or turbowarp (You can still Play on scratch once the project gets released)
— You can now press L to change the background color
You can also Press B to change the color of the blocks. Type Inf for Grayscale.
— Press 9 to get access to the secret blocks (Thanks to @cwktao15764 for telling me how to get access to those blocks)
— Changed the rotate angle feature, You can now set an input up to 90 now(Suggested By scheeepchit_remix), and you can no longer set a negative input.
— You no longer needed to press H to set the rotate angle when you reload the game.
— You now need to press i + B to open Direct Settings and C + B to close direct settings.
2 more days before it gets released!
Ooh, you optimized the Rotation Angle! One suggestion there though, when you share the project, set the Rotation Angle to 90 just before you share the project, so when I refresh the page and rotate something I don't accidentally rotate it 35 degrees.
I also suggest adding this:when green flag clicked
set [varshow v] to [0]
and condensing the Toggle Direct Settings Show/Hide to this:when [o v] key pressed
if <key [i v] pressed?> then
if <(varshow) = [0]> then
show variable [HUE Var v]
show variable [HUE Var: Background v]
show variable [Rotation Angle v]
set [varshow v] to [1]
stop [this script v]
else
hide variable [HUE Var v]
hide variable [HUE Var: Background v]
hide variable [Rotation Angle v]
set [varshow v] to [0]
stop [this script v]
end
else
end
The reason I suggest changing I+B and C+B into I+O is because B is already used for changing Background colour.
Done. I had to modify the code you suggested because yesterday, I had added the “Is TurboWarp?” Block in the editor (It's not a hacked block. it was created by GarboMuffin, the player that created TurboWarp.) so that it can detect whether you are in TurboWarp or not.
Also i will try to remove the broken feature, I didn't realize it till now.
You can right-click on the Sliders for HUE Var and HUE Var: Background to edit the slider range to 0-200, but with the B and L feature this change is probably optional.
The “Is TurboWarp?” function is pretty cool, I think that GarboMuffin also made an “Is Forkphorus?” function, but there is no reason to use forkphorus unless TurboWarp is somehow blocked or inaccessible on one's device.
- LandonHarter
-
Scratcher
1000+ posts
Editor+ Discussion Forum
Suggestion: after changing the background color, broadcast setup - background so that the background color visually changes without having to restart the project.
- scheeepchit_remix
-
Scratcher
1000+ posts
Editor+ Discussion Forum
Suggestion: after changing the background color, broadcast setup - background so that the background color visually changes without having to restart the project.Ooh, that would be nice
- LandonHarter
-
Scratcher
1000+ posts
Editor+ Discussion Forum
Keep in mind that I haven't actually tested if the setup - background broadcast would fix the problem, but, judging from the code, it probably would.Suggestion: after changing the background color, broadcast setup - background so that the background color visually changes without having to restart the project.Ooh, that would be nice
EDIT: Tested it. It worked.
Last edited by LandonHarter (Aug. 13, 2022 19:18:26)
- cwktao15764
-
Scratcher
1000+ posts
Editor+ Discussion Forum
i already did that for my 1-upKeep in mind that I haven't actually tested if the setup - background broadcast would fix the problem, but, judging from the code, it probably would.Suggestion: after changing the background color, broadcast setup - background so that the background color visually changes without having to restart the project.Ooh, that would be nice
EDIT: Tested it. It worked.
- scheeepchit_remix
-
Scratcher
1000+ posts
Editor+ Discussion Forum
since editor+ is now shared, let me post my own stuff here (no replays pls)
1245673196Z21Z2Z20Z1Z21Z1Z20Z1Z21Z13Z4Z1Z7Z1Z4Z2Z7Z1Z4Z1Z21Z1Z20Z1Z21Z1Z20Z1Z21Z9Z42Z1Z21Z4Z2Z154Z21Z2Z20Z1Z21Z1Z20Z1Z21Z13Z1Z2Z77Z1Z78Z1Z71Z1Z15Z1Z21Z1Z20Z1Z79Z4Z1Z1Z9Z3Z1Z1Z9Z2Z1Z1Z21Z4Z2Z154Z21Z2Z20Z1Z21Z1Z20Z1Z21Z7Z20Z1Z21Z5Z79Z1Z21Z6Z20Z1Z79Z1Z20Z1Z21Z2Z1Z8Z21Z4Z2Z154Z21Z2Z20Z1Z79Z1Z78Z1Z77Z1Z78Z1Z9Z1Z77Z1Z78Z1Z9Z1Z78Z1Z71Z1Z70Z1Z21Z4Z79Z1Z21Z6Z20Z1Z79Z1Z20Z1Z21Z2Z1Z1Z9Z3Z1Z1Z7Z2Z71Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z1Z79Z3Z81Z1Z79Z3Z21Z3Z79Z3Z20Z1Z21Z2Z42Z3Z20Z1Z79Z1Z20Z1Z21Z2Z1Z1Z3Z1Z21Z1Z3Z1Z1Z1Z13Z2Z15Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z1Z20Z3Z21Z1Z20Z2Z21Z4Z79Z1Z21Z2Z4Z1Z25Z1Z1Z5Z13Z1Z21Z10Z79Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z10Z20Z1Z79Z2Z4Z1Z1Z6Z13Z1Z21Z11Z79Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z12Z4Z1Z1Z6Z13Z1Z21Z1Z42Z1Z21Z2Z20Z6Z21Z2Z79Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z11Z4Z1Z1Z2Z24Z1Z21Z1Z24Z1Z1Z3Z16Z1Z1Z2Z5Z1Z79Z6Z1Z1Z51Z1Z1Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z3Z4Z1Z50Z7Z16Z1Z1Z2Z24Z1Z81Z1Z24Z1Z1Z3Z16Z1Z1Z2Z21Z1Z20Z6Z1Z1Z82Z1Z1Z1Z21Z17Z1Z141Z76Z1Z71Z1Z78Z1Z79Z1Z77Z1Z1Z1Z78Z1Z21Z1Z77Z1Z5Z1Z4Z1Z5Z1Z4Z1Z1Z1Z4Z1Z5Z1Z16Z1Z1Z2Z24Z1Z81Z1Z4Z1Z1Z2Z77Z1Z7Z1Z1Z1Z7Z1Z21Z27Z1Z141Z71Z1Z1Z2Z7Z1Z1Z1Z83Z1Z1Z1Z7Z1Z1Z1Z4Z1Z5Z1Z4Z1Z1Z1Z5Z1Z1Z1Z5Z1Z16Z1Z1Z2Z24Z1Z81Z1Z4Z1Z1Z2Z71Z1Z4Z1Z1Z1Z4Z1Z21Z1Z9Z2Z42Z1Z9Z2Z21Z21Z1Z145Z77Z1Z21Z1Z78Z1Z1Z2Z5Z1Z4Z1Z5Z1Z1Z2Z5Z2Z16Z1Z1Z2Z24Z1Z81Z2Z5Z1Z71Z1Z15Z1Z4Z1Z1Z2Z25Z1Z1Z4Z7Z1Z21Z7Z42Z1Z1Z1Z78Z1Z9Z3Z71Z1Z1Z1Z8Z1Z1Z1Z21Z4Z1Z141Z21Z13Z20Z1Z79Z1Z20Z1Z21Z5Z81Z1Z21Z1Z5Z1Z13Z1Z4Z1Z1Z6Z9Z1Z21Z9Z1Z5Z71Z1Z8Z1Z15Z1Z8Z1Z21Z4Z1Z141Z21Z13Z20Z1Z79Z1Z20Z1Z21Z5Z81Z1Z20Z1Z79Z4Z20Z1Z21Z2Z7Z1Z1Z1Z7Z1Z21Z1Z23Z1Z21Z7Z1Z5Z71Z1Z1Z1Z8Z1Z1Z1Z21Z4Z1Z141Z20Z1Z21Z3Z20Z1Z21Z8Z20Z1Z79Z1Z20Z1Z21Z5Z81Z1Z20Z6Z21Z2Z9Z1Z1Z1Z7Z1Z21Z1Z23Z1Z21Z1Z42Z1Z21Z5Z1Z1Z77Z1Z9Z3Z71Z1Z1Z3Z21Z4Z1Z141Z81Z1Z79Z4Z25Z1Z8Z1Z71Z1Z23Z1Z1Z1Z77Z1Z78Z1Z1Z1Z77Z1Z72Z1Z9Z1Z78Z1Z77Z1Z9Z1Z78Z1Z1Z1Z4Z1Z20Z1Z21Z3Z1Z7Z25Z1Z1Z4Z21Z4Z79Z1Z21Z15Z1Z138Z81Z2Z21Z2Z20Z1Z8Z1Z85Z1Z8Z1Z23Z1Z1Z1Z78Z1Z77Z1Z1Z1Z78Z1Z1Z1Z9Z1Z77Z1Z78Z1Z9Z1Z77Z1Z1Z1Z4Z1Z20Z1Z21Z3Z34Z1Z4Z1Z5Z1Z1Z1Z13Z3Z1Z1Z4Z1Z9Z1Z1Z1Z9Z1Z21Z4Z79Z1Z21Z15Z1Z138Z81Z2Z20Z1Z79Z2Z1Z1Z8Z1Z1Z1Z20Z1Z21Z8Z20Z1Z79Z1Z20Z1Z79Z1Z21Z5Z23Z2Z4Z1Z1Z5Z4Z1Z78Z1Z23Z1Z77Z1Z21Z3Z20Z1Z79Z1Z21Z15Z1Z138Z81Z2Z79Z2Z21Z1Z20Z1Z79Z1Z20Z1Z21Z2Z79Z5Z21Z2Z79Z5Z20Z1Z21Z3Z23Z2Z4Z1Z1Z5Z4Z1Z9Z1Z1Z1Z77Z1Z4Z1Z42Z1Z4Z1Z79Z2Z20Z1Z21Z1Z79Z2Z78Z1Z77Z1Z78Z1Z77Z1Z71Z1Z8Z1Z15Z1Z21Z4Z1Z138Z81Z2Z79Z1Z20Z1Z21Z2Z79Z1Z21Z3Z79Z1Z21Z2Z20Z1Z79Z1Z20Z1Z21Z1Z79Z1Z21Z8Z1Z1Z21Z8Z77Z1Z1Z4Z9Z1Z21Z4Z79Z2Z1Z1Z78Z1Z1Z1Z78Z1Z71Z1Z8Z2Z21Z4Z1Z138Z81Z2Z79Z2Z21Z2Z79Z1Z21Z3Z79Z1Z21Z3Z79Z1Z21Z1Z20Z1Z79Z2Z21Z7Z23Z2Z21Z7Z4Z3Z77Z1Z1Z1Z78Z1Z21Z4Z79Z1Z21Z12Z1Z138Z81Z2Z20Z1Z79Z1Z21Z2Z79Z6Z20Z1Z21Z1Z79Z1Z21Z3Z79Z1Z21Z7Z23Z2Z13Z1Z7Z8Z13Z1Z78Z1Z23Z1Z1Z1Z9Z1Z12Z1Z21Z2Z79Z1Z21Z12Z1Z138Z81Z2Z79Z2Z21Z2Z20Z1Z21Z7Z79Z1Z21Z2Z20Z1Z79Z4Z21Z4Z34Z1Z4Z1Z7Z1Z1Z8Z7Z1Z9Z1Z1Z2Z7Z1Z4Z1Z21Z1Z20Z1Z79Z1Z20Z1Z21Z11Z1Z138Z81Z2Z79Z1Z20Z1Z21Z9Z20Z1Z79Z1Z20Z1Z21Z3Z79Z1Z21Z6Z4Z1Z9Z1Z42Z1Z8Z4Z1Z4Z7Z1Z9Z1Z1Z1Z8Z1Z9Z1Z7Z1Z5Z1Z21Z1Z5Z1Z1Z1Z21Z1Z7Z1Z21Z3Z1Z144Z81Z2Z79Z2Z21Z10Z79Z6Z20Z1Z21Z4Z4Z1Z77Z1Z1Z6Z8Z2Z1Z2Z78Z1Z1Z1Z8Z1Z1Z2Z77Z1Z1Z1Z25Z1Z1Z2Z78Z1Z1Z1Z21Z1Z7Z1Z21Z1Z1Z144Z81Z2Z20Z1Z79Z1Z21Z21Z4Z2Z9Z1Z1Z3Z9Z1Z7Z1Z9Z1Z1Z1Z8Z4Z1Z8Z21Z1Z1Z1Z78Z1Z1Z1Z21Z1Z1Z144Z4Z1Z1Z1Z5Z2Z1Z1Z79Z3Z1Z1Z5Z2Z4Z1Z5Z3Z4Z1Z5Z1Z1Z6Z21Z2Z4Z5Z7Z1Z21Z3Z7Z1Z5Z1Z1Z11Z21Z1Z78Z1Z21Z1Z1Z1Z78Z1Z1Z144Z4Z4Z1Z1Z79Z3Z1Z1Z13Z1Z5Z1Z4Z6Z74Z1Z1Z1Z13Z1Z1Z1Z74Z1Z1Z1Z21Z2Z4Z1Z1Z8Z21Z2Z5Z1Z1Z10Z21Z3Z78Z1Z21Z1Z1Z144Z4Z2Z1Z1Z4Z1Z1Z1Z79Z3Z1Z1Z13Z1Z5Z1Z13Z1Z4Z1Z13Z1Z5Z1Z13Z1Z5Z1Z1Z1Z13Z1Z1Z1Z13Z1Z1Z2Z21Z4Z1Z1Z42Z1Z1Z1Z13Z1Z1Z1Z13Z1Z1Z1Z21Z3Z5Z1Z9Z8Z78Z1Z21Z1Z3Z1Z21Z1Z3Z1Z21Z1Z1Z144Z4Z1Z1Z4Z79Z3Z1Z15Z21Z4Z1Z7Z21Z18Z1Z144Z21Z19Z79Z1Z21Z32Z1Z144Z21Z19Z79Z1Z21Z32Z1Z144Z21Z19Z79Z1Z21Z18Z1Z4Z82Z1Z1Z153Z71Z7Z1Z1Z71Z1Z21Z9Z13Z1Z1Z1Z9Z8Z1Z168Z21Z17Z13Z1Z1Z178Z7Z3Z21Z1Z9Z3Z4Z1Z9Z1Z4Z1Z9Z1Z77Z1Z1Z4Z25Z1Z8Z3Z1Z179Z9Z1Z1Z3Z78Z1Z4Z1Z77Z1Z8Z1Z1Z1Z7Z3Z1Z1Z8Z1Z1Z3Z8Z1Z1Z178Z13Z1Z78Z1Z1Z1Z9Z2Z21Z1Z9Z2Z78Z1Z13Z1Z21Z1Z13Z1Z77Z1Z1Z1Z8Z1Z1Z1Z8Z1Z1Z176Z5Z1Z77Z1Z1Z1Z4Z1Z9Z1Z7Z1Z21Z1Z9Z1Z21Z8Z9Z1Z1Z182Z81Z1Z79Z3Z15Z1Z21Z1Z7Z3Z21Z5Z9Z8Z1Z171Z9Z1Z1Z2Z21Z6Z8Z1Z1Z1Z9Z1Z21Z13Z1Z171Z21Z1Z9Z1Z1Z1Z78Z1Z21Z1Z77Z1Z78Z1Z1Z1Z9Z1Z1Z1Z8Z1Z77Z1Z21Z9Z1Z175Z21Z2Z9Z1Z22Z1Z9Z1Z1Z6Z8Z1Z21Z9Z1Z175Z21Z3Z9Z4Z1Z4Z5Z1Z13Z1Z81Z4Z21Z4Z1Z175Z21Z1Z10Z1Z21Z5Z9Z1Z1Z1Z83Z1Z1Z2Z77Z1Z21Z3Z15Z1Z21Z4Z1Z175Z3Z1Z86Z1Z21Z5Z7Z1Z1Z1Z81Z1Z1Z2Z78Z1Z21Z8Z1Z175Z86Z1Z10Z1Z21Z5Z83Z1Z1Z1Z79Z1Z77Z1Z1Z1Z9Z1Z21Z8Z1Z175Z82Z1Z81Z1Z9Z1Z1Z3Z9Z1Z1Z1Z78Z1Z79Z1Z78Z1Z22Z1Z77Z1Z21Z8Z1Z175Z81Z1Z21Z1Z50Z1Z1Z2Z9Z1Z1Z2Z77Z1Z21Z2Z13Z1Z4Z8Z13Z1Z21Z5Z1Z170Z25Z1Z21Z1Z50Z1Z9Z2Z51Z1Z21Z5Z4Z1Z13Z8Z4Z1Z21Z5Z1Z170Z21Z2Z50Z1Z1Z2Z51Z1Z21Z5Z13Z1Z4Z8Z13Z1Z21Z5Z1Z170Z21Z2Z50Z1Z9Z2Z51Z1Z21Z3Z20Z1Z79Z1Z1Z3Z9Z2Z1Z5Z7Z1Z21Z4Z1Z170Z9Z1Z77Z1Z1Z3Z51Z1Z21Z3Z81Z1Z79Z1Z9Z3Z1Z2Z9Z3Z1Z1Z9Z1Z79Z1Z21Z4Z1Z175Z51Z1Z21Z3Z20Z1Z79Z1Z21Z3Z7Z2Z79Z3Z9Z1Z1Z1Z4Z1Z21Z4Z1Z170Z7Z1Z1Z1Z42Z1Z13Z1Z7Z1Z4Z1Z21Z3Z81Z1Z79Z1Z21Z5Z79Z3Z7Z1Z1Z1Z9Z1Z21Z4Z1Z170Z42Z1Z1Z1Z78Z1Z9Z1Z78Z1Z9Z2Z1Z1Z78Z1Z77Z1Z4Z1Z20Z1Z21Z4Z79Z3Z77Z1Z1Z1Z7Z1Z21Z4Z1Z180Z4Z1Z21Z7Z7Z1Z1Z1Z9Z1Z79Z1Z21Z4Z1Z170Z79Z1Z9Z1Z1Z8Z4Z1Z21Z8Z9Z1Z1Z1Z4Z1Z21Z4Z1Z170Z78Z1Z1Z9Z4Z1Z21Z1Z42Z1Z21Z6Z7Z1Z1Z1Z9Z1Z21Z4Z1Z180Z78Z1Z5Z2Z4Z1Z5Z1Z4Z1Z1Z1Z34Z1Z5Z1Z78Z1Z1Z1Z7Z1Z21Z7Z1Z178Z4Z5Z1Z1Z15Z1Z1Z2Z9Z1Z79Z1Z21Z7Z1Z178Z13Z1Z5Z1Z13Z1Z4Z2Z1Z1Z4Z1Z5Z1Z1Z2Z7Z1Z21Z7Z1Z182Z4Z1Z1Z1Z13Z1Z1Z3Z78Z1Z9Z7Z1Z182Z13Z1Z5Z1Z13Z1Z5Z1Z1Z192Z13Z1Z5Z1Z9Z1Z77Z1Z1Z192Z77Z1Z1Z2140Z79Z1Z21Z16Z1Z181Z4Z1Z1Z1Z5Z2Z1Z1Z5Z3Z1Z1Z5Z2Z4Z2Z5Z1Z4Z1Z1Z179Z42Z1Z1Z1Z4Z1Z5Z1Z4Z3Z13Z1Z5Z1Z4Z1Z1Z1Z13Z1Z4Z2Z15Z1Z4Z2Z1Z179Z21Z1Z1Z1Z13Z1Z5Z1Z4Z1Z5Z1Z4Z3Z13Z1Z5Z1Z13Z1Z4Z1Z13Z1Z4Z3Z1Z179Z21Z1Z4Z15Z13Z1Z1Z22523ZZ65Z2Z9Z1Z65Z1Z9Z1Z65Z17Z73Z1Z65Z19Z101Z3Z1Z151Z65Z2Z9Z1Z65Z1Z9Z1Z65Z13Z1Z2Z71Z2Z69Z1Z65Z7Z1Z1Z65Z2Z69Z1Z1Z1Z65Z2Z1Z1Z65Z4Z101Z3Z1Z151Z65Z2Z9Z1Z65Z1Z9Z1Z65Z7Z9Z1Z65Z17Z1Z8Z65Z4Z101Z3Z1Z151Z65Z2Z9Z2Z13Z1Z15Z2Z9Z2Z15Z1Z9Z3Z65Z17Z1Z1Z79Z3Z1Z1Z67Z2Z69Z1Z65Z4Z1Z154Z65Z2Z9Z3Z65Z1Z9Z3Z10Z1Z9Z3Z65Z17Z1Z1Z65Z3Z1Z1Z71Z1Z72Z1Z65Z5Z1Z154Z65Z2Z9Z3Z65Z1Z9Z3Z65Z1Z9Z2Z65Z7Z2Z1Z65Z1Z1Z5Z0Z1Z65Z15Z1Z154Z65Z2Z9Z3Z65Z13Z2Z1Z1Z6Z0Z1Z65Z16Z1Z154Z65Z2Z9Z3Z65Z12Z2Z1Z1Z6Z0Z1Z65Z4Z69Z6Z65Z7Z1Z154Z65Z2Z9Z3Z65Z11Z2Z1Z1Z2Z78Z1Z65Z1Z104Z1Z1Z3Z8Z1Z1Z2Z67Z1Z77Z6Z1Z1Z69Z1Z1Z1Z65Z4Z1Z154Z65Z2Z9Z3Z65Z3Z14Z1Z17Z7Z2Z1Z1Z2Z78Z1Z2Z1Z104Z1Z1Z3Z8Z1Z1Z2Z65Z1Z69Z6Z1Z1Z70Z1Z1Z1Z65Z1Z97Z16Z1Z141Z9Z1Z89Z1Z9Z3Z1Z1Z13Z1Z65Z1Z13Z1Z39Z1Z35Z1Z43Z1Z67Z1Z1Z1Z51Z1Z42Z1Z2Z1Z1Z2Z78Z1Z2Z2Z1Z2Z68Z1Z98Z1Z1Z1Z100Z1Z65Z11Z97Z16Z1Z141Z89Z1Z1Z2Z9Z1Z1Z1Z3Z1Z1Z1Z13Z1Z1Z1Z28Z1Z36Z1Z40Z1Z1Z1Z48Z1Z1Z1Z44Z1Z2Z1Z1Z2Z78Z1Z2Z2Z1Z2Z65Z1Z78Z1Z1Z1Z76Z1Z65Z3Z69Z1Z65Z7Z97Z16Z1Z145Z11Z1Z65Z1Z11Z1Z1Z2Z24Z1Z37Z1Z40Z1Z1Z2Z61.5Z2Z2Z1Z1Z2Z78Z1Z2Z1Z0Z1Z2Z1Z65Z2Z66Z1Z1Z2Z65Z1Z1Z4Z80Z1Z65Z5Z97Z2Z102Z1Z1Z1Z65Z4Z97Z1Z1Z1Z97Z1Z1Z1Z97Z4Z1Z141Z65Z13Z9Z3Z65Z5Z0Z1Z65Z1Z2Z1Z0Z1Z66Z1Z1Z6Z80Z1Z65Z6Z97Z3Z1Z5Z97Z8Z1Z141Z65Z13Z9Z3Z65Z5Z0Z1Z65Z8Z102Z1Z1Z1Z100Z1Z65Z1Z102Z1Z65Z4Z97Z3Z1Z5Z97Z1Z1Z1Z97Z1Z1Z1Z97Z4Z1Z141Z65Z13Z9Z3Z65Z5Z0Z1Z65Z8Z66Z1Z1Z1Z68Z1Z65Z1Z97Z1Z65Z1Z97Z1Z65Z2Z97Z3Z1Z1Z99Z4Z97Z1Z1Z3Z97Z4Z1Z141Z70Z1Z65Z5Z1Z1Z77Z1Z12Z1Z1Z1Z21Z2Z1Z1Z13Z1Z68Z1Z13Z1Z17Z1Z21Z2Z25Z1Z1Z1Z0Z1Z65Z4Z1Z7Z69Z1Z1Z4Z65Z1Z97Z19Z1Z138Z70Z1Z72Z1Z65Z3Z1Z3Z12Z1Z1Z1Z23Z1Z19Z1Z1Z1Z11Z1Z1Z1Z11Z1Z15Z1Z19Z1Z23Z1Z27Z1Z1Z1Z0Z1Z65Z4Z93Z1Z87Z1Z94Z1Z1Z1Z92.5Z3Z1Z1Z100Z1Z102Z1Z1Z1Z104Z1Z97Z20Z1Z138Z70Z1Z72Z1Z65Z3Z1Z3Z65Z10Z73Z1Z65Z1Z73Z1Z65Z5Z73Z1Z80Z1Z90Z1Z1Z5Z100Z1Z102Z1Z101Z1Z104Z1Z97Z20Z1Z138Z70Z1Z72Z1Z65Z8Z73Z5Z65Z2Z73Z5Z65Z4Z77Z1Z80Z1Z2Z1Z1Z5Z100Z1Z106Z1Z1Z1Z124Z1Z121Z1Z97Z1Z121Z1Z97Z4Z65Z2Z89Z1Z81Z1Z85Z2Z89Z1Z1Z1Z97Z5Z1Z138Z70Z1Z72Z1Z65Z8Z73Z1Z65Z3Z73Z1Z65Z2Z73Z1Z65Z8Z1Z1Z65Z1Z97Z7Z106Z1Z1Z4Z112Z1Z97Z4Z65Z2Z1Z1Z79Z1Z1Z1Z87Z1Z89Z1Z1Z2Z97Z4Z1Z138Z70Z1Z72Z1Z65Z4Z73Z1Z65Z3Z73Z1Z65Z3Z73Z1Z65Z2Z73Z2Z65Z7Z75Z1Z80Z1Z97Z7Z111Z3Z114Z1Z1Z1Z104Z1Z97Z4Z65Z1Z97Z12Z1Z138Z70Z1Z72Z1Z65Z4Z73Z6Z65Z2Z73Z1Z65Z3Z73Z1Z65Z7Z75Z1Z80Z1Z98Z1Z101Z7Z105Z2Z118Z1Z101Z1Z1Z1Z97Z1Z117Z1Z97Z2Z65Z1Z97Z12Z1Z138Z70Z1Z72Z1Z65Z12Z73Z1Z65Z3Z73Z4Z65Z4Z95Z1Z93Z1Z98Z1Z1Z8Z104Z1Z102Z1Z1Z2Z107Z1Z99Z1Z97Z1Z65Z3Z97Z11Z1Z138Z70Z1Z72Z1Z65Z12Z73Z1Z65Z4Z73Z1Z65Z6Z99Z1Z76Z1Z98Z1Z97Z4Z1Z4Z80Z1Z82Z1Z1Z1Z97Z1Z108Z1Z110Z1Z100Z1Z97Z1Z101Z1Z1Z1Z97Z5Z1Z144Z70Z1Z72Z1Z65Z12Z73Z6Z65Z5Z102Z1Z3Z1Z1Z6Z97Z2Z1Z2Z97Z1Z1Z1Z97Z1Z1Z2Z113Z1Z1Z1Z113Z1Z1Z2Z103Z1Z1Z1Z97Z3Z1Z144Z70Z1Z72Z1Z65Z23Z102Z1Z100Z1Z78Z1Z1Z3Z3Z3Z1Z1Z97Z4Z1Z8Z97Z1Z1Z1Z103Z1Z1Z1Z97Z1Z1Z144Z106Z1Z1Z1Z74Z1Z78Z1Z1Z1Z65Z3Z1Z1Z94Z1Z106Z1Z99Z1Z102Z3Z111Z1Z114Z1Z1Z6Z65Z2Z102Z1Z104Z1Z75Z3Z3Z1Z65Z3Z3Z1Z66Z1Z1Z11Z97Z1Z3Z1Z97Z1Z1Z1Z103Z1Z1Z144Z106Z1Z76Z3Z1Z1Z65Z3Z1Z1Z99Z1Z101Z1Z98Z1Z102Z3Z110Z1Z114Z1Z65Z1Z1Z1Z149.5Z1Z1Z1Z65Z1Z1Z1Z65Z2Z66Z1Z1Z8Z65Z2Z66Z1Z1Z10Z97Z3Z3Z1Z97Z1Z1Z144Z106Z1Z76Z1Z1Z1Z76Z1Z1Z1Z65Z3Z1Z1Z95Z1Z97Z1Z95Z1Z102Z1Z107Z1Z105Z1Z107Z1Z114Z1Z1Z1Z147.5Z1Z1Z1Z147.5Z1Z1Z2Z65Z4Z1Z1Z94Z1Z1Z1Z88.5Z1Z1Z1Z91.5Z1Z1Z1Z65Z3Z66Z1Z3Z9Z97Z5Z1Z144Z106Z1Z1Z4Z65Z3Z1Z15Z65Z4Z1Z7Z65Z4Z97Z14Z1Z144Z65Z19Z9Z1Z65Z32Z1Z144Z65Z19Z9Z1Z65Z32Z1Z144Z65Z19Z9Z1Z65Z18Z1Z4Z3Z1Z1Z153Z9Z7Z1Z1Z9Z1Z65Z9Z10Z1Z1Z1Z65Z8Z1Z168Z65Z17Z10Z1Z1Z178Z65Z4Z1Z6Z9Z2Z1Z4Z9Z1Z53Z3Z1Z179Z3Z1Z1Z3Z48Z1Z47Z1Z50Z1Z65Z1Z1Z1Z3Z1Z71Z1Z67Z1Z1Z1Z53Z1Z1Z3Z53Z1Z1Z178Z10Z1Z2Z1Z1Z1Z3Z1Z0Z1Z65Z1Z50Z1Z3Z1Z67Z1Z79Z1Z65Z1Z76Z1Z67Z1Z1Z1Z54.5Z1Z1Z1Z54.5Z1Z1Z176Z3Z1Z2Z1Z1Z1Z34Z1Z31Z1Z23Z1Z65Z1Z20Z1Z65Z8Z67Z1Z1Z182Z38Z1Z41Z4Z65Z9Z67Z1Z3Z7Z1Z171Z3Z1Z1Z2Z65Z6Z1Z2Z0Z1Z65Z13Z1Z171Z65Z1Z67Z1Z1Z1Z65Z4Z1Z1Z65Z1Z1Z2Z0Z1Z65Z9Z1Z175Z65Z2Z3Z1Z65Z1Z1Z8Z65Z9Z1Z175Z65Z3Z67Z1Z3Z1Z71Z1Z3Z1Z1Z4Z3Z1Z2Z1Z1Z4Z65Z4Z1Z175Z65Z1Z3Z1Z65Z5Z2Z1Z1Z1Z3Z1Z1Z3Z65Z8Z1Z175Z65Z1Z0Z1Z65Z5Z2Z1Z1Z1Z65Z1Z1Z2Z0Z1Z65Z8Z1Z176Z2Z1Z65Z5Z2Z1Z1Z1Z65Z1Z2Z1Z1Z1Z0Z1Z65Z8Z1Z175Z3Z3Z1Z5Z76Z1Z65Z1Z2Z1Z65Z1Z0Z1Z65Z8Z1Z175Z0Z1Z65Z1Z2Z1Z1Z2Z3Z1Z1Z2Z76Z1Z65Z2Z98Z1Z89Z1Z85Z7Z105Z1Z65Z5Z1Z170Z3Z1Z65Z1Z2Z2Z0Z2Z65Z5Z98Z1Z76.5Z8Z108Z1Z65Z5Z1Z170Z65Z2Z2Z1Z1Z2Z0Z1Z65Z5Z95Z1Z83Z8Z104Z1Z65Z5Z1Z170Z65Z2Z2Z2Z0Z2Z65Z4Z1Z4Z65Z2Z1Z5Z0Z1Z65Z4Z1Z170Z65Z1Z1Z4Z0Z1Z65Z3Z2Z1Z1Z1Z3Z3Z1Z2Z3Z3Z1Z1Z0Z1Z65Z5Z1Z175Z0Z1Z65Z4Z1Z1Z65Z3Z3Z2Z1Z3Z2Z1Z1Z1Z0Z1Z65Z4Z1Z170Z3Z1Z1Z1Z68Z1Z3Z3Z65Z3Z2Z1Z1Z1Z65Z5Z1Z3Z2Z1Z1Z1Z0Z1Z65Z4Z1Z170Z65Z1Z1Z1Z5Z1Z1Z1Z5Z3Z1Z1Z5Z1Z1Z1Z0Z1Z65Z5Z1Z3Z2Z1Z1Z1Z0Z1Z65Z4Z1Z180Z0Z1Z65Z7Z2Z1Z1Z1Z0Z1Z65Z5Z1Z170Z65Z1Z2Z1Z1Z8Z0Z1Z65Z8Z2Z1Z1Z1Z0Z1Z65Z4Z1Z170Z65Z1Z1Z9Z0Z1Z65Z1Z117Z1Z65Z6Z2Z1Z1Z1Z0Z1Z65Z4Z1Z180Z109Z1Z110Z2Z111Z1Z114Z1Z122Z1Z1Z1Z73Z1Z124Z1Z2Z1Z1Z1Z0Z1Z65Z7Z1Z178Z2Z2Z114Z1Z2Z1Z102Z1Z1Z1Z109Z1Z1Z2Z0Z1Z65Z8Z1Z178Z3Z1Z1Z1Z3Z1Z2Z1Z106Z1Z1Z1Z79Z1Z82Z1Z1Z2Z0Z1Z65Z7Z1Z182Z2Z1Z1Z1Z79Z1Z1Z6Z65Z5Z1Z182Z70Z2Z75Z1Z78Z1Z1Z192Z67Z1Z69Z1Z65Z2Z1Z2333Z5Z1Z137Z16Z1Z181Z151Z1Z1Z1Z167Z2Z1Z1Z162Z1Z170Z1Z179Z1Z1Z1Z182Z2Z187Z2Z190Z1Z140Z1Z1Z179Z135Z1Z1Z1Z150Z1Z161Z1Z166Z3Z163Z1Z169Z1Z176Z1Z1Z1Z179Z1Z182Z1Z186.00001111111112Z1Z193Z1Z190Z1Z140Z1Z1Z179Z137Z1Z1Z1Z147Z1Z157Z1Z162Z1Z169Z1Z162Z2Z166Z1Z172Z1Z174Z1Z179Z1Z182Z1Z183Z2Z190Z1Z140Z1Z1Z179Z137Z1Z139Z4Z163Z2Z143Z9Z140Z1Z1Z22523ZZB601Zg2ZB3341Zs0ZB3145Zg2a300d9999999999ZB1588Zg2aC300d9999999999v3ZB1784Zg2aC300d9999999999v3ZB1980Zg2aC300d9999999999v3ZB2176Zg2aC300d9999999999v3ZB2372Zg2aC300d9999999999v3ZB6665Zg1ZB219Zg3ZB626Zg4ZB38Zy42ZB1962Zg99ZB2157Zg99ZB1786Zg2a200s200d9999999999ZB1590Zg2a200s200d9999999999ZB6666Zg2ZB6667Zg3ZB6668Zg4ZB2376Zg5ZB2181Zg5ZB6669Zg5ZB3144Zg2ZB3556Zs0ZB4144Zs0ZB3752Zs0ZB3555Zg2d9999999999ZB3751Zg3d9999999999ZB4339Zg5d9999999999ZB4143Zg4d9999999999ZB4340Zs0ZB3565Zv4a100s100d30ZB4352Zv4a100s100d30ZB2779Zg2d9999999999ZB4733Zx35ZB2596Zg6ZB2792Zg6ZB2400Zg6ZB2988Zg6ZB2394Zx0y30ZB6670Zg6ZB10977ZxC30y70ZB15485Zx20y0ZB10783Zx0y25ZB3972Zg7ZB3776Zg7ZB6673Zg99ZB6671Zg7ZB11577Zy25ZZZZ
1245673196Z21Z2Z20Z1Z21Z1Z20Z1Z21Z13Z4Z1Z7Z1Z4Z2Z7Z1Z4Z1Z21Z1Z20Z1Z21Z1Z20Z1Z21Z9Z42Z1Z21Z4Z2Z154Z21Z2Z20Z1Z21Z1Z20Z1Z21Z13Z1Z2Z77Z1Z78Z1Z71Z1Z15Z1Z21Z1Z20Z1Z79Z4Z1Z1Z9Z3Z1Z1Z9Z2Z1Z1Z21Z4Z2Z154Z21Z2Z20Z1Z21Z1Z20Z1Z21Z7Z20Z1Z21Z5Z79Z1Z21Z6Z20Z1Z79Z1Z20Z1Z21Z2Z1Z8Z21Z4Z2Z154Z21Z2Z20Z1Z79Z1Z78Z1Z77Z1Z78Z1Z9Z1Z77Z1Z78Z1Z9Z1Z78Z1Z71Z1Z70Z1Z21Z4Z79Z1Z21Z6Z20Z1Z79Z1Z20Z1Z21Z2Z1Z1Z9Z3Z1Z1Z7Z2Z71Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z1Z79Z3Z81Z1Z79Z3Z21Z3Z79Z3Z20Z1Z21Z2Z42Z3Z20Z1Z79Z1Z20Z1Z21Z2Z1Z1Z3Z1Z21Z1Z3Z1Z1Z1Z13Z2Z15Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z1Z20Z3Z21Z1Z20Z2Z21Z4Z79Z1Z21Z2Z4Z1Z25Z1Z1Z5Z13Z1Z21Z10Z79Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z10Z20Z1Z79Z2Z4Z1Z1Z6Z13Z1Z21Z11Z79Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z12Z4Z1Z1Z6Z13Z1Z21Z1Z42Z1Z21Z2Z20Z6Z21Z2Z79Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z11Z4Z1Z1Z2Z24Z1Z21Z1Z24Z1Z1Z3Z16Z1Z1Z2Z5Z1Z79Z6Z1Z1Z51Z1Z1Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z3Z4Z1Z50Z7Z16Z1Z1Z2Z24Z1Z81Z1Z24Z1Z1Z3Z16Z1Z1Z2Z21Z1Z20Z6Z1Z1Z82Z1Z1Z1Z21Z17Z1Z141Z76Z1Z71Z1Z78Z1Z79Z1Z77Z1Z1Z1Z78Z1Z21Z1Z77Z1Z5Z1Z4Z1Z5Z1Z4Z1Z1Z1Z4Z1Z5Z1Z16Z1Z1Z2Z24Z1Z81Z1Z4Z1Z1Z2Z77Z1Z7Z1Z1Z1Z7Z1Z21Z27Z1Z141Z71Z1Z1Z2Z7Z1Z1Z1Z83Z1Z1Z1Z7Z1Z1Z1Z4Z1Z5Z1Z4Z1Z1Z1Z5Z1Z1Z1Z5Z1Z16Z1Z1Z2Z24Z1Z81Z1Z4Z1Z1Z2Z71Z1Z4Z1Z1Z1Z4Z1Z21Z1Z9Z2Z42Z1Z9Z2Z21Z21Z1Z145Z77Z1Z21Z1Z78Z1Z1Z2Z5Z1Z4Z1Z5Z1Z1Z2Z5Z2Z16Z1Z1Z2Z24Z1Z81Z2Z5Z1Z71Z1Z15Z1Z4Z1Z1Z2Z25Z1Z1Z4Z7Z1Z21Z7Z42Z1Z1Z1Z78Z1Z9Z3Z71Z1Z1Z1Z8Z1Z1Z1Z21Z4Z1Z141Z21Z13Z20Z1Z79Z1Z20Z1Z21Z5Z81Z1Z21Z1Z5Z1Z13Z1Z4Z1Z1Z6Z9Z1Z21Z9Z1Z5Z71Z1Z8Z1Z15Z1Z8Z1Z21Z4Z1Z141Z21Z13Z20Z1Z79Z1Z20Z1Z21Z5Z81Z1Z20Z1Z79Z4Z20Z1Z21Z2Z7Z1Z1Z1Z7Z1Z21Z1Z23Z1Z21Z7Z1Z5Z71Z1Z1Z1Z8Z1Z1Z1Z21Z4Z1Z141Z20Z1Z21Z3Z20Z1Z21Z8Z20Z1Z79Z1Z20Z1Z21Z5Z81Z1Z20Z6Z21Z2Z9Z1Z1Z1Z7Z1Z21Z1Z23Z1Z21Z1Z42Z1Z21Z5Z1Z1Z77Z1Z9Z3Z71Z1Z1Z3Z21Z4Z1Z141Z81Z1Z79Z4Z25Z1Z8Z1Z71Z1Z23Z1Z1Z1Z77Z1Z78Z1Z1Z1Z77Z1Z72Z1Z9Z1Z78Z1Z77Z1Z9Z1Z78Z1Z1Z1Z4Z1Z20Z1Z21Z3Z1Z7Z25Z1Z1Z4Z21Z4Z79Z1Z21Z15Z1Z138Z81Z2Z21Z2Z20Z1Z8Z1Z85Z1Z8Z1Z23Z1Z1Z1Z78Z1Z77Z1Z1Z1Z78Z1Z1Z1Z9Z1Z77Z1Z78Z1Z9Z1Z77Z1Z1Z1Z4Z1Z20Z1Z21Z3Z34Z1Z4Z1Z5Z1Z1Z1Z13Z3Z1Z1Z4Z1Z9Z1Z1Z1Z9Z1Z21Z4Z79Z1Z21Z15Z1Z138Z81Z2Z20Z1Z79Z2Z1Z1Z8Z1Z1Z1Z20Z1Z21Z8Z20Z1Z79Z1Z20Z1Z79Z1Z21Z5Z23Z2Z4Z1Z1Z5Z4Z1Z78Z1Z23Z1Z77Z1Z21Z3Z20Z1Z79Z1Z21Z15Z1Z138Z81Z2Z79Z2Z21Z1Z20Z1Z79Z1Z20Z1Z21Z2Z79Z5Z21Z2Z79Z5Z20Z1Z21Z3Z23Z2Z4Z1Z1Z5Z4Z1Z9Z1Z1Z1Z77Z1Z4Z1Z42Z1Z4Z1Z79Z2Z20Z1Z21Z1Z79Z2Z78Z1Z77Z1Z78Z1Z77Z1Z71Z1Z8Z1Z15Z1Z21Z4Z1Z138Z81Z2Z79Z1Z20Z1Z21Z2Z79Z1Z21Z3Z79Z1Z21Z2Z20Z1Z79Z1Z20Z1Z21Z1Z79Z1Z21Z8Z1Z1Z21Z8Z77Z1Z1Z4Z9Z1Z21Z4Z79Z2Z1Z1Z78Z1Z1Z1Z78Z1Z71Z1Z8Z2Z21Z4Z1Z138Z81Z2Z79Z2Z21Z2Z79Z1Z21Z3Z79Z1Z21Z3Z79Z1Z21Z1Z20Z1Z79Z2Z21Z7Z23Z2Z21Z7Z4Z3Z77Z1Z1Z1Z78Z1Z21Z4Z79Z1Z21Z12Z1Z138Z81Z2Z20Z1Z79Z1Z21Z2Z79Z6Z20Z1Z21Z1Z79Z1Z21Z3Z79Z1Z21Z7Z23Z2Z13Z1Z7Z8Z13Z1Z78Z1Z23Z1Z1Z1Z9Z1Z12Z1Z21Z2Z79Z1Z21Z12Z1Z138Z81Z2Z79Z2Z21Z2Z20Z1Z21Z7Z79Z1Z21Z2Z20Z1Z79Z4Z21Z4Z34Z1Z4Z1Z7Z1Z1Z8Z7Z1Z9Z1Z1Z2Z7Z1Z4Z1Z21Z1Z20Z1Z79Z1Z20Z1Z21Z11Z1Z138Z81Z2Z79Z1Z20Z1Z21Z9Z20Z1Z79Z1Z20Z1Z21Z3Z79Z1Z21Z6Z4Z1Z9Z1Z42Z1Z8Z4Z1Z4Z7Z1Z9Z1Z1Z1Z8Z1Z9Z1Z7Z1Z5Z1Z21Z1Z5Z1Z1Z1Z21Z1Z7Z1Z21Z3Z1Z144Z81Z2Z79Z2Z21Z10Z79Z6Z20Z1Z21Z4Z4Z1Z77Z1Z1Z6Z8Z2Z1Z2Z78Z1Z1Z1Z8Z1Z1Z2Z77Z1Z1Z1Z25Z1Z1Z2Z78Z1Z1Z1Z21Z1Z7Z1Z21Z1Z1Z144Z81Z2Z20Z1Z79Z1Z21Z21Z4Z2Z9Z1Z1Z3Z9Z1Z7Z1Z9Z1Z1Z1Z8Z4Z1Z8Z21Z1Z1Z1Z78Z1Z1Z1Z21Z1Z1Z144Z4Z1Z1Z1Z5Z2Z1Z1Z79Z3Z1Z1Z5Z2Z4Z1Z5Z3Z4Z1Z5Z1Z1Z6Z21Z2Z4Z5Z7Z1Z21Z3Z7Z1Z5Z1Z1Z11Z21Z1Z78Z1Z21Z1Z1Z1Z78Z1Z1Z144Z4Z4Z1Z1Z79Z3Z1Z1Z13Z1Z5Z1Z4Z6Z74Z1Z1Z1Z13Z1Z1Z1Z74Z1Z1Z1Z21Z2Z4Z1Z1Z8Z21Z2Z5Z1Z1Z10Z21Z3Z78Z1Z21Z1Z1Z144Z4Z2Z1Z1Z4Z1Z1Z1Z79Z3Z1Z1Z13Z1Z5Z1Z13Z1Z4Z1Z13Z1Z5Z1Z13Z1Z5Z1Z1Z1Z13Z1Z1Z1Z13Z1Z1Z2Z21Z4Z1Z1Z42Z1Z1Z1Z13Z1Z1Z1Z13Z1Z1Z1Z21Z3Z5Z1Z9Z8Z78Z1Z21Z1Z3Z1Z21Z1Z3Z1Z21Z1Z1Z144Z4Z1Z1Z4Z79Z3Z1Z15Z21Z4Z1Z7Z21Z18Z1Z144Z21Z19Z79Z1Z21Z32Z1Z144Z21Z19Z79Z1Z21Z32Z1Z144Z21Z19Z79Z1Z21Z18Z1Z4Z82Z1Z1Z153Z71Z7Z1Z1Z71Z1Z21Z9Z13Z1Z1Z1Z9Z8Z1Z168Z21Z17Z13Z1Z1Z178Z7Z3Z21Z1Z9Z3Z4Z1Z9Z1Z4Z1Z9Z1Z77Z1Z1Z4Z25Z1Z8Z3Z1Z179Z9Z1Z1Z3Z78Z1Z4Z1Z77Z1Z8Z1Z1Z1Z7Z3Z1Z1Z8Z1Z1Z3Z8Z1Z1Z178Z13Z1Z78Z1Z1Z1Z9Z2Z21Z1Z9Z2Z78Z1Z13Z1Z21Z1Z13Z1Z77Z1Z1Z1Z8Z1Z1Z1Z8Z1Z1Z176Z5Z1Z77Z1Z1Z1Z4Z1Z9Z1Z7Z1Z21Z1Z9Z1Z21Z8Z9Z1Z1Z182Z81Z1Z79Z3Z15Z1Z21Z1Z7Z3Z21Z5Z9Z8Z1Z171Z9Z1Z1Z2Z21Z6Z8Z1Z1Z1Z9Z1Z21Z13Z1Z171Z21Z1Z9Z1Z1Z1Z78Z1Z21Z1Z77Z1Z78Z1Z1Z1Z9Z1Z1Z1Z8Z1Z77Z1Z21Z9Z1Z175Z21Z2Z9Z1Z22Z1Z9Z1Z1Z6Z8Z1Z21Z9Z1Z175Z21Z3Z9Z4Z1Z4Z5Z1Z13Z1Z81Z4Z21Z4Z1Z175Z21Z1Z10Z1Z21Z5Z9Z1Z1Z1Z83Z1Z1Z2Z77Z1Z21Z3Z15Z1Z21Z4Z1Z175Z3Z1Z86Z1Z21Z5Z7Z1Z1Z1Z81Z1Z1Z2Z78Z1Z21Z8Z1Z175Z86Z1Z10Z1Z21Z5Z83Z1Z1Z1Z79Z1Z77Z1Z1Z1Z9Z1Z21Z8Z1Z175Z82Z1Z81Z1Z9Z1Z1Z3Z9Z1Z1Z1Z78Z1Z79Z1Z78Z1Z22Z1Z77Z1Z21Z8Z1Z175Z81Z1Z21Z1Z50Z1Z1Z2Z9Z1Z1Z2Z77Z1Z21Z2Z13Z1Z4Z8Z13Z1Z21Z5Z1Z170Z25Z1Z21Z1Z50Z1Z9Z2Z51Z1Z21Z5Z4Z1Z13Z8Z4Z1Z21Z5Z1Z170Z21Z2Z50Z1Z1Z2Z51Z1Z21Z5Z13Z1Z4Z8Z13Z1Z21Z5Z1Z170Z21Z2Z50Z1Z9Z2Z51Z1Z21Z3Z20Z1Z79Z1Z1Z3Z9Z2Z1Z5Z7Z1Z21Z4Z1Z170Z9Z1Z77Z1Z1Z3Z51Z1Z21Z3Z81Z1Z79Z1Z9Z3Z1Z2Z9Z3Z1Z1Z9Z1Z79Z1Z21Z4Z1Z175Z51Z1Z21Z3Z20Z1Z79Z1Z21Z3Z7Z2Z79Z3Z9Z1Z1Z1Z4Z1Z21Z4Z1Z170Z7Z1Z1Z1Z42Z1Z13Z1Z7Z1Z4Z1Z21Z3Z81Z1Z79Z1Z21Z5Z79Z3Z7Z1Z1Z1Z9Z1Z21Z4Z1Z170Z42Z1Z1Z1Z78Z1Z9Z1Z78Z1Z9Z2Z1Z1Z78Z1Z77Z1Z4Z1Z20Z1Z21Z4Z79Z3Z77Z1Z1Z1Z7Z1Z21Z4Z1Z180Z4Z1Z21Z7Z7Z1Z1Z1Z9Z1Z79Z1Z21Z4Z1Z170Z79Z1Z9Z1Z1Z8Z4Z1Z21Z8Z9Z1Z1Z1Z4Z1Z21Z4Z1Z170Z78Z1Z1Z9Z4Z1Z21Z1Z42Z1Z21Z6Z7Z1Z1Z1Z9Z1Z21Z4Z1Z180Z78Z1Z5Z2Z4Z1Z5Z1Z4Z1Z1Z1Z34Z1Z5Z1Z78Z1Z1Z1Z7Z1Z21Z7Z1Z178Z4Z5Z1Z1Z15Z1Z1Z2Z9Z1Z79Z1Z21Z7Z1Z178Z13Z1Z5Z1Z13Z1Z4Z2Z1Z1Z4Z1Z5Z1Z1Z2Z7Z1Z21Z7Z1Z182Z4Z1Z1Z1Z13Z1Z1Z3Z78Z1Z9Z7Z1Z182Z13Z1Z5Z1Z13Z1Z5Z1Z1Z192Z13Z1Z5Z1Z9Z1Z77Z1Z1Z192Z77Z1Z1Z2140Z79Z1Z21Z16Z1Z181Z4Z1Z1Z1Z5Z2Z1Z1Z5Z3Z1Z1Z5Z2Z4Z2Z5Z1Z4Z1Z1Z179Z42Z1Z1Z1Z4Z1Z5Z1Z4Z3Z13Z1Z5Z1Z4Z1Z1Z1Z13Z1Z4Z2Z15Z1Z4Z2Z1Z179Z21Z1Z1Z1Z13Z1Z5Z1Z4Z1Z5Z1Z4Z3Z13Z1Z5Z1Z13Z1Z4Z1Z13Z1Z4Z3Z1Z179Z21Z1Z4Z15Z13Z1Z1Z22523ZZ65Z2Z9Z1Z65Z1Z9Z1Z65Z17Z73Z1Z65Z19Z101Z3Z1Z151Z65Z2Z9Z1Z65Z1Z9Z1Z65Z13Z1Z2Z71Z2Z69Z1Z65Z7Z1Z1Z65Z2Z69Z1Z1Z1Z65Z2Z1Z1Z65Z4Z101Z3Z1Z151Z65Z2Z9Z1Z65Z1Z9Z1Z65Z7Z9Z1Z65Z17Z1Z8Z65Z4Z101Z3Z1Z151Z65Z2Z9Z2Z13Z1Z15Z2Z9Z2Z15Z1Z9Z3Z65Z17Z1Z1Z79Z3Z1Z1Z67Z2Z69Z1Z65Z4Z1Z154Z65Z2Z9Z3Z65Z1Z9Z3Z10Z1Z9Z3Z65Z17Z1Z1Z65Z3Z1Z1Z71Z1Z72Z1Z65Z5Z1Z154Z65Z2Z9Z3Z65Z1Z9Z3Z65Z1Z9Z2Z65Z7Z2Z1Z65Z1Z1Z5Z0Z1Z65Z15Z1Z154Z65Z2Z9Z3Z65Z13Z2Z1Z1Z6Z0Z1Z65Z16Z1Z154Z65Z2Z9Z3Z65Z12Z2Z1Z1Z6Z0Z1Z65Z4Z69Z6Z65Z7Z1Z154Z65Z2Z9Z3Z65Z11Z2Z1Z1Z2Z78Z1Z65Z1Z104Z1Z1Z3Z8Z1Z1Z2Z67Z1Z77Z6Z1Z1Z69Z1Z1Z1Z65Z4Z1Z154Z65Z2Z9Z3Z65Z3Z14Z1Z17Z7Z2Z1Z1Z2Z78Z1Z2Z1Z104Z1Z1Z3Z8Z1Z1Z2Z65Z1Z69Z6Z1Z1Z70Z1Z1Z1Z65Z1Z97Z16Z1Z141Z9Z1Z89Z1Z9Z3Z1Z1Z13Z1Z65Z1Z13Z1Z39Z1Z35Z1Z43Z1Z67Z1Z1Z1Z51Z1Z42Z1Z2Z1Z1Z2Z78Z1Z2Z2Z1Z2Z68Z1Z98Z1Z1Z1Z100Z1Z65Z11Z97Z16Z1Z141Z89Z1Z1Z2Z9Z1Z1Z1Z3Z1Z1Z1Z13Z1Z1Z1Z28Z1Z36Z1Z40Z1Z1Z1Z48Z1Z1Z1Z44Z1Z2Z1Z1Z2Z78Z1Z2Z2Z1Z2Z65Z1Z78Z1Z1Z1Z76Z1Z65Z3Z69Z1Z65Z7Z97Z16Z1Z145Z11Z1Z65Z1Z11Z1Z1Z2Z24Z1Z37Z1Z40Z1Z1Z2Z61.5Z2Z2Z1Z1Z2Z78Z1Z2Z1Z0Z1Z2Z1Z65Z2Z66Z1Z1Z2Z65Z1Z1Z4Z80Z1Z65Z5Z97Z2Z102Z1Z1Z1Z65Z4Z97Z1Z1Z1Z97Z1Z1Z1Z97Z4Z1Z141Z65Z13Z9Z3Z65Z5Z0Z1Z65Z1Z2Z1Z0Z1Z66Z1Z1Z6Z80Z1Z65Z6Z97Z3Z1Z5Z97Z8Z1Z141Z65Z13Z9Z3Z65Z5Z0Z1Z65Z8Z102Z1Z1Z1Z100Z1Z65Z1Z102Z1Z65Z4Z97Z3Z1Z5Z97Z1Z1Z1Z97Z1Z1Z1Z97Z4Z1Z141Z65Z13Z9Z3Z65Z5Z0Z1Z65Z8Z66Z1Z1Z1Z68Z1Z65Z1Z97Z1Z65Z1Z97Z1Z65Z2Z97Z3Z1Z1Z99Z4Z97Z1Z1Z3Z97Z4Z1Z141Z70Z1Z65Z5Z1Z1Z77Z1Z12Z1Z1Z1Z21Z2Z1Z1Z13Z1Z68Z1Z13Z1Z17Z1Z21Z2Z25Z1Z1Z1Z0Z1Z65Z4Z1Z7Z69Z1Z1Z4Z65Z1Z97Z19Z1Z138Z70Z1Z72Z1Z65Z3Z1Z3Z12Z1Z1Z1Z23Z1Z19Z1Z1Z1Z11Z1Z1Z1Z11Z1Z15Z1Z19Z1Z23Z1Z27Z1Z1Z1Z0Z1Z65Z4Z93Z1Z87Z1Z94Z1Z1Z1Z92.5Z3Z1Z1Z100Z1Z102Z1Z1Z1Z104Z1Z97Z20Z1Z138Z70Z1Z72Z1Z65Z3Z1Z3Z65Z10Z73Z1Z65Z1Z73Z1Z65Z5Z73Z1Z80Z1Z90Z1Z1Z5Z100Z1Z102Z1Z101Z1Z104Z1Z97Z20Z1Z138Z70Z1Z72Z1Z65Z8Z73Z5Z65Z2Z73Z5Z65Z4Z77Z1Z80Z1Z2Z1Z1Z5Z100Z1Z106Z1Z1Z1Z124Z1Z121Z1Z97Z1Z121Z1Z97Z4Z65Z2Z89Z1Z81Z1Z85Z2Z89Z1Z1Z1Z97Z5Z1Z138Z70Z1Z72Z1Z65Z8Z73Z1Z65Z3Z73Z1Z65Z2Z73Z1Z65Z8Z1Z1Z65Z1Z97Z7Z106Z1Z1Z4Z112Z1Z97Z4Z65Z2Z1Z1Z79Z1Z1Z1Z87Z1Z89Z1Z1Z2Z97Z4Z1Z138Z70Z1Z72Z1Z65Z4Z73Z1Z65Z3Z73Z1Z65Z3Z73Z1Z65Z2Z73Z2Z65Z7Z75Z1Z80Z1Z97Z7Z111Z3Z114Z1Z1Z1Z104Z1Z97Z4Z65Z1Z97Z12Z1Z138Z70Z1Z72Z1Z65Z4Z73Z6Z65Z2Z73Z1Z65Z3Z73Z1Z65Z7Z75Z1Z80Z1Z98Z1Z101Z7Z105Z2Z118Z1Z101Z1Z1Z1Z97Z1Z117Z1Z97Z2Z65Z1Z97Z12Z1Z138Z70Z1Z72Z1Z65Z12Z73Z1Z65Z3Z73Z4Z65Z4Z95Z1Z93Z1Z98Z1Z1Z8Z104Z1Z102Z1Z1Z2Z107Z1Z99Z1Z97Z1Z65Z3Z97Z11Z1Z138Z70Z1Z72Z1Z65Z12Z73Z1Z65Z4Z73Z1Z65Z6Z99Z1Z76Z1Z98Z1Z97Z4Z1Z4Z80Z1Z82Z1Z1Z1Z97Z1Z108Z1Z110Z1Z100Z1Z97Z1Z101Z1Z1Z1Z97Z5Z1Z144Z70Z1Z72Z1Z65Z12Z73Z6Z65Z5Z102Z1Z3Z1Z1Z6Z97Z2Z1Z2Z97Z1Z1Z1Z97Z1Z1Z2Z113Z1Z1Z1Z113Z1Z1Z2Z103Z1Z1Z1Z97Z3Z1Z144Z70Z1Z72Z1Z65Z23Z102Z1Z100Z1Z78Z1Z1Z3Z3Z3Z1Z1Z97Z4Z1Z8Z97Z1Z1Z1Z103Z1Z1Z1Z97Z1Z1Z144Z106Z1Z1Z1Z74Z1Z78Z1Z1Z1Z65Z3Z1Z1Z94Z1Z106Z1Z99Z1Z102Z3Z111Z1Z114Z1Z1Z6Z65Z2Z102Z1Z104Z1Z75Z3Z3Z1Z65Z3Z3Z1Z66Z1Z1Z11Z97Z1Z3Z1Z97Z1Z1Z1Z103Z1Z1Z144Z106Z1Z76Z3Z1Z1Z65Z3Z1Z1Z99Z1Z101Z1Z98Z1Z102Z3Z110Z1Z114Z1Z65Z1Z1Z1Z149.5Z1Z1Z1Z65Z1Z1Z1Z65Z2Z66Z1Z1Z8Z65Z2Z66Z1Z1Z10Z97Z3Z3Z1Z97Z1Z1Z144Z106Z1Z76Z1Z1Z1Z76Z1Z1Z1Z65Z3Z1Z1Z95Z1Z97Z1Z95Z1Z102Z1Z107Z1Z105Z1Z107Z1Z114Z1Z1Z1Z147.5Z1Z1Z1Z147.5Z1Z1Z2Z65Z4Z1Z1Z94Z1Z1Z1Z88.5Z1Z1Z1Z91.5Z1Z1Z1Z65Z3Z66Z1Z3Z9Z97Z5Z1Z144Z106Z1Z1Z4Z65Z3Z1Z15Z65Z4Z1Z7Z65Z4Z97Z14Z1Z144Z65Z19Z9Z1Z65Z32Z1Z144Z65Z19Z9Z1Z65Z32Z1Z144Z65Z19Z9Z1Z65Z18Z1Z4Z3Z1Z1Z153Z9Z7Z1Z1Z9Z1Z65Z9Z10Z1Z1Z1Z65Z8Z1Z168Z65Z17Z10Z1Z1Z178Z65Z4Z1Z6Z9Z2Z1Z4Z9Z1Z53Z3Z1Z179Z3Z1Z1Z3Z48Z1Z47Z1Z50Z1Z65Z1Z1Z1Z3Z1Z71Z1Z67Z1Z1Z1Z53Z1Z1Z3Z53Z1Z1Z178Z10Z1Z2Z1Z1Z1Z3Z1Z0Z1Z65Z1Z50Z1Z3Z1Z67Z1Z79Z1Z65Z1Z76Z1Z67Z1Z1Z1Z54.5Z1Z1Z1Z54.5Z1Z1Z176Z3Z1Z2Z1Z1Z1Z34Z1Z31Z1Z23Z1Z65Z1Z20Z1Z65Z8Z67Z1Z1Z182Z38Z1Z41Z4Z65Z9Z67Z1Z3Z7Z1Z171Z3Z1Z1Z2Z65Z6Z1Z2Z0Z1Z65Z13Z1Z171Z65Z1Z67Z1Z1Z1Z65Z4Z1Z1Z65Z1Z1Z2Z0Z1Z65Z9Z1Z175Z65Z2Z3Z1Z65Z1Z1Z8Z65Z9Z1Z175Z65Z3Z67Z1Z3Z1Z71Z1Z3Z1Z1Z4Z3Z1Z2Z1Z1Z4Z65Z4Z1Z175Z65Z1Z3Z1Z65Z5Z2Z1Z1Z1Z3Z1Z1Z3Z65Z8Z1Z175Z65Z1Z0Z1Z65Z5Z2Z1Z1Z1Z65Z1Z1Z2Z0Z1Z65Z8Z1Z176Z2Z1Z65Z5Z2Z1Z1Z1Z65Z1Z2Z1Z1Z1Z0Z1Z65Z8Z1Z175Z3Z3Z1Z5Z76Z1Z65Z1Z2Z1Z65Z1Z0Z1Z65Z8Z1Z175Z0Z1Z65Z1Z2Z1Z1Z2Z3Z1Z1Z2Z76Z1Z65Z2Z98Z1Z89Z1Z85Z7Z105Z1Z65Z5Z1Z170Z3Z1Z65Z1Z2Z2Z0Z2Z65Z5Z98Z1Z76.5Z8Z108Z1Z65Z5Z1Z170Z65Z2Z2Z1Z1Z2Z0Z1Z65Z5Z95Z1Z83Z8Z104Z1Z65Z5Z1Z170Z65Z2Z2Z2Z0Z2Z65Z4Z1Z4Z65Z2Z1Z5Z0Z1Z65Z4Z1Z170Z65Z1Z1Z4Z0Z1Z65Z3Z2Z1Z1Z1Z3Z3Z1Z2Z3Z3Z1Z1Z0Z1Z65Z5Z1Z175Z0Z1Z65Z4Z1Z1Z65Z3Z3Z2Z1Z3Z2Z1Z1Z1Z0Z1Z65Z4Z1Z170Z3Z1Z1Z1Z68Z1Z3Z3Z65Z3Z2Z1Z1Z1Z65Z5Z1Z3Z2Z1Z1Z1Z0Z1Z65Z4Z1Z170Z65Z1Z1Z1Z5Z1Z1Z1Z5Z3Z1Z1Z5Z1Z1Z1Z0Z1Z65Z5Z1Z3Z2Z1Z1Z1Z0Z1Z65Z4Z1Z180Z0Z1Z65Z7Z2Z1Z1Z1Z0Z1Z65Z5Z1Z170Z65Z1Z2Z1Z1Z8Z0Z1Z65Z8Z2Z1Z1Z1Z0Z1Z65Z4Z1Z170Z65Z1Z1Z9Z0Z1Z65Z1Z117Z1Z65Z6Z2Z1Z1Z1Z0Z1Z65Z4Z1Z180Z109Z1Z110Z2Z111Z1Z114Z1Z122Z1Z1Z1Z73Z1Z124Z1Z2Z1Z1Z1Z0Z1Z65Z7Z1Z178Z2Z2Z114Z1Z2Z1Z102Z1Z1Z1Z109Z1Z1Z2Z0Z1Z65Z8Z1Z178Z3Z1Z1Z1Z3Z1Z2Z1Z106Z1Z1Z1Z79Z1Z82Z1Z1Z2Z0Z1Z65Z7Z1Z182Z2Z1Z1Z1Z79Z1Z1Z6Z65Z5Z1Z182Z70Z2Z75Z1Z78Z1Z1Z192Z67Z1Z69Z1Z65Z2Z1Z2333Z5Z1Z137Z16Z1Z181Z151Z1Z1Z1Z167Z2Z1Z1Z162Z1Z170Z1Z179Z1Z1Z1Z182Z2Z187Z2Z190Z1Z140Z1Z1Z179Z135Z1Z1Z1Z150Z1Z161Z1Z166Z3Z163Z1Z169Z1Z176Z1Z1Z1Z179Z1Z182Z1Z186.00001111111112Z1Z193Z1Z190Z1Z140Z1Z1Z179Z137Z1Z1Z1Z147Z1Z157Z1Z162Z1Z169Z1Z162Z2Z166Z1Z172Z1Z174Z1Z179Z1Z182Z1Z183Z2Z190Z1Z140Z1Z1Z179Z137Z1Z139Z4Z163Z2Z143Z9Z140Z1Z1Z22523ZZB601Zg2ZB3341Zs0ZB3145Zg2a300d9999999999ZB1588Zg2aC300d9999999999v3ZB1784Zg2aC300d9999999999v3ZB1980Zg2aC300d9999999999v3ZB2176Zg2aC300d9999999999v3ZB2372Zg2aC300d9999999999v3ZB6665Zg1ZB219Zg3ZB626Zg4ZB38Zy42ZB1962Zg99ZB2157Zg99ZB1786Zg2a200s200d9999999999ZB1590Zg2a200s200d9999999999ZB6666Zg2ZB6667Zg3ZB6668Zg4ZB2376Zg5ZB2181Zg5ZB6669Zg5ZB3144Zg2ZB3556Zs0ZB4144Zs0ZB3752Zs0ZB3555Zg2d9999999999ZB3751Zg3d9999999999ZB4339Zg5d9999999999ZB4143Zg4d9999999999ZB4340Zs0ZB3565Zv4a100s100d30ZB4352Zv4a100s100d30ZB2779Zg2d9999999999ZB4733Zx35ZB2596Zg6ZB2792Zg6ZB2400Zg6ZB2988Zg6ZB2394Zx0y30ZB6670Zg6ZB10977ZxC30y70ZB15485Zx20y0ZB10783Zx0y25ZB3972Zg7ZB3776Zg7ZB6673Zg99ZB6671Zg7ZB11577Zy25ZZZZ
- cwktao15764
-
Scratcher
1000+ posts
Editor+ Discussion Forum
since editor+ is now shared, let me post my own stuff here (no replays pls)1246009196Z21Z2Z20Z1Z21Z1Z20Z1Z21Z13Z4Z1Z7Z1Z4Z2Z7Z1Z4Z1Z21Z1Z20Z1Z21Z1Z20Z1Z21Z9Z42Z1Z21Z4Z2Z154Z21Z2Z20Z1Z21Z1Z20Z1Z21Z13Z1Z2Z77Z1Z78Z1Z71Z1Z15Z1Z21Z1Z20Z1Z79Z4Z1Z1Z9Z3Z1Z1Z9Z2Z1Z1Z21Z4Z2Z154Z21Z2Z20Z1Z21Z1Z20Z1Z21Z7Z20Z1Z21Z5Z79Z1Z21Z6Z20Z1Z79Z1Z20Z1Z21Z2Z1Z8Z21Z4Z2Z154Z21Z2Z20Z1Z79Z1Z78Z1Z77Z1Z78Z1Z9Z1Z77Z1Z78Z1Z9Z1Z78Z1Z71Z1Z70Z1Z21Z4Z79Z1Z21Z6Z20Z1Z79Z1Z20Z1Z21Z2Z1Z1Z9Z3Z1Z1Z7Z2Z71Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z1Z79Z3Z81Z1Z79Z3Z21Z3Z79Z3Z20Z1Z21Z2Z42Z3Z20Z1Z79Z1Z20Z1Z21Z2Z1Z1Z3Z1Z21Z1Z3Z1Z1Z1Z13Z2Z15Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z1Z20Z3Z21Z1Z20Z2Z21Z4Z79Z1Z21Z2Z4Z1Z25Z1Z1Z5Z13Z1Z21Z10Z79Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z10Z20Z1Z79Z2Z4Z1Z1Z6Z13Z1Z21Z11Z79Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z12Z4Z1Z1Z6Z13Z1Z21Z1Z42Z1Z21Z2Z20Z6Z21Z2Z79Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z11Z4Z1Z1Z2Z24Z1Z21Z1Z24Z1Z1Z3Z16Z1Z1Z2Z5Z1Z79Z6Z1Z1Z51Z1Z1Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z3Z4Z1Z50Z7Z16Z1Z1Z2Z24Z1Z81Z1Z24Z1Z1Z3Z16Z1Z1Z2Z21Z1Z20Z6Z1Z1Z82Z1Z1Z1Z21Z17Z1Z141Z76Z1Z71Z1Z78Z1Z79Z1Z77Z1Z1Z1Z78Z1Z21Z1Z77Z1Z5Z1Z4Z1Z5Z1Z4Z1Z1Z1Z4Z1Z5Z1Z16Z1Z1Z2Z24Z1Z81Z1Z4Z1Z1Z2Z77Z1Z7Z1Z1Z1Z7Z1Z21Z27Z1Z141Z71Z1Z1Z2Z7Z1Z1Z1Z83Z1Z1Z1Z7Z1Z1Z1Z4Z1Z5Z1Z4Z1Z1Z1Z5Z1Z1Z1Z5Z1Z16Z1Z1Z2Z24Z1Z81Z1Z4Z1Z1Z2Z71Z1Z4Z1Z1Z1Z4Z1Z21Z1Z9Z2Z42Z1Z9Z2Z21Z21Z1Z145Z77Z1Z21Z1Z78Z1Z1Z2Z5Z1Z4Z1Z5Z1Z1Z2Z5Z2Z16Z1Z1Z2Z24Z1Z81Z2Z5Z1Z71Z1Z15Z1Z4Z1Z1Z2Z25Z1Z1Z4Z7Z1Z21Z7Z42Z1Z1Z1Z78Z1Z9Z3Z71Z1Z1Z1Z8Z1Z1Z1Z21Z4Z1Z141Z21Z13Z20Z1Z79Z1Z20Z1Z21Z5Z81Z1Z21Z1Z5Z1Z13Z1Z4Z1Z1Z6Z9Z1Z21Z9Z1Z5Z71Z1Z8Z1Z15Z1Z8Z1Z21Z4Z1Z141Z21Z13Z20Z1Z79Z1Z20Z1Z21Z5Z81Z1Z20Z1Z79Z4Z20Z1Z21Z2Z7Z1Z1Z1Z7Z1Z21Z1Z23Z1Z21Z7Z1Z5Z71Z1Z1Z1Z8Z1Z1Z1Z21Z4Z1Z141Z20Z1Z21Z3Z20Z1Z21Z8Z20Z1Z79Z1Z20Z1Z21Z5Z81Z1Z20Z6Z21Z2Z9Z1Z1Z1Z7Z1Z21Z1Z23Z1Z21Z1Z42Z1Z21Z5Z1Z1Z77Z1Z9Z3Z71Z1Z1Z3Z21Z4Z1Z141Z81Z1Z79Z4Z25Z1Z8Z1Z71Z1Z23Z1Z1Z1Z77Z1Z78Z1Z1Z1Z77Z1Z72Z1Z9Z1Z78Z1Z77Z1Z9Z1Z78Z1Z1Z1Z4Z1Z20Z1Z21Z3Z1Z7Z25Z1Z1Z4Z21Z4Z79Z1Z21Z12Z1Z141Z81Z2Z21Z2Z20Z1Z8Z1Z85Z1Z8Z1Z23Z1Z1Z1Z78Z1Z77Z1Z1Z1Z78Z1Z1Z1Z9Z1Z77Z1Z78Z1Z9Z1Z77Z1Z1Z1Z4Z1Z20Z1Z21Z3Z34Z1Z4Z1Z5Z1Z1Z1Z13Z3Z1Z1Z4Z1Z9Z1Z1Z1Z9Z1Z21Z4Z79Z1Z21Z12Z1Z141Z81Z2Z20Z1Z79Z2Z1Z1Z8Z1Z1Z1Z20Z1Z21Z8Z20Z1Z79Z1Z20Z1Z79Z1Z21Z5Z23Z2Z4Z1Z1Z5Z4Z1Z78Z1Z23Z1Z77Z1Z21Z3Z20Z1Z79Z1Z21Z12Z1Z141Z81Z2Z79Z2Z21Z1Z20Z1Z79Z1Z20Z1Z21Z2Z79Z5Z21Z2Z79Z5Z20Z1Z21Z3Z23Z2Z4Z1Z1Z5Z4Z1Z9Z1Z1Z1Z77Z1Z4Z1Z42Z1Z4Z1Z79Z2Z20Z1Z21Z3Z1Z149Z81Z2Z79Z1Z20Z1Z21Z2Z79Z1Z21Z3Z79Z1Z21Z2Z20Z1Z79Z1Z20Z1Z21Z1Z79Z1Z21Z8Z1Z1Z21Z8Z77Z1Z1Z4Z9Z1Z21Z6Z1Z149Z81Z2Z79Z2Z21Z2Z79Z1Z21Z3Z79Z1Z21Z3Z79Z1Z21Z1Z20Z1Z79Z2Z21Z7Z23Z2Z21Z7Z4Z3Z77Z1Z1Z1Z78Z1Z21Z11Z1Z144Z81Z2Z20Z1Z79Z1Z21Z2Z79Z6Z20Z1Z21Z1Z79Z1Z21Z3Z79Z1Z21Z7Z23Z2Z13Z1Z7Z8Z13Z1Z78Z1Z23Z1Z1Z1Z9Z1Z12Z1Z21Z9Z1Z144Z81Z2Z79Z2Z21Z2Z20Z1Z21Z7Z79Z1Z21Z2Z20Z1Z79Z4Z21Z4Z34Z1Z4Z1Z7Z1Z1Z8Z7Z1Z9Z1Z1Z2Z7Z1Z4Z1Z21Z9Z1Z144Z81Z2Z79Z1Z20Z1Z21Z9Z20Z1Z79Z1Z20Z1Z21Z3Z79Z1Z21Z6Z4Z1Z9Z1Z42Z1Z8Z4Z1Z4Z7Z1Z9Z1Z1Z1Z8Z1Z9Z1Z7Z1Z5Z1Z21Z1Z5Z1Z1Z1Z21Z1Z7Z1Z21Z3Z1Z144Z81Z2Z79Z2Z21Z10Z79Z6Z20Z1Z21Z4Z4Z1Z77Z1Z1Z6Z8Z2Z1Z2Z78Z1Z1Z1Z8Z1Z1Z2Z77Z1Z1Z1Z25Z1Z1Z2Z78Z1Z1Z1Z21Z1Z7Z1Z21Z1Z1Z144Z81Z2Z20Z1Z79Z1Z21Z21Z4Z2Z9Z1Z1Z3Z9Z1Z7Z1Z9Z1Z1Z1Z8Z4Z1Z8Z21Z1Z1Z1Z78Z1Z1Z1Z21Z1Z1Z144Z4Z1Z1Z1Z5Z2Z1Z1Z79Z3Z1Z1Z5Z2Z4Z1Z5Z3Z4Z1Z5Z1Z1Z6Z21Z2Z4Z5Z7Z1Z21Z3Z7Z1Z5Z1Z1Z11Z21Z1Z78Z1Z21Z1Z1Z1Z78Z1Z1Z144Z4Z4Z1Z1Z79Z3Z1Z1Z13Z1Z5Z1Z4Z6Z74Z1Z1Z1Z13Z1Z1Z1Z74Z1Z1Z1Z21Z2Z4Z1Z1Z8Z21Z2Z5Z1Z1Z10Z21Z3Z78Z1Z21Z1Z1Z144Z4Z2Z1Z1Z4Z1Z1Z1Z79Z3Z1Z1Z13Z1Z5Z1Z13Z1Z4Z1Z13Z1Z5Z1Z13Z1Z5Z1Z1Z1Z13Z1Z1Z1Z13Z1Z1Z2Z21Z4Z1Z1Z42Z1Z1Z1Z13Z1Z1Z1Z13Z1Z1Z1Z21Z3Z5Z1Z9Z8Z78Z1Z21Z1Z3Z1Z21Z1Z3Z1Z21Z1Z1Z144Z4Z1Z1Z4Z79Z3Z1Z15Z21Z4Z1Z7Z21Z18Z1Z144Z21Z52Z1Z144Z21Z52Z1Z144Z21Z38Z1Z158Z71Z6Z1Z1Z71Z1Z1Z9Z71Z1Z21Z1Z1Z177Z21Z19Z1Z177Z7Z3Z21Z1Z9Z3Z4Z1Z9Z1Z4Z1Z1Z189Z9Z1Z1Z3Z78Z1Z4Z1Z1Z1Z8Z1Z1Z1Z7Z1Z1Z186Z21Z1Z78Z1Z1Z1Z9Z2Z21Z1Z7Z1Z9Z1Z83Z1Z21Z7Z81Z1Z21Z13Z1Z163Z5Z1Z77Z1Z1Z1Z21Z1Z7Z1Z83Z1Z21Z1Z9Z1Z21Z11Z81Z1Z21Z13Z1Z166Z21Z6Z7Z3Z21Z7Z81Z1Z21Z13Z1Z163Z9Z1Z1Z2Z21Z6Z8Z1Z1Z1Z9Z1Z21Z7Z81Z1Z21Z5Z7Z1Z21Z2Z7Z1Z21Z4Z1Z163Z21Z1Z9Z1Z1Z1Z78Z1Z21Z1Z77Z1Z78Z1Z1Z1Z9Z1Z1Z1Z8Z1Z77Z1Z21Z6Z9Z1Z78Z1Z9Z4Z1Z5Z21Z4Z1Z163Z21Z2Z9Z1Z22Z1Z9Z1Z1Z6Z8Z1Z21Z6Z9Z1Z71Z1Z7Z1Z1Z2Z9Z1Z1Z1Z21Z1Z7Z1Z21Z1Z1Z1Z21Z9Z1Z158Z21Z3Z7Z1Z9Z1Z83Z1Z9Z1Z1Z4Z5Z1Z13Z1Z81Z4Z21Z1Z9Z1Z71Z1Z79Z1Z1Z2Z81Z1Z1Z1Z21Z1Z1Z3Z21Z9Z1Z158Z21Z1Z10Z1Z21Z5Z9Z1Z1Z1Z83Z1Z1Z2Z77Z1Z21Z3Z15Z1Z21Z1Z9Z1Z71Z1Z79Z1Z1Z2Z79Z1Z1Z1Z21Z1Z1Z1Z21Z13Z1Z156Z3Z1Z86Z1Z21Z5Z7Z1Z1Z1Z81Z1Z1Z2Z78Z1Z21Z13Z1Z1Z7Z1Z21Z1Z7Z1Z21Z1Z7Z1Z21Z9Z1Z155Z86Z1Z10Z1Z21Z5Z83Z1Z1Z1Z79Z1Z77Z1Z1Z1Z9Z1Z21Z13Z1Z7Z81Z1Z21Z7Z1Z155Z82Z1Z81Z1Z9Z1Z1Z3Z9Z1Z1Z2Z79Z1Z78Z1Z22Z1Z77Z1Z21Z20Z82Z1Z81Z2Z21Z5Z1Z155Z81Z1Z21Z1Z50Z1Z1Z2Z9Z1Z1Z3Z21Z1Z9Z1Z7Z1Z21Z9Z7Z1Z21Z11Z81Z1Z21Z1Z25Z1Z21Z5Z1Z155Z25Z1Z21Z1Z50Z1Z9Z2Z51Z1Z21Z13Z9Z1Z83Z1Z1Z1Z7Z1Z21Z9Z81Z2Z7Z1Z21Z11Z1Z150Z21Z2Z50Z1Z1Z2Z51Z1Z21Z12Z7Z1Z1Z4Z77Z1Z21Z8Z81Z1Z21Z1Z1Z1Z21Z11Z1Z150Z21Z2Z50Z1Z9Z2Z51Z1Z21Z3Z81Z1Z79Z2Z1Z2Z9Z2Z1Z4Z34Z1Z1Z3Z78Z1Z83Z1Z7Z1Z21Z5Z81Z2Z1Z1Z21Z11Z1Z150Z9Z2Z1Z3Z51Z1Z21Z3Z81Z1Z79Z1Z1Z11Z77Z1Z9Z1Z1Z1Z5Z1Z1Z1Z7Z1Z9Z1Z21Z5Z1Z1Z81Z7Z21Z4Z1Z155Z51Z1Z21Z3Z81Z2Z21Z3Z7Z2Z21Z2Z7Z1Z1Z3Z7Z1Z21Z1Z1Z4Z9Z1Z21Z5Z1Z1Z21Z6Z15Z1Z21Z4Z1Z150Z7Z1Z1Z1Z21Z1Z13Z1Z7Z1Z21Z4Z81Z2Z21Z8Z9Z1Z1Z2Z9Z1Z21Z1Z82Z1Z21Z1Z78Z1Z1Z1Z7Z1Z21Z5Z4Z2Z1Z1Z21Z9Z1Z150Z21Z1Z1Z1Z9Z1Z77Z1Z9Z2Z78Z1Z9Z2Z77Z1Z4Z1Z21Z8Z78Z1Z1Z1Z83Z1Z21Z2Z82Z1Z21Z1Z77Z1Z1Z1Z83Z1Z21Z6Z9Z1Z1Z1Z21Z9Z1Z150Z21Z1Z1Z9Z4Z1Z21Z8Z83Z1Z1Z1Z9Z1Z21Z1Z25Z1Z81Z1Z21Z1Z83Z1Z1Z1Z77Z1Z21Z6Z1Z2Z21Z9Z1Z150Z21Z1Z9Z1Z1Z8Z4Z1Z21Z8Z9Z1Z1Z1Z7Z1Z21Z4Z9Z1Z1Z2Z21Z3Z81Z1Z79Z1Z82Z1Z9Z2Z21Z7Z1Z162Z4Z1Z21Z8Z7Z1Z1Z1Z9Z1Z21Z4Z1Z2Z9Z1Z21Z3Z81Z1Z21Z11Z1Z162Z5Z1Z4Z4Z13Z1Z34Z1Z4Z2Z78Z1Z1Z2Z7Z1Z21Z3Z9Z1Z1Z1Z21Z4Z81Z1Z21Z11Z1Z163Z4Z2Z13Z1Z4Z2Z1Z1Z15Z1Z1Z3Z9Z1Z21Z4Z7Z1Z1Z6Z21Z1Z1Z6Z21Z4Z1Z163Z13Z1Z5Z1Z13Z1Z4Z2Z1Z2Z34Z1Z1Z2Z7Z1Z21Z4Z9Z1Z1Z5Z9Z1Z81Z1Z78Z1Z1Z1Z15Z1Z1Z3Z21Z4Z1Z167Z4Z1Z1Z5Z78Z1Z9Z4Z1Z6Z78Z1Z81Z1Z9Z1Z1Z5Z21Z4Z1Z167Z4Z1Z34Z1Z1Z14Z78Z1Z7Z1Z21Z1Z7Z1Z77Z1Z1Z3Z21Z5Z1Z167Z4Z1Z1Z16Z9Z1Z7Z1Z9Z1Z1Z3Z21Z6Z1Z167Z77Z1Z1Z21Z21Z7Z1Z187Z21Z9Z1Z186Z21Z10Z1Z25044ZZ65Z2Z9Z1Z65Z1Z9Z1Z65Z17Z73Z1Z65Z19Z101Z3Z1Z151Z65Z2Z9Z1Z65Z1Z9Z1Z65Z13Z1Z2Z71Z2Z69Z1Z65Z7Z1Z1Z65Z2Z69Z1Z1Z1Z65Z2Z1Z1Z65Z4Z101Z3Z1Z151Z65Z2Z9Z1Z65Z1Z9Z1Z65Z7Z9Z1Z65Z17Z1Z8Z65Z4Z101Z3Z1Z151Z65Z2Z9Z2Z13Z1Z15Z2Z9Z2Z15Z1Z9Z3Z65Z17Z1Z1Z79Z3Z1Z1Z67Z2Z69Z1Z65Z4Z1Z154Z65Z2Z9Z3Z65Z1Z9Z3Z10Z1Z9Z3Z65Z17Z1Z1Z65Z3Z1Z1Z71Z1Z72Z1Z65Z5Z1Z154Z65Z2Z9Z3Z65Z1Z9Z3Z65Z1Z9Z2Z65Z7Z2Z1Z65Z1Z1Z5Z0Z1Z65Z15Z1Z154Z65Z2Z9Z3Z65Z13Z2Z1Z1Z6Z0Z1Z65Z16Z1Z154Z65Z2Z9Z3Z65Z12Z2Z1Z1Z6Z0Z1Z65Z4Z69Z6Z65Z7Z1Z154Z65Z2Z9Z3Z65Z11Z2Z1Z1Z2Z78Z1Z65Z1Z104Z1Z1Z3Z8Z1Z1Z2Z67Z1Z77Z6Z1Z1Z69Z1Z1Z1Z65Z4Z1Z154Z65Z2Z9Z3Z65Z3Z14Z1Z17Z7Z2Z1Z1Z2Z78Z1Z2Z1Z104Z1Z1Z3Z8Z1Z1Z2Z65Z1Z69Z6Z1Z1Z70Z1Z1Z1Z65Z1Z97Z16Z1Z141Z9Z1Z89Z1Z9Z3Z1Z1Z13Z1Z65Z1Z13Z1Z39Z1Z35Z1Z43Z1Z67Z1Z1Z1Z51Z1Z42Z1Z2Z1Z1Z2Z78Z1Z2Z2Z1Z2Z68Z1Z98Z1Z1Z1Z100Z1Z65Z11Z97Z16Z1Z141Z89Z1Z1Z2Z9Z1Z1Z1Z3Z1Z1Z1Z13Z1Z1Z1Z28Z1Z36Z1Z40Z1Z1Z1Z48Z1Z1Z1Z44Z1Z2Z1Z1Z2Z78Z1Z2Z2Z1Z2Z65Z1Z78Z1Z1Z1Z76Z1Z65Z3Z69Z1Z65Z7Z97Z16Z1Z145Z11Z1Z65Z1Z11Z1Z1Z2Z24Z1Z37Z1Z40Z1Z1Z2Z61.5Z2Z2Z1Z1Z2Z78Z1Z2Z1Z0Z1Z2Z1Z65Z2Z66Z1Z1Z2Z65Z1Z1Z4Z80Z1Z65Z5Z97Z2Z102Z1Z1Z1Z65Z4Z97Z1Z1Z1Z97Z1Z1Z1Z97Z4Z1Z141Z65Z13Z9Z3Z65Z5Z0Z1Z65Z1Z2Z1Z0Z1Z66Z1Z1Z6Z80Z1Z65Z6Z97Z3Z1Z5Z97Z8Z1Z141Z65Z13Z9Z3Z65Z5Z0Z1Z65Z8Z102Z1Z1Z1Z100Z1Z65Z1Z102Z1Z65Z4Z97Z3Z1Z5Z97Z1Z1Z1Z97Z1Z1Z1Z97Z4Z1Z141Z65Z13Z9Z3Z65Z5Z0Z1Z65Z8Z66Z1Z1Z1Z68Z1Z65Z1Z97Z1Z65Z1Z97Z1Z65Z2Z97Z3Z1Z1Z99Z4Z97Z1Z1Z3Z97Z4Z1Z141Z70Z1Z65Z5Z1Z1Z77Z1Z12Z1Z1Z1Z21Z2Z1Z1Z13Z1Z68Z1Z13Z1Z17Z1Z21Z2Z25Z1Z1Z1Z0Z1Z65Z4Z1Z7Z69Z1Z1Z4Z65Z1Z97Z16Z1Z141Z70Z1Z72Z1Z65Z3Z1Z3Z12Z1Z1Z1Z23Z1Z19Z1Z1Z1Z11Z1Z1Z1Z11Z1Z15Z1Z19Z1Z23Z1Z27Z1Z1Z1Z0Z1Z65Z4Z93Z1Z87Z1Z94Z1Z1Z1Z92.5Z3Z1Z1Z100Z1Z102Z1Z1Z1Z104Z1Z97Z17Z1Z141Z70Z1Z72Z1Z65Z3Z1Z3Z65Z10Z73Z1Z65Z1Z73Z1Z65Z5Z73Z1Z80Z1Z90Z1Z1Z5Z100Z1Z102Z1Z101Z1Z104Z1Z97Z17Z1Z141Z70Z1Z72Z1Z65Z8Z73Z5Z65Z2Z73Z5Z65Z4Z77Z1Z80Z1Z2Z1Z1Z5Z100Z1Z106Z1Z1Z1Z124Z1Z121Z1Z97Z1Z121Z1Z97Z6Z1Z149Z70Z1Z72Z1Z65Z8Z73Z1Z65Z3Z73Z1Z65Z2Z73Z1Z65Z8Z1Z1Z65Z1Z97Z7Z106Z1Z1Z4Z112Z1Z97Z6Z1Z149Z70Z1Z72Z1Z65Z4Z73Z1Z65Z3Z73Z1Z65Z3Z73Z1Z65Z2Z73Z2Z65Z7Z75Z1Z80Z1Z97Z7Z111Z3Z114Z1Z1Z1Z104Z1Z97Z11Z1Z144Z70Z1Z72Z1Z65Z4Z73Z6Z65Z2Z73Z1Z65Z3Z73Z1Z65Z7Z75Z1Z80Z1Z98Z1Z101Z7Z105Z2Z118Z1Z101Z1Z1Z1Z97Z1Z117Z1Z97Z9Z1Z144Z70Z1Z72Z1Z65Z12Z73Z1Z65Z3Z73Z4Z65Z4Z95Z1Z93Z1Z98Z1Z1Z8Z104Z1Z102Z1Z1Z2Z107Z1Z99Z1Z97Z9Z1Z144Z70Z1Z72Z1Z65Z12Z73Z1Z65Z4Z73Z1Z65Z6Z99Z1Z76Z1Z98Z1Z97Z4Z1Z4Z80Z1Z82Z1Z1Z1Z97Z1Z108Z1Z110Z1Z100Z1Z97Z1Z101Z1Z1Z1Z97Z5Z1Z144Z70Z1Z72Z1Z65Z12Z73Z6Z65Z5Z102Z1Z3Z1Z1Z6Z97Z2Z1Z2Z97Z1Z1Z1Z97Z1Z1Z2Z113Z1Z1Z1Z113Z1Z1Z2Z103Z1Z1Z1Z97Z3Z1Z144Z70Z1Z72Z1Z65Z23Z102Z1Z100Z1Z78Z1Z1Z3Z3Z3Z1Z1Z97Z4Z1Z8Z97Z1Z1Z1Z103Z1Z1Z1Z97Z1Z1Z144Z106Z1Z1Z1Z74Z1Z78Z1Z1Z1Z65Z3Z1Z1Z94Z1Z106Z1Z99Z1Z102Z3Z111Z1Z114Z1Z1Z6Z65Z2Z102Z1Z104Z1Z75Z3Z3Z1Z65Z3Z3Z1Z66Z1Z1Z11Z97Z1Z3Z1Z97Z1Z1Z1Z103Z1Z1Z144Z106Z1Z76Z3Z1Z1Z65Z3Z1Z1Z99Z1Z101Z1Z98Z1Z102Z3Z110Z1Z114Z1Z65Z1Z1Z1Z149.5Z1Z1Z1Z65Z1Z1Z1Z65Z2Z66Z1Z1Z8Z65Z2Z66Z1Z1Z10Z97Z3Z3Z1Z97Z1Z1Z144Z106Z1Z76Z1Z1Z1Z76Z1Z1Z1Z65Z3Z1Z1Z95Z1Z97Z1Z95Z1Z102Z1Z107Z1Z105Z1Z107Z1Z114Z1Z1Z1Z147.5Z1Z1Z1Z147.5Z1Z1Z2Z65Z4Z1Z1Z94Z1Z1Z1Z88.5Z1Z1Z1Z91.5Z1Z1Z1Z65Z3Z66Z1Z3Z9Z97Z5Z1Z144Z106Z1Z1Z4Z65Z3Z1Z15Z65Z4Z1Z7Z65Z4Z97Z14Z1Z144Z65Z52Z1Z144Z65Z52Z1Z144Z65Z38Z1Z158Z9Z6Z1Z1Z9Z1Z1Z9Z9Z1Z65Z1Z1Z177Z65Z19Z1Z177Z65Z4Z1Z195Z3Z1Z1Z3Z0Z1Z3Z1Z1Z1Z65Z1Z1Z1Z3Z1Z1Z186Z65Z1Z2Z1Z1Z1Z3Z1Z0Z1Z65Z1Z3Z3Z65Z7Z0Z1Z65Z13Z1Z163Z3Z1Z2Z1Z1Z1Z65Z1Z3Z2Z65Z1Z3Z1Z65Z11Z0Z1Z65Z13Z1Z166Z65Z16Z0Z1Z65Z13Z1Z163Z3Z1Z1Z2Z65Z6Z1Z2Z0Z1Z65Z7Z0Z1Z65Z5Z1Z1Z65Z7Z1Z163Z65Z1Z2Z1Z1Z1Z65Z4Z1Z1Z65Z1Z1Z2Z0Z1Z65Z12Z1Z5Z65Z4Z1Z163Z65Z2Z3Z1Z65Z1Z1Z8Z65Z6Z2Z1Z65Z1Z3Z1Z1Z2Z3Z1Z1Z1Z65Z3Z1Z1Z65Z9Z1Z158Z65Z3Z3Z4Z1Z4Z3Z1Z2Z1Z1Z4Z65Z1Z2Z1Z65Z2Z1Z2Z65Z1Z1Z1Z65Z1Z1Z3Z65Z9Z1Z158Z65Z1Z3Z1Z65Z5Z2Z1Z1Z1Z3Z1Z1Z3Z65Z5Z2Z1Z65Z2Z1Z2Z65Z1Z1Z1Z65Z1Z1Z1Z65Z13Z1Z156Z65Z1Z0Z1Z65Z5Z2Z1Z1Z1Z65Z1Z1Z2Z0Z1Z65Z13Z1Z1Z65Z14Z1Z156Z2Z1Z65Z5Z2Z1Z1Z1Z65Z1Z2Z1Z1Z1Z0Z1Z65Z13Z1Z7Z0Z1Z65Z7Z1Z155Z3Z3Z1Z6Z65Z1Z2Z1Z65Z1Z0Z1Z65Z20Z0Z1Z1Z2Z65Z5Z1Z155Z0Z1Z65Z1Z2Z1Z1Z2Z3Z1Z1Z3Z65Z1Z3Z2Z65Z21Z0Z1Z65Z1Z3Z1Z65Z5Z1Z155Z3Z1Z65Z1Z2Z2Z0Z2Z65Z15Z1Z1Z65Z10Z1Z1Z0Z1Z65Z12Z1Z150Z65Z2Z2Z1Z1Z2Z0Z1Z65Z13Z1Z4Z65Z9Z0Z1Z65Z1Z1Z1Z65Z11Z1Z150Z65Z2Z2Z2Z0Z2Z65Z3Z2Z3Z1Z2Z65Z2Z1Z4Z3Z1Z1Z4Z65Z7Z3Z2Z1Z1Z65Z11Z1Z150Z65Z2Z1Z3Z0Z1Z65Z3Z2Z2Z1Z11Z3Z2Z1Z3Z65Z7Z1Z8Z65Z4Z1Z155Z0Z1Z65Z3Z2Z1Z0Z1Z65Z3Z3Z2Z65Z2Z2Z1Z1Z3Z0Z1Z65Z1Z1Z4Z0Z1Z65Z5Z1Z1Z65Z6Z1Z1Z65Z4Z1Z150Z3Z1Z1Z1Z65Z1Z3Z2Z65Z4Z2Z1Z0Z1Z65Z8Z2Z1Z1Z2Z0Z1Z65Z1Z0Z1Z65Z1Z2Z1Z1Z1Z0Z1Z65Z5Z3Z2Z1Z1Z65Z9Z1Z150Z65Z1Z1Z9Z0Z1Z65Z8Z2Z1Z1Z1Z0Z1Z65Z2Z1Z1Z65Z1Z2Z1Z1Z1Z0Z1Z65Z7Z1Z1Z65Z9Z1Z150Z65Z1Z1Z9Z0Z1Z65Z8Z2Z1Z1Z1Z0Z1Z65Z1Z3Z1Z0Z1Z65Z1Z2Z1Z1Z1Z0Z1Z65Z6Z1Z2Z65Z9Z1Z150Z65Z1Z2Z1Z1Z8Z0Z1Z65Z8Z2Z1Z1Z1Z0Z1Z65Z4Z2Z1Z1Z2Z65Z3Z2Z1Z65Z1Z3Z3Z65Z7Z1Z162Z0Z1Z65Z8Z2Z1Z1Z1Z0Z1Z65Z4Z1Z2Z0Z1Z65Z3Z2Z1Z65Z11Z1Z162Z0Z1Z1Z4Z2Z1Z3Z1Z1Z2Z2Z1Z1Z2Z0Z1Z65Z3Z2Z1Z1Z1Z65Z4Z2Z1Z65Z11Z1Z163Z2Z5Z1Z1Z65Z1Z1Z3Z0Z1Z65Z4Z2Z1Z1Z6Z65Z1Z1Z6Z65Z4Z1Z163Z3Z1Z1Z1Z3Z1Z2Z2Z1Z5Z0Z1Z65Z4Z2Z1Z1Z5Z0Z1Z65Z1Z2Z1Z1Z5Z65Z4Z1Z167Z2Z1Z1Z16Z0Z1Z3Z1Z2Z1Z1Z5Z65Z4Z1Z167Z2Z1Z1Z15Z0Z1Z3Z1Z65Z1Z3Z1Z2Z1Z1Z3Z65Z5Z1Z167Z2Z1Z1Z22Z65Z6Z1Z189Z65Z7Z1Z187Z65Z9Z1Z186Z65Z10Z1Z25044ZZB601Zg2ZB3341Zs0ZB3145Zg2a300d9999999999ZB1588Zg2aC300d9999999999v3ZB1784Zg2aC300d9999999999v3ZB1980Zg2aC300d9999999999v3ZB2176Zg2aC300d9999999999v3ZB2372Zg2aC300d9999999999v3ZB6665Zg1ZB219Zg3ZB626Zg4ZB38Zy42ZB1962Zg99ZB2157Zg99ZB1786Zg2a200s200d9999999999ZB1590Zg2a200s200d9999999999ZB6666Zg2ZB6667Zg3ZB6668Zg4ZB2376Zg5ZB2181Zg5ZB6669Zg5ZB3144Zg2ZB3556Zs0ZB4144Zs0ZB3752Zs0ZB3555Zg2d9999999999ZB3751Zg3d9999999999ZB4339Zg5d9999999999ZB4143Zg4d9999999999ZB4340Zs0ZB3565Zv4a100s100d30ZB4352Zv4a100s100d30ZB2779Zg2d9999999999ZB4733Zx35ZB2596Zg6ZB2792Zg6ZB2400Zg6ZB2988Zg6ZB2394Zx0y30ZB6672Zg99ZB6670Zg6ZB8840Zg bad news but the merge might take a while
1245673196Z21Z2Z20Z1Z21Z1Z20Z1Z21Z13Z4Z1Z7Z1Z4Z2Z7Z1Z4Z1Z21Z1Z20Z1Z21Z1Z20Z1Z21Z9Z42Z1Z21Z4Z2Z154Z21Z2Z20Z1Z21Z1Z20Z1Z21Z13Z1Z2Z77Z1Z78Z1Z71Z1Z15Z1Z21Z1Z20Z1Z79Z4Z1Z1Z9Z3Z1Z1Z9Z2Z1Z1Z21Z4Z2Z154Z21Z2Z20Z1Z21Z1Z20Z1Z21Z7Z20Z1Z21Z5Z79Z1Z21Z6Z20Z1Z79Z1Z20Z1Z21Z2Z1Z8Z21Z4Z2Z154Z21Z2Z20Z1Z79Z1Z78Z1Z77Z1Z78Z1Z9Z1Z77Z1Z78Z1Z9Z1Z78Z1Z71Z1Z70Z1Z21Z4Z79Z1Z21Z6Z20Z1Z79Z1Z20Z1Z21Z2Z1Z1Z9Z3Z1Z1Z7Z2Z71Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z1Z79Z3Z81Z1Z79Z3Z21Z3Z79Z3Z20Z1Z21Z2Z42Z3Z20Z1Z79Z1Z20Z1Z21Z2Z1Z1Z3Z1Z21Z1Z3Z1Z1Z1Z13Z2Z15Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z1Z20Z3Z21Z1Z20Z2Z21Z4Z79Z1Z21Z2Z4Z1Z25Z1Z1Z5Z13Z1Z21Z10Z79Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z10Z20Z1Z79Z2Z4Z1Z1Z6Z13Z1Z21Z11Z79Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z12Z4Z1Z1Z6Z13Z1Z21Z1Z42Z1Z21Z2Z20Z6Z21Z2Z79Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z11Z4Z1Z1Z2Z24Z1Z21Z1Z24Z1Z1Z3Z16Z1Z1Z2Z5Z1Z79Z6Z1Z1Z51Z1Z1Z1Z21Z4Z1Z154Z21Z2Z20Z1Z79Z1Z20Z1Z21Z3Z4Z1Z50Z7Z16Z1Z1Z2Z24Z1Z81Z1Z24Z1Z1Z3Z16Z1Z1Z2Z21Z1Z20Z6Z1Z1Z82Z1Z1Z1Z21Z17Z1Z141Z76Z1Z71Z1Z78Z1Z79Z1Z77Z1Z1Z1Z78Z1Z21Z1Z77Z1Z5Z1Z4Z1Z5Z1Z4Z1Z1Z1Z4Z1Z5Z1Z16Z1Z1Z2Z24Z1Z81Z1Z4Z1Z1Z2Z77Z1Z7Z1Z1Z1Z7Z1Z21Z27Z1Z141Z71Z1Z1Z2Z7Z1Z1Z1Z83Z1Z1Z1Z7Z1Z1Z1Z4Z1Z5Z1Z4Z1Z1Z1Z5Z1Z1Z1Z5Z1Z16Z1Z1Z2Z24Z1Z81Z1Z4Z1Z1Z2Z71Z1Z4Z1Z1Z1Z4Z1Z21Z1Z9Z2Z42Z1Z9Z2Z21Z21Z1Z145Z77Z1Z21Z1Z78Z1Z1Z2Z5Z1Z4Z1Z5Z1Z1Z2Z5Z2Z16Z1Z1Z2Z24Z1Z81Z2Z5Z1Z71Z1Z15Z1Z4Z1Z1Z2Z25Z1Z1Z4Z7Z1Z21Z7Z42Z1Z1Z1Z78Z1Z9Z3Z71Z1Z1Z1Z8Z1Z1Z1Z21Z4Z1Z141Z21Z13Z20Z1Z79Z1Z20Z1Z21Z5Z81Z1Z21Z1Z5Z1Z13Z1Z4Z1Z1Z6Z9Z1Z21Z9Z1Z5Z71Z1Z8Z1Z15Z1Z8Z1Z21Z4Z1Z141Z21Z13Z20Z1Z79Z1Z20Z1Z21Z5Z81Z1Z20Z1Z79Z4Z20Z1Z21Z2Z7Z1Z1Z1Z7Z1Z21Z1Z23Z1Z21Z7Z1Z5Z71Z1Z1Z1Z8Z1Z1Z1Z21Z4Z1Z141Z20Z1Z21Z3Z20Z1Z21Z8Z20Z1Z79Z1Z20Z1Z21Z5Z81Z1Z20Z6Z21Z2Z9Z1Z1Z1Z7Z1Z21Z1Z23Z1Z21Z1Z42Z1Z21Z5Z1Z1Z77Z1Z9Z3Z71Z1Z1Z3Z21Z4Z1Z141Z81Z1Z79Z4Z25Z1Z8Z1Z71Z1Z23Z1Z1Z1Z77Z1Z78Z1Z1Z1Z77Z1Z72Z1Z9Z1Z78Z1Z77Z1Z9Z1Z78Z1Z1Z1Z4Z1Z20Z1Z21Z3Z1Z7Z25Z1Z1Z4Z21Z4Z79Z1Z21Z15Z1Z138Z81Z2Z21Z2Z20Z1Z8Z1Z85Z1Z8Z1Z23Z1Z1Z1Z78Z1Z77Z1Z1Z1Z78Z1Z1Z1Z9Z1Z77Z1Z78Z1Z9Z1Z77Z1Z1Z1Z4Z1Z20Z1Z21Z3Z34Z1Z4Z1Z5Z1Z1Z1Z13Z3Z1Z1Z4Z1Z9Z1Z1Z1Z9Z1Z21Z4Z79Z1Z21Z15Z1Z138Z81Z2Z20Z1Z79Z2Z1Z1Z8Z1Z1Z1Z20Z1Z21Z8Z20Z1Z79Z1Z20Z1Z79Z1Z21Z5Z23Z2Z4Z1Z1Z5Z4Z1Z78Z1Z23Z1Z77Z1Z21Z3Z20Z1Z79Z1Z21Z15Z1Z138Z81Z2Z79Z2Z21Z1Z20Z1Z79Z1Z20Z1Z21Z2Z79Z5Z21Z2Z79Z5Z20Z1Z21Z3Z23Z2Z4Z1Z1Z5Z4Z1Z9Z1Z1Z1Z77Z1Z4Z1Z42Z1Z4Z1Z79Z2Z20Z1Z21Z1Z79Z2Z78Z1Z77Z1Z78Z1Z77Z1Z71Z1Z8Z1Z15Z1Z21Z4Z1Z138Z81Z2Z79Z1Z20Z1Z21Z2Z79Z1Z21Z3Z79Z1Z21Z2Z20Z1Z79Z1Z20Z1Z21Z1Z79Z1Z21Z8Z1Z1Z21Z8Z77Z1Z1Z4Z9Z1Z21Z4Z79Z2Z1Z1Z78Z1Z1Z1Z78Z1Z71Z1Z8Z2Z21Z4Z1Z138Z81Z2Z79Z2Z21Z2Z79Z1Z21Z3Z79Z1Z21Z3Z79Z1Z21Z1Z20Z1Z79Z2Z21Z7Z23Z2Z21Z7Z4Z3Z77Z1Z1Z1Z78Z1Z21Z4Z79Z1Z21Z12Z1Z138Z81Z2Z20Z1Z79Z1Z21Z2Z79Z6Z20Z1Z21Z1Z79Z1Z21Z3Z79Z1Z21Z7Z23Z2Z13Z1Z7Z8Z13Z1Z78Z1Z23Z1Z1Z1Z9Z1Z12Z1Z21Z2Z79Z1Z21Z12Z1Z138Z81Z2Z79Z2Z21Z2Z20Z1Z21Z7Z79Z1Z21Z2Z20Z1Z79Z4Z21Z4Z34Z1Z4Z1Z7Z1Z1Z8Z7Z1Z9Z1Z1Z2Z7Z1Z4Z1Z21Z1Z20Z1Z79Z1Z20Z1Z21Z11Z1Z138Z81Z2Z79Z1Z20Z1Z21Z9Z20Z1Z79Z1Z20Z1Z21Z3Z79Z1Z21Z6Z4Z1Z9Z1Z42Z1Z8Z4Z1Z4Z7Z1Z9Z1Z1Z1Z8Z1Z9Z1Z7Z1Z5Z1Z21Z1Z5Z1Z1Z1Z21Z1Z7Z1Z21Z3Z1Z144Z81Z2Z79Z2Z21Z10Z79Z6Z20Z1Z21Z4Z4Z1Z77Z1Z1Z6Z8Z2Z1Z2Z78Z1Z1Z1Z8Z1Z1Z2Z77Z1Z1Z1Z25Z1Z1Z2Z78Z1Z1Z1Z21Z1Z7Z1Z21Z1Z1Z144Z81Z2Z20Z1Z79Z1Z21Z21Z4Z2Z9Z1Z1Z3Z9Z1Z7Z1Z9Z1Z1Z1Z8Z4Z1Z8Z21Z1Z1Z1Z78Z1Z1Z1Z21Z1Z1Z144Z4Z1Z1Z1Z5Z2Z1Z1Z79Z3Z1Z1Z5Z2Z4Z1Z5Z3Z4Z1Z5Z1Z1Z6Z21Z2Z4Z5Z7Z1Z21Z3Z7Z1Z5Z1Z1Z11Z21Z1Z78Z1Z21Z1Z1Z1Z78Z1Z1Z144Z4Z4Z1Z1Z79Z3Z1Z1Z13Z1Z5Z1Z4Z6Z74Z1Z1Z1Z13Z1Z1Z1Z74Z1Z1Z1Z21Z2Z4Z1Z1Z8Z21Z2Z5Z1Z1Z10Z21Z3Z78Z1Z21Z1Z1Z144Z4Z2Z1Z1Z4Z1Z1Z1Z79Z3Z1Z1Z13Z1Z5Z1Z13Z1Z4Z1Z13Z1Z5Z1Z13Z1Z5Z1Z1Z1Z13Z1Z1Z1Z13Z1Z1Z2Z21Z4Z1Z1Z42Z1Z1Z1Z13Z1Z1Z1Z13Z1Z1Z1Z21Z3Z5Z1Z9Z8Z78Z1Z21Z1Z3Z1Z21Z1Z3Z1Z21Z1Z1Z144Z4Z1Z1Z4Z79Z3Z1Z15Z21Z4Z1Z7Z21Z18Z1Z144Z21Z19Z79Z1Z21Z32Z1Z144Z21Z19Z79Z1Z21Z32Z1Z144Z21Z19Z79Z1Z21Z18Z1Z4Z82Z1Z1Z153Z71Z7Z1Z1Z71Z1Z21Z9Z13Z1Z1Z1Z9Z8Z1Z168Z21Z17Z13Z1Z1Z178Z7Z3Z21Z1Z9Z3Z4Z1Z9Z1Z4Z1Z9Z1Z77Z1Z1Z4Z25Z1Z8Z3Z1Z179Z9Z1Z1Z3Z78Z1Z4Z1Z77Z1Z8Z1Z1Z1Z7Z3Z1Z1Z8Z1Z1Z3Z8Z1Z1Z178Z13Z1Z78Z1Z1Z1Z9Z2Z21Z1Z9Z2Z78Z1Z13Z1Z21Z1Z13Z1Z77Z1Z1Z1Z8Z1Z1Z1Z8Z1Z1Z176Z5Z1Z77Z1Z1Z1Z4Z1Z9Z1Z7Z1Z21Z1Z9Z1Z21Z8Z9Z1Z1Z182Z81Z1Z79Z3Z15Z1Z21Z1Z7Z3Z21Z5Z9Z8Z1Z171Z9Z1Z1Z2Z21Z6Z8Z1Z1Z1Z9Z1Z21Z13Z1Z171Z21Z1Z9Z1Z1Z1Z78Z1Z21Z1Z77Z1Z78Z1Z1Z1Z9Z1Z1Z1Z8Z1Z77Z1Z21Z9Z1Z175Z21Z2Z9Z1Z22Z1Z9Z1Z1Z6Z8Z1Z21Z9Z1Z175Z21Z3Z9Z4Z1Z4Z5Z1Z13Z1Z81Z4Z21Z4Z1Z175Z21Z1Z10Z1Z21Z5Z9Z1Z1Z1Z83Z1Z1Z2Z77Z1Z21Z3Z15Z1Z21Z4Z1Z175Z3Z1Z86Z1Z21Z5Z7Z1Z1Z1Z81Z1Z1Z2Z78Z1Z21Z8Z1Z175Z86Z1Z10Z1Z21Z5Z83Z1Z1Z1Z79Z1Z77Z1Z1Z1Z9Z1Z21Z8Z1Z175Z82Z1Z81Z1Z9Z1Z1Z3Z9Z1Z1Z1Z78Z1Z79Z1Z78Z1Z22Z1Z77Z1Z21Z8Z1Z175Z81Z1Z21Z1Z50Z1Z1Z2Z9Z1Z1Z2Z77Z1Z21Z2Z13Z1Z4Z8Z13Z1Z21Z5Z1Z170Z25Z1Z21Z1Z50Z1Z9Z2Z51Z1Z21Z5Z4Z1Z13Z8Z4Z1Z21Z5Z1Z170Z21Z2Z50Z1Z1Z2Z51Z1Z21Z5Z13Z1Z4Z8Z13Z1Z21Z5Z1Z170Z21Z2Z50Z1Z9Z2Z51Z1Z21Z3Z20Z1Z79Z1Z1Z3Z9Z2Z1Z5Z7Z1Z21Z4Z1Z170Z9Z1Z77Z1Z1Z3Z51Z1Z21Z3Z81Z1Z79Z1Z9Z3Z1Z2Z9Z3Z1Z1Z9Z1Z79Z1Z21Z4Z1Z175Z51Z1Z21Z3Z20Z1Z79Z1Z21Z3Z7Z2Z79Z3Z9Z1Z1Z1Z4Z1Z21Z4Z1Z170Z7Z1Z1Z1Z42Z1Z13Z1Z7Z1Z4Z1Z21Z3Z81Z1Z79Z1Z21Z5Z79Z3Z7Z1Z1Z1Z9Z1Z21Z4Z1Z170Z42Z1Z1Z1Z78Z1Z9Z1Z78Z1Z9Z2Z1Z1Z78Z1Z77Z1Z4Z1Z20Z1Z21Z4Z79Z3Z77Z1Z1Z1Z7Z1Z21Z4Z1Z180Z4Z1Z21Z7Z7Z1Z1Z1Z9Z1Z79Z1Z21Z4Z1Z170Z79Z1Z9Z1Z1Z8Z4Z1Z21Z8Z9Z1Z1Z1Z4Z1Z21Z4Z1Z170Z78Z1Z1Z9Z4Z1Z21Z1Z42Z1Z21Z6Z7Z1Z1Z1Z9Z1Z21Z4Z1Z180Z78Z1Z5Z2Z4Z1Z5Z1Z4Z1Z1Z1Z34Z1Z5Z1Z78Z1Z1Z1Z7Z1Z21Z7Z1Z178Z4Z5Z1Z1Z15Z1Z1Z2Z9Z1Z79Z1Z21Z7Z1Z178Z13Z1Z5Z1Z13Z1Z4Z2Z1Z1Z4Z1Z5Z1Z1Z2Z7Z1Z21Z7Z1Z182Z4Z1Z1Z1Z13Z1Z1Z3Z78Z1Z9Z7Z1Z182Z13Z1Z5Z1Z13Z1Z5Z1Z1Z192Z13Z1Z5Z1Z9Z1Z77Z1Z1Z192Z77Z1Z1Z2140Z79Z1Z21Z16Z1Z181Z4Z1Z1Z1Z5Z2Z1Z1Z5Z3Z1Z1Z5Z2Z4Z2Z5Z1Z4Z1Z1Z179Z42Z1Z1Z1Z4Z1Z5Z1Z4Z3Z13Z1Z5Z1Z4Z1Z1Z1Z13Z1Z4Z2Z15Z1Z4Z2Z1Z179Z21Z1Z1Z1Z13Z1Z5Z1Z4Z1Z5Z1Z4Z3Z13Z1Z5Z1Z13Z1Z4Z1Z13Z1Z4Z3Z1Z179Z21Z1Z4Z15Z13Z1Z1Z22523ZZ65Z2Z9Z1Z65Z1Z9Z1Z65Z17Z73Z1Z65Z19Z101Z3Z1Z151Z65Z2Z9Z1Z65Z1Z9Z1Z65Z13Z1Z2Z71Z2Z69Z1Z65Z7Z1Z1Z65Z2Z69Z1Z1Z1Z65Z2Z1Z1Z65Z4Z101Z3Z1Z151Z65Z2Z9Z1Z65Z1Z9Z1Z65Z7Z9Z1Z65Z17Z1Z8Z65Z4Z101Z3Z1Z151Z65Z2Z9Z2Z13Z1Z15Z2Z9Z2Z15Z1Z9Z3Z65Z17Z1Z1Z79Z3Z1Z1Z67Z2Z69Z1Z65Z4Z1Z154Z65Z2Z9Z3Z65Z1Z9Z3Z10Z1Z9Z3Z65Z17Z1Z1Z65Z3Z1Z1Z71Z1Z72Z1Z65Z5Z1Z154Z65Z2Z9Z3Z65Z1Z9Z3Z65Z1Z9Z2Z65Z7Z2Z1Z65Z1Z1Z5Z0Z1Z65Z15Z1Z154Z65Z2Z9Z3Z65Z13Z2Z1Z1Z6Z0Z1Z65Z16Z1Z154Z65Z2Z9Z3Z65Z12Z2Z1Z1Z6Z0Z1Z65Z4Z69Z6Z65Z7Z1Z154Z65Z2Z9Z3Z65Z11Z2Z1Z1Z2Z78Z1Z65Z1Z104Z1Z1Z3Z8Z1Z1Z2Z67Z1Z77Z6Z1Z1Z69Z1Z1Z1Z65Z4Z1Z154Z65Z2Z9Z3Z65Z3Z14Z1Z17Z7Z2Z1Z1Z2Z78Z1Z2Z1Z104Z1Z1Z3Z8Z1Z1Z2Z65Z1Z69Z6Z1Z1Z70Z1Z1Z1Z65Z1Z97Z16Z1Z141Z9Z1Z89Z1Z9Z3Z1Z1Z13Z1Z65Z1Z13Z1Z39Z1Z35Z1Z43Z1Z67Z1Z1Z1Z51Z1Z42Z1Z2Z1Z1Z2Z78Z1Z2Z2Z1Z2Z68Z1Z98Z1Z1Z1Z100Z1Z65Z11Z97Z16Z1Z141Z89Z1Z1Z2Z9Z1Z1Z1Z3Z1Z1Z1Z13Z1Z1Z1Z28Z1Z36Z1Z40Z1Z1Z1Z48Z1Z1Z1Z44Z1Z2Z1Z1Z2Z78Z1Z2Z2Z1Z2Z65Z1Z78Z1Z1Z1Z76Z1Z65Z3Z69Z1Z65Z7Z97Z16Z1Z145Z11Z1Z65Z1Z11Z1Z1Z2Z24Z1Z37Z1Z40Z1Z1Z2Z61.5Z2Z2Z1Z1Z2Z78Z1Z2Z1Z0Z1Z2Z1Z65Z2Z66Z1Z1Z2Z65Z1Z1Z4Z80Z1Z65Z5Z97Z2Z102Z1Z1Z1Z65Z4Z97Z1Z1Z1Z97Z1Z1Z1Z97Z4Z1Z141Z65Z13Z9Z3Z65Z5Z0Z1Z65Z1Z2Z1Z0Z1Z66Z1Z1Z6Z80Z1Z65Z6Z97Z3Z1Z5Z97Z8Z1Z141Z65Z13Z9Z3Z65Z5Z0Z1Z65Z8Z102Z1Z1Z1Z100Z1Z65Z1Z102Z1Z65Z4Z97Z3Z1Z5Z97Z1Z1Z1Z97Z1Z1Z1Z97Z4Z1Z141Z65Z13Z9Z3Z65Z5Z0Z1Z65Z8Z66Z1Z1Z1Z68Z1Z65Z1Z97Z1Z65Z1Z97Z1Z65Z2Z97Z3Z1Z1Z99Z4Z97Z1Z1Z3Z97Z4Z1Z141Z70Z1Z65Z5Z1Z1Z77Z1Z12Z1Z1Z1Z21Z2Z1Z1Z13Z1Z68Z1Z13Z1Z17Z1Z21Z2Z25Z1Z1Z1Z0Z1Z65Z4Z1Z7Z69Z1Z1Z4Z65Z1Z97Z19Z1Z138Z70Z1Z72Z1Z65Z3Z1Z3Z12Z1Z1Z1Z23Z1Z19Z1Z1Z1Z11Z1Z1Z1Z11Z1Z15Z1Z19Z1Z23Z1Z27Z1Z1Z1Z0Z1Z65Z4Z93Z1Z87Z1Z94Z1Z1Z1Z92.5Z3Z1Z1Z100Z1Z102Z1Z1Z1Z104Z1Z97Z20Z1Z138Z70Z1Z72Z1Z65Z3Z1Z3Z65Z10Z73Z1Z65Z1Z73Z1Z65Z5Z73Z1Z80Z1Z90Z1Z1Z5Z100Z1Z102Z1Z101Z1Z104Z1Z97Z20Z1Z138Z70Z1Z72Z1Z65Z8Z73Z5Z65Z2Z73Z5Z65Z4Z77Z1Z80Z1Z2Z1Z1Z5Z100Z1Z106Z1Z1Z1Z124Z1Z121Z1Z97Z1Z121Z1Z97Z4Z65Z2Z89Z1Z81Z1Z85Z2Z89Z1Z1Z1Z97Z5Z1Z138Z70Z1Z72Z1Z65Z8Z73Z1Z65Z3Z73Z1Z65Z2Z73Z1Z65Z8Z1Z1Z65Z1Z97Z7Z106Z1Z1Z4Z112Z1Z97Z4Z65Z2Z1Z1Z79Z1Z1Z1Z87Z1Z89Z1Z1Z2Z97Z4Z1Z138Z70Z1Z72Z1Z65Z4Z73Z1Z65Z3Z73Z1Z65Z3Z73Z1Z65Z2Z73Z2Z65Z7Z75Z1Z80Z1Z97Z7Z111Z3Z114Z1Z1Z1Z104Z1Z97Z4Z65Z1Z97Z12Z1Z138Z70Z1Z72Z1Z65Z4Z73Z6Z65Z2Z73Z1Z65Z3Z73Z1Z65Z7Z75Z1Z80Z1Z98Z1Z101Z7Z105Z2Z118Z1Z101Z1Z1Z1Z97Z1Z117Z1Z97Z2Z65Z1Z97Z12Z1Z138Z70Z1Z72Z1Z65Z12Z73Z1Z65Z3Z73Z4Z65Z4Z95Z1Z93Z1Z98Z1Z1Z8Z104Z1Z102Z1Z1Z2Z107Z1Z99Z1Z97Z1Z65Z3Z97Z11Z1Z138Z70Z1Z72Z1Z65Z12Z73Z1Z65Z4Z73Z1Z65Z6Z99Z1Z76Z1Z98Z1Z97Z4Z1Z4Z80Z1Z82Z1Z1Z1Z97Z1Z108Z1Z110Z1Z100Z1Z97Z1Z101Z1Z1Z1Z97Z5Z1Z144Z70Z1Z72Z1Z65Z12Z73Z6Z65Z5Z102Z1Z3Z1Z1Z6Z97Z2Z1Z2Z97Z1Z1Z1Z97Z1Z1Z2Z113Z1Z1Z1Z113Z1Z1Z2Z103Z1Z1Z1Z97Z3Z1Z144Z70Z1Z72Z1Z65Z23Z102Z1Z100Z1Z78Z1Z1Z3Z3Z3Z1Z1Z97Z4Z1Z8Z97Z1Z1Z1Z103Z1Z1Z1Z97Z1Z1Z144Z106Z1Z1Z1Z74Z1Z78Z1Z1Z1Z65Z3Z1Z1Z94Z1Z106Z1Z99Z1Z102Z3Z111Z1Z114Z1Z1Z6Z65Z2Z102Z1Z104Z1Z75Z3Z3Z1Z65Z3Z3Z1Z66Z1Z1Z11Z97Z1Z3Z1Z97Z1Z1Z1Z103Z1Z1Z144Z106Z1Z76Z3Z1Z1Z65Z3Z1Z1Z99Z1Z101Z1Z98Z1Z102Z3Z110Z1Z114Z1Z65Z1Z1Z1Z149.5Z1Z1Z1Z65Z1Z1Z1Z65Z2Z66Z1Z1Z8Z65Z2Z66Z1Z1Z10Z97Z3Z3Z1Z97Z1Z1Z144Z106Z1Z76Z1Z1Z1Z76Z1Z1Z1Z65Z3Z1Z1Z95Z1Z97Z1Z95Z1Z102Z1Z107Z1Z105Z1Z107Z1Z114Z1Z1Z1Z147.5Z1Z1Z1Z147.5Z1Z1Z2Z65Z4Z1Z1Z94Z1Z1Z1Z88.5Z1Z1Z1Z91.5Z1Z1Z1Z65Z3Z66Z1Z3Z9Z97Z5Z1Z144Z106Z1Z1Z4Z65Z3Z1Z15Z65Z4Z1Z7Z65Z4Z97Z14Z1Z144Z65Z19Z9Z1Z65Z32Z1Z144Z65Z19Z9Z1Z65Z32Z1Z144Z65Z19Z9Z1Z65Z18Z1Z4Z3Z1Z1Z153Z9Z7Z1Z1Z9Z1Z65Z9Z10Z1Z1Z1Z65Z8Z1Z168Z65Z17Z10Z1Z1Z178Z65Z4Z1Z6Z9Z2Z1Z4Z9Z1Z53Z3Z1Z179Z3Z1Z1Z3Z48Z1Z47Z1Z50Z1Z65Z1Z1Z1Z3Z1Z71Z1Z67Z1Z1Z1Z53Z1Z1Z3Z53Z1Z1Z178Z10Z1Z2Z1Z1Z1Z3Z1Z0Z1Z65Z1Z50Z1Z3Z1Z67Z1Z79Z1Z65Z1Z76Z1Z67Z1Z1Z1Z54.5Z1Z1Z1Z54.5Z1Z1Z176Z3Z1Z2Z1Z1Z1Z34Z1Z31Z1Z23Z1Z65Z1Z20Z1Z65Z8Z67Z1Z1Z182Z38Z1Z41Z4Z65Z9Z67Z1Z3Z7Z1Z171Z3Z1Z1Z2Z65Z6Z1Z2Z0Z1Z65Z13Z1Z171Z65Z1Z67Z1Z1Z1Z65Z4Z1Z1Z65Z1Z1Z2Z0Z1Z65Z9Z1Z175Z65Z2Z3Z1Z65Z1Z1Z8Z65Z9Z1Z175Z65Z3Z67Z1Z3Z1Z71Z1Z3Z1Z1Z4Z3Z1Z2Z1Z1Z4Z65Z4Z1Z175Z65Z1Z3Z1Z65Z5Z2Z1Z1Z1Z3Z1Z1Z3Z65Z8Z1Z175Z65Z1Z0Z1Z65Z5Z2Z1Z1Z1Z65Z1Z1Z2Z0Z1Z65Z8Z1Z176Z2Z1Z65Z5Z2Z1Z1Z1Z65Z1Z2Z1Z1Z1Z0Z1Z65Z8Z1Z175Z3Z3Z1Z5Z76Z1Z65Z1Z2Z1Z65Z1Z0Z1Z65Z8Z1Z175Z0Z1Z65Z1Z2Z1Z1Z2Z3Z1Z1Z2Z76Z1Z65Z2Z98Z1Z89Z1Z85Z7Z105Z1Z65Z5Z1Z170Z3Z1Z65Z1Z2Z2Z0Z2Z65Z5Z98Z1Z76.5Z8Z108Z1Z65Z5Z1Z170Z65Z2Z2Z1Z1Z2Z0Z1Z65Z5Z95Z1Z83Z8Z104Z1Z65Z5Z1Z170Z65Z2Z2Z2Z0Z2Z65Z4Z1Z4Z65Z2Z1Z5Z0Z1Z65Z4Z1Z170Z65Z1Z1Z4Z0Z1Z65Z3Z2Z1Z1Z1Z3Z3Z1Z2Z3Z3Z1Z1Z0Z1Z65Z5Z1Z175Z0Z1Z65Z4Z1Z1Z65Z3Z3Z2Z1Z3Z2Z1Z1Z1Z0Z1Z65Z4Z1Z170Z3Z1Z1Z1Z68Z1Z3Z3Z65Z3Z2Z1Z1Z1Z65Z5Z1Z3Z2Z1Z1Z1Z0Z1Z65Z4Z1Z170Z65Z1Z1Z1Z5Z1Z1Z1Z5Z3Z1Z1Z5Z1Z1Z1Z0Z1Z65Z5Z1Z3Z2Z1Z1Z1Z0Z1Z65Z4Z1Z180Z0Z1Z65Z7Z2Z1Z1Z1Z0Z1Z65Z5Z1Z170Z65Z1Z2Z1Z1Z8Z0Z1Z65Z8Z2Z1Z1Z1Z0Z1Z65Z4Z1Z170Z65Z1Z1Z9Z0Z1Z65Z1Z117Z1Z65Z6Z2Z1Z1Z1Z0Z1Z65Z4Z1Z180Z109Z1Z110Z2Z111Z1Z114Z1Z122Z1Z1Z1Z73Z1Z124Z1Z2Z1Z1Z1Z0Z1Z65Z7Z1Z178Z2Z2Z114Z1Z2Z1Z102Z1Z1Z1Z109Z1Z1Z2Z0Z1Z65Z8Z1Z178Z3Z1Z1Z1Z3Z1Z2Z1Z106Z1Z1Z1Z79Z1Z82Z1Z1Z2Z0Z1Z65Z7Z1Z182Z2Z1Z1Z1Z79Z1Z1Z6Z65Z5Z1Z182Z70Z2Z75Z1Z78Z1Z1Z192Z67Z1Z69Z1Z65Z2Z1Z2333Z5Z1Z137Z16Z1Z181Z151Z1Z1Z1Z167Z2Z1Z1Z162Z1Z170Z1Z179Z1Z1Z1Z182Z2Z187Z2Z190Z1Z140Z1Z1Z179Z135Z1Z1Z1Z150Z1Z161Z1Z166Z3Z163Z1Z169Z1Z176Z1Z1Z1Z179Z1Z182Z1Z186.00001111111112Z1Z193Z1Z190Z1Z140Z1Z1Z179Z137Z1Z1Z1Z147Z1Z157Z1Z162Z1Z169Z1Z162Z2Z166Z1Z172Z1Z174Z1Z179Z1Z182Z1Z183Z2Z190Z1Z140Z1Z1Z179Z137Z1Z139Z4Z163Z2Z143Z9Z140Z1Z1Z22523ZZB601Zg2ZB3341Zs0ZB3145Zg2a300d9999999999ZB1588Zg2aC300d9999999999v3ZB1784Zg2aC300d9999999999v3ZB1980Zg2aC300d9999999999v3ZB2176Zg2aC300d9999999999v3ZB2372Zg2aC300d9999999999v3ZB6665Zg1ZB219Zg3ZB626Zg4ZB38Zy42ZB1962Zg99ZB2157Zg99ZB1786Zg2a200s200d9999999999ZB1590Zg2a200s200d9999999999ZB6666Zg2ZB6667Zg3ZB6668Zg4ZB2376Zg5ZB2181Zg5ZB6669Zg5ZB3144Zg2ZB3556Zs0ZB4144Zs0ZB3752Zs0ZB3555Zg2d9999999999ZB3751Zg3d9999999999ZB4339Zg5d9999999999ZB4143Zg4d9999999999ZB4340Zs0ZB3565Zv4a100s100d30ZB4352Zv4a100s100d30ZB2779Zg2d9999999999ZB4733Zx35ZB2596Zg6ZB2792Zg6ZB2400Zg6ZB2988Zg6ZB2394Zx0y30ZB6670Zg6ZB10977ZxC30y70ZB15485Zx20y0ZB10783Zx0y25ZB3972Zg7ZB3776Zg7ZB6673Zg99ZB6671Zg7ZB11577Zy25ZZZZ



