author | Ryan VanderMeulen <ryanvm@gmail.com> |
Thu, 28 Aug 2014 16:21:43 -0400 | |
changeset 202243 | d697d649c76557865c96636f4c2ca805a77acbaa |
parent 202198 | 8da1906596d6b4dd1a0fdeb6c31fda1bd6cbfb10 (current diff) |
parent 202242 | c105712ba3e0d0257e6de4ea51d803fcefb7bfea (diff) |
child 202264 | b8f2bdc0070d74e18305709261e228b5446c6b67 |
child 202331 | 18563fc917352fe9f463114ac003874e378eb5f5 |
child 202397 | 1d81fd0385b7f189aa13c7dcb6bd5ba66cbefa5c |
push id | 27394 |
push user | ryanvm@gmail.com |
push date | Thu, 28 Aug 2014 20:21:45 +0000 |
treeherder | mozilla-central@d697d649c765 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | merge |
milestone | 34.0a1 |
first release with | nightly linux32
d697d649c765
/
34.0a1
/
20140829030204
/
files
nightly linux64
d697d649c765
/
34.0a1
/
20140829030204
/
files
nightly mac
d697d649c765
/
34.0a1
/
20140829030204
/
files
nightly win32
d697d649c765
/
34.0a1
/
20140829030204
/
files
nightly win64
d697d649c765
/
34.0a1
/
20140829030204
/
files
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
releases | nightly linux32
34.0a1
/
20140829030204
/
pushlog to previous
nightly linux64
34.0a1
/
20140829030204
/
pushlog to previous
nightly mac
34.0a1
/
20140829030204
/
pushlog to previous
nightly win32
34.0a1
/
20140829030204
/
pushlog to previous
nightly win64
34.0a1
/
20140829030204
/
pushlog to previous
|
--- a/accessible/base/AccEvent.cpp +++ b/accessible/base/AccEvent.cpp @@ -246,11 +246,19 @@ a11y::MakeXPCEvent(AccEvent* aEvent) xpEvent = new xpcAccVirtualCursorChangeEvent(type, acc, doc, domNode, fromUser, vcc->OldAccessible(), vcc->OldStartOffset(), vcc->OldEndOffset(), vcc->Reason()); return xpEvent.forget(); } + if (eventGroup & (1 << AccEvent::eObjectAttrChangedEvent)) { + AccObjectAttrChangedEvent* oac = downcast_accEvent(aEvent); + xpEvent = new xpcAccObjectAttributeChangedEvent(type, acc, doc, domNode, + fromUser, + oac->GetAttribute()); + return xpEvent.forget(); + } + xpEvent = new xpcAccEvent(type, acc, doc, domNode, fromUser); return xpEvent.forget(); }
--- a/accessible/base/AccEvent.h +++ b/accessible/base/AccEvent.h @@ -100,17 +100,18 @@ public: eMutationEvent, eReorderEvent, eHideEvent, eShowEvent, eCaretMoveEvent, eTextSelChangeEvent, eSelectionChangeEvent, eTableChangeEvent, - eVirtualCursorChangeEvent + eVirtualCursorChangeEvent, + eObjectAttrChangedEvent }; static const EventGroup kEventGroup = eGenericEvent; virtual unsigned int GetEventGroups() const { return 1U << eGenericEvent; } @@ -490,16 +491,42 @@ public: private: nsRefPtr<nsIAccessible> mOldAccessible; int32_t mOldStart; int32_t mOldEnd; int16_t mReason; }; /** + * Accessible object attribute changed event. + */ +class AccObjectAttrChangedEvent: public AccEvent +{ +public: + AccObjectAttrChangedEvent(Accessible* aAccessible, nsIAtom* aAttribute) : + AccEvent(::nsIAccessibleEvent::EVENT_OBJECT_ATTRIBUTE_CHANGED, aAccessible), + mAttribute(aAttribute) { } + + // AccEvent + static const EventGroup kEventGroup = eObjectAttrChangedEvent; + virtual unsigned int GetEventGroups() const + { + return AccEvent::GetEventGroups() | (1U << eObjectAttrChangedEvent); + } + + // AccObjectAttrChangedEvent + nsIAtom* GetAttribute() const { return mAttribute; } + +private: + nsCOMPtr<nsIAtom> mAttribute; + + virtual ~AccObjectAttrChangedEvent() { } +}; + +/** * Downcast the generic accessible event object to derived type. */ class downcast_accEvent { public: explicit downcast_accEvent(AccEvent* e) : mRawPtr(e) { } template<class Destination>
--- a/accessible/generic/DocAccessible.cpp +++ b/accessible/generic/DocAccessible.cpp @@ -1089,19 +1089,21 @@ DocAccessible::ARIAAttributeChanged(Acce new AccStateChangeEvent(aAccessible, states::EXPANDED); FireDelayedEvent(event); return; } // For aria attributes like drag and drop changes we fire a generic attribute // change event; at least until native API comes up with a more meaningful event. uint8_t attrFlags = aria::AttrCharacteristicsFor(aAttribute); - if (!(attrFlags & ATTR_BYPASSOBJ)) - FireDelayedEvent(nsIAccessibleEvent::EVENT_OBJECT_ATTRIBUTE_CHANGED, - aAccessible); + if (!(attrFlags & ATTR_BYPASSOBJ)) { + nsRefPtr<AccEvent> event = + new AccObjectAttrChangedEvent(aAccessible, aAttribute); + FireDelayedEvent(event); + } nsIContent* elm = aAccessible->GetContent(); if (aAttribute == nsGkAtoms::aria_checked || (aAccessible->IsButton() && aAttribute == nsGkAtoms::aria_pressed)) { const uint64_t kState = (aAttribute == nsGkAtoms::aria_checked) ? states::CHECKED : states::PRESSED;
--- a/accessible/interfaces/moz.build +++ b/accessible/interfaces/moz.build @@ -13,16 +13,17 @@ XPIDL_SOURCES += [ 'nsIAccessibleCaretMoveEvent.idl', 'nsIAccessibleDocument.idl', 'nsIAccessibleEditableText.idl', 'nsIAccessibleEvent.idl', 'nsIAccessibleHideEvent.idl', 'nsIAccessibleHyperLink.idl', 'nsIAccessibleHyperText.idl', 'nsIAccessibleImage.idl', + 'nsIAccessibleObjectAttributeChangedEvent.idl', 'nsIAccessiblePivot.idl', 'nsIAccessibleRelation.idl', 'nsIAccessibleRetrieval.idl', 'nsIAccessibleRole.idl', 'nsIAccessibleSelectable.idl', 'nsIAccessibleStateChangeEvent.idl', 'nsIAccessibleStates.idl', 'nsIAccessibleTable.idl',
new file mode 100644 --- /dev/null +++ b/accessible/interfaces/nsIAccessibleObjectAttributeChangedEvent.idl @@ -0,0 +1,21 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "nsIAccessibleEvent.idl" + +interface nsIAtom; + +/** + * Fired when an attribute of an accessible changes. + */ +[scriptable, builtinclass, uuid(4CA96609-23C8-4771-86E7-77C8B651CA24)] +interface nsIAccessibleObjectAttributeChangedEvent : nsIAccessibleEvent +{ + /** + * Return the accessible attribute that changed. + */ + readonly attribute nsIAtom changedAttribute; +};
--- a/accessible/jsat/AccessFu.jsm +++ b/accessible/jsat/AccessFu.jsm @@ -230,16 +230,20 @@ this.AccessFu = { // jshint ignore:line break; case 'AccessFu:DoScroll': this.Input.doScroll(aMessage.json); break; } }, _output: function _output(aPresentationData, aBrowser) { + if (!Utils.isAliveAndVisible( + Utils.AccRetrieval.getAccessibleFor(aBrowser))) { + return; + } for (let presenter of aPresentationData) { if (!presenter) { continue; } try { Output[presenter.type](presenter.details, aBrowser); } catch (x) {
--- a/accessible/jsat/EventManager.jsm +++ b/accessible/jsat/EventManager.jsm @@ -220,53 +220,40 @@ this.EventManager.prototype = { this.sendMsgFunc("AccessFu:Input", editState); this.present(Presentation.textSelectionChanged(acc.getText(0,-1), caretOffset, caretOffset, 0, 0, aEvent.isFromUserInput)); this.editState = editState; break; } + case Events.OBJECT_ATTRIBUTE_CHANGED: + { + let evt = aEvent.QueryInterface( + Ci.nsIAccessibleObjectAttributeChangedEvent); + if (evt.changedAttribute.toString() !== 'aria-hidden') { + // Only handle aria-hidden attribute change. + break; + } + if (Utils.isHidden(aEvent.accessible)) { + this._handleHide(evt); + } else { + this._handleShow(aEvent); + } + break; + } case Events.SHOW: { - let {liveRegion, isPolite} = this._handleLiveRegion(aEvent, - ['additions', 'all']); - // Only handle show if it is a relevant live region. - if (!liveRegion) { - break; - } - // Show for text is handled by the EVENT_TEXT_INSERTED handler. - if (aEvent.accessible.role === Roles.TEXT_LEAF) { - break; - } - this._dequeueLiveEvent(Events.HIDE, liveRegion); - this.present(Presentation.liveRegion(liveRegion, isPolite, false)); + this._handleShow(aEvent); break; } case Events.HIDE: { let evt = aEvent.QueryInterface(Ci.nsIAccessibleHideEvent); - let {liveRegion, isPolite} = this._handleLiveRegion( - evt, ['removals', 'all']); - if (liveRegion) { - // Hide for text is handled by the EVENT_TEXT_REMOVED handler. - if (aEvent.accessible.role === Roles.TEXT_LEAF) { - break; - } - this._queueLiveEvent(Events.HIDE, liveRegion, isPolite); - } else { - let vc = Utils.getVirtualCursor(this.contentScope.content.document); - if (vc.position && - (Utils.getState(vc.position).contains(States.DEFUNCT) || - Utils.isInSubtree(vc.position, aEvent.accessible))) { - this.contentControl.autoMove( - evt.targetPrevSibling || evt.targetParent, - { moveToFocused: true, delay: 500 }); - } - } + this._handleHide(evt); break; } case Events.TEXT_INSERTED: case Events.TEXT_REMOVED: { let {liveRegion, isPolite} = this._handleLiveRegion(aEvent, ['text', 'all']); if (aEvent.isFromUserInput || liveRegion) { @@ -301,16 +288,61 @@ this.EventManager.prototype = { if (position === target || Utils.getEmbeddedControl(position) === target) { this.present(Presentation.valueChanged(target)); } } } }, + _handleShow: function _handleShow(aEvent) { + let {liveRegion, isPolite} = this._handleLiveRegion(aEvent, + ['additions', 'all']); + // Only handle show if it is a relevant live region. + if (!liveRegion) { + return; + } + // Show for text is handled by the EVENT_TEXT_INSERTED handler. + if (aEvent.accessible.role === Roles.TEXT_LEAF) { + return; + } + this._dequeueLiveEvent(Events.HIDE, liveRegion); + this.present(Presentation.liveRegion(liveRegion, isPolite, false)); + }, + + _handleHide: function _handleHide(aEvent) { + let {liveRegion, isPolite} = this._handleLiveRegion( + aEvent, ['removals', 'all']); + let acc = aEvent.accessible; + if (liveRegion) { + // Hide for text is handled by the EVENT_TEXT_REMOVED handler. + if (acc.role === Roles.TEXT_LEAF) { + return; + } + this._queueLiveEvent(Events.HIDE, liveRegion, isPolite); + } else { + let vc = Utils.getVirtualCursor(this.contentScope.content.document); + if (vc.position && + (Utils.getState(vc.position).contains(States.DEFUNCT) || + Utils.isInSubtree(vc.position, acc))) { + let position = aEvent.targetPrevSibling || aEvent.targetParent; + if (!position) { + try { + position = acc.previousSibling; + } catch (x) { + // Accessible is unattached from the accessible tree. + position = acc.parent; + } + } + this.contentControl.autoMove(position, + { moveToFocused: true, delay: 500 }); + } + } + }, + _handleText: function _handleText(aEvent, aLiveRegion, aIsPolite) { let event = aEvent.QueryInterface(Ci.nsIAccessibleTextChangeEvent); let isInserted = event.isInserted; let txtIface = aEvent.accessible.QueryInterface(Ci.nsIAccessibleText); let text = ''; try { text = txtIface.getText(0, Ci.nsIAccessibleText.TEXT_OFFSET_END_OF_TEXT);
--- a/accessible/jsat/Utils.jsm +++ b/accessible/jsat/Utils.jsm @@ -348,20 +348,26 @@ this.Utils = { // jshint ignore:line Logger.debug('Failed to get parent:', x); acc = null; } } return false; }, + isHidden: function isHidden(aAccessible) { + // Need to account for aria-hidden, so can't just check for INVISIBLE + // state. + let hidden = Utils.getAttributes(aAccessible).hidden; + return hidden && hidden === 'true'; + }, + inHiddenSubtree: function inHiddenSubtree(aAccessible) { for (let acc=aAccessible; acc; acc=acc.parent) { - let hidden = Utils.getAttributes(acc).hidden; - if (hidden && JSON.parse(hidden)) { + if (this.isHidden(acc)) { return true; } } return false; }, isAliveAndVisible: function isAliveAndVisible(aAccessible, aIsOnScreen) { if (!aAccessible) { @@ -784,19 +790,17 @@ PivotContext.prototype = { return; } let child = aAccessible.firstChild; while (child) { let include; if (this._includeInvisible) { include = true; } else { - // Need to account for aria-hidden, so can't just check for INVISIBLE - // state. - include = Utils.getAttributes(child).hidden !== 'true'; + include = !Utils.isHidden(child); } if (include) { if (aPreorder) { yield child; [yield node for (node of this._traverse(child, aPreorder, aStop))]; // jshint ignore:line } else { [yield node for (node of this._traverse(child, aPreorder, aStop))]; // jshint ignore:line yield child;
--- a/accessible/tests/mochitest/common.js +++ b/accessible/tests/mochitest/common.js @@ -7,16 +7,18 @@ const nsIAccessibleEvent = Components.in const nsIAccessibleStateChangeEvent = Components.interfaces.nsIAccessibleStateChangeEvent; const nsIAccessibleCaretMoveEvent = Components.interfaces.nsIAccessibleCaretMoveEvent; const nsIAccessibleTextChangeEvent = Components.interfaces.nsIAccessibleTextChangeEvent; const nsIAccessibleVirtualCursorChangeEvent = Components.interfaces.nsIAccessibleVirtualCursorChangeEvent; +const nsIAccessibleObjectAttributeChangedEvent = + Components.interfaces.nsIAccessibleObjectAttributeChangedEvent; const nsIAccessibleStates = Components.interfaces.nsIAccessibleStates; const nsIAccessibleRole = Components.interfaces.nsIAccessibleRole; const nsIAccessibleScrollType = Components.interfaces.nsIAccessibleScrollType; const nsIAccessibleCoordinateType = Components.interfaces.nsIAccessibleCoordinateType; const nsIAccessibleRelation = Components.interfaces.nsIAccessibleRelation; const nsIAccessibleTextRange = Components.interfaces.nsIAccessibleTextRange;
--- a/accessible/tests/mochitest/events.js +++ b/accessible/tests/mochitest/events.js @@ -1769,16 +1769,53 @@ function textSelectionChecker(aID, aStar ok(true, "Collapsed selection triggered text selection change event."); } else { testTextGetSelection(aID, aStartOffset, aEndOffset, 0); } } } /** + * Object attribute changed checker + */ +function objAttrChangedChecker(aID, aAttr) +{ + this.__proto__ = new invokerChecker(EVENT_OBJECT_ATTRIBUTE_CHANGED, aID); + + this.check = function objAttrChangedChecker_check(aEvent) + { + var event = null; + try { + var event = aEvent.QueryInterface( + nsIAccessibleObjectAttributeChangedEvent); + } catch (e) { + ok(false, "Object attribute changed event was expected"); + } + + if (!event) { + return; + } + + is(event.changedAttribute.toString(), aAttr, + "Wrong attribute name of the object attribute changed event."); + }; + + this.match = function objAttrChangedChecker_match(aEvent) + { + if (aEvent instanceof nsIAccessibleObjectAttributeChangedEvent) { + var scEvent = aEvent.QueryInterface( + nsIAccessibleObjectAttributeChangedEvent); + return (aEvent.accessible == getAccessible(this.target)) && + (scEvent.changedAttribute.toString() == aAttr); + } + return false; + }; +} + +/** * State change checker. */ function stateChangeChecker(aState, aIsExtraState, aIsEnabled, aTargetOrFunc, aTargetFuncArg, aIsAsync, aSkipCurrentStateCheck) { this.__proto__ = new invokerChecker(EVENT_STATE_CHANGE, aTargetOrFunc, aTargetFuncArg, aIsAsync);
--- a/accessible/tests/mochitest/events/test_aria_objattr.html +++ b/accessible/tests/mochitest/events/test_aria_objattr.html @@ -15,35 +15,34 @@ src="../events.js"></script> <script type="application/javascript"> /** * Do tests. */ var gQueue = null; - function updateAttribute(aID, aAttr, aValue) { this.node = getNode(aID); this.accessible = getAccessible(this.node); this.eventSeq = [ - new invokerChecker(EVENT_OBJECT_ATTRIBUTE_CHANGED, this.accessible), + new objAttrChangedChecker(aID, aAttr), ]; this.invoke = function updateAttribute_invoke() { this.node.setAttribute(aAttr, aValue); - } + }; this.getID = function updateAttribute_getID() { return aAttr + " for " + aID + " " + aValue; - } + }; } // Debug stuff. // gA11yEventDumpID = "eventdump"; //gA11yEventDumpToConsole = true; function doTests() {
--- a/accessible/tests/mochitest/jsat/doc_content_integration.html +++ b/accessible/tests/mochitest/jsat/doc_content_integration.html @@ -19,16 +19,32 @@ function showAlert() { document.getElementById('alert').hidden = false; } function hideAlert() { document.getElementById('alert').hidden = true; } + function ariaShowBack() { + document.getElementById('back').setAttribute('aria-hidden', false); + } + + function ariaHideBack() { + document.getElementById('back').setAttribute('aria-hidden', true); + } + + function ariaShowIframe() { + document.getElementById('iframe').setAttribute('aria-hidden', false); + } + + function ariaHideIframe() { + document.getElementById('iframe').setAttribute('aria-hidden', true); + } + </script> <style> #windows { position: relative; width: 320px; height: 480px; } @@ -53,16 +69,17 @@ } </style> </head> <body> <div>Phone status bar</div> <div id="windows"> + <button id="back">Back</button> <div id="appframe"></div> <div role="dialog" id="alert" hidden> <h1>This is an alert!</h1> <p>Do you agree?</p> <button onclick="hideAlert()">Yes</button> <button onclick="hideAlert()">No</button> </div> </div>
--- a/accessible/tests/mochitest/jsat/test_content_integration.html +++ b/accessible/tests/mochitest/jsat/test_content_integration.html @@ -19,26 +19,30 @@ <script type="application/javascript" src="../states.js"></script> <script type="application/javascript" src="../layout.js"></script> <script type="application/javascript" src="jsatcommon.js"></script> <script type="application/javascript"> function doTest() { var doc = currentTabDocument(); var iframe = doc.createElement('iframe'); + iframe.id = 'iframe'; iframe.mozbrowser = true; iframe.addEventListener('mozbrowserloadend', function () { var contentTest = new AccessFuContentTest( [ // Simple traversal forward [ContentMessages.simpleMoveNext, { speak: ['Phone status bar', 'Traversal Rule test document'], focused: 'body' }], [ContentMessages.simpleMoveNext, { + speak: ["Back", {"string": "pushbutton"}] + }], + [ContentMessages.simpleMoveNext, { speak: ['wow', {'string': 'headingLevel', 'args': [1]} ,'such app'], focused: 'iframe' }], [ContentMessages.simpleMoveNext, { speak: ['many option', {'string': 'stateNotChecked'}, {'string': 'checkbutton'}, {'string': 'listStart'}, {'string': 'list'}, {'string': 'listItemsCount', 'count': 1}] }], @@ -75,19 +79,25 @@ // uncheck checkbox [ContentMessages.activateCurrent(), { speak: [{'string': 'uncheckAction'}] }], [ContentMessages.simpleMovePrevious, { speak: ['wow', {'string': 'headingLevel', 'args': [1]}] }], [ContentMessages.simpleMovePrevious, { + speak: ["Back", {"string": "pushbutton"}] + }], + [ContentMessages.simpleMovePrevious, { speak: ['Phone status bar'] }], + [ContentMessages.simpleMoveNext, { + speak: ["Back", {"string": "pushbutton"}] + }], // Moving to the absolute last item from an embedded document // fails. Bug 972035. [ContentMessages.simpleMoveNext, { speak: ['wow', {'string': 'headingLevel', 'args': [1]}, 'such app'] }], // Move from an inner frame to the last element in the parent doc [ContentMessages.simpleMoveLast, { speak: ['Home', {'string': 'pushbutton'}], @@ -97,16 +107,19 @@ [ContentMessages.clearCursor, 'AccessFu:CursorCleared'], // Moving to the absolute first item from an embedded document // fails. Bug 972035. [ContentMessages.simpleMoveNext, { speak: ['Phone status bar', 'Traversal Rule test document'] }], [ContentMessages.simpleMoveNext, { + speak: ["Back", {"string": "pushbutton"}] + }], + [ContentMessages.simpleMoveNext, { speak: ['wow', {'string': 'headingLevel', 'args': [1]}, 'such app'] }], [ContentMessages.simpleMoveNext, { speak: ['many option', {'string': 'stateNotChecked'}, {'string': 'checkbutton'}, {'string': 'listStart'}, {'string': 'list'}, {'string': 'listItemsCount', 'count': 1}] }], [ContentMessages.simpleMoveFirst, { @@ -130,30 +143,81 @@ [ContentMessages.clearCursor, 'AccessFu:CursorCleared'], // Set focus on element outside of embedded frame while // cursor is in frame [ContentMessages.simpleMoveNext, { speak: ['Phone status bar', 'Traversal Rule test document'] }], [ContentMessages.simpleMoveNext, { + speak: ["Back", {"string": "pushbutton"}] + }], + [ContentMessages.simpleMoveNext, { speak: ['wow', {'string': 'headingLevel', 'args': [1]}, 'such app'] }], [ContentMessages.focusSelector('button#home', false), { speak: ['Home', {'string': 'pushbutton'}] }], // Blur button and reset cursor [ContentMessages.focusSelector('button#home', true), null], [ContentMessages.clearCursor, 'AccessFu:CursorCleared'], // XXX: Set focus on iframe itself. // XXX: Set focus on element in iframe when cursor is outside of it. // XXX: Set focus on element in iframe when cursor is in iframe. + // aria-hidden element that the virtual cursor is positioned on + [ContentMessages.simpleMoveNext, { + speak: ['Phone status bar', 'Traversal Rule test document'] + }], + [ContentMessages.simpleMoveNext, { + speak: ["Back", {"string": "pushbutton"}] + }], + [doc.defaultView.ariaHideBack, { + speak: ["wow", {"string": "headingLevel","args": [1]}, "such app"], + }], + // Changing aria-hidden attribute twice and making sure that the event + // is fired only once when the actual change happens. + [doc.defaultView.ariaHideBack], + [doc.defaultView.ariaShowBack], + [ContentMessages.simpleMovePrevious, { + speak: ["Back", {"string": "pushbutton"}] + }], + [ContentMessages.clearCursor, 'AccessFu:CursorCleared'], + + // aria-hidden on the iframe that has the vc. + [ContentMessages.simpleMoveNext, { + speak: ['Phone status bar', 'Traversal Rule test document'] + }], + [ContentMessages.simpleMoveNext, { + speak: ["Back", {"string": "pushbutton"}] + }], + [ContentMessages.simpleMoveNext, { + speak: ['wow', {'string': 'headingLevel', 'args': [1]}, 'such app'] + }], + [doc.defaultView.ariaHideIframe, { + speak: ['Home', {'string': 'pushbutton'}] + }], + [doc.defaultView.ariaShowIframe], + [ContentMessages.clearCursor, 'AccessFu:CursorCleared'], + + // aria-hidden element and auto Move + [ContentMessages.simpleMoveNext, { + speak: ['Phone status bar', 'Traversal Rule test document'] + }], + [doc.defaultView.ariaHideBack], + [ContentMessages.focusSelector('button#back', false), { + // Must not speak Back button as it is aria-hidden + speak: ["wow", {"string": "headingLevel","args": [1]}, "such app"], + }], + [doc.defaultView.ariaShowBack], + [ContentMessages.focusSelector('button#back', true), null], + [ContentMessages.clearCursor, 'AccessFu:CursorCleared'], + // Open dialog in outer doc, while cursor is also in outer doc [ContentMessages.simpleMoveNext, { speak: ['Phone status bar', 'Traversal Rule test document'] }], [doc.defaultView.showAlert, { speak: ['This is an alert!', {'string': 'headingLevel', 'args': [1]}, {'string': 'dialog'}] @@ -165,16 +229,19 @@ [ContentMessages.clearCursor, 'AccessFu:CursorCleared'], // Open dialog in outer doc, while cursor is in inner frame [ContentMessages.simpleMoveNext, { speak: ['Phone status bar', 'Traversal Rule test document'] }], [ContentMessages.simpleMoveNext, { + speak: ["Back", {"string": "pushbutton"}] + }], + [ContentMessages.simpleMoveNext, { speak: ['wow', {'string': 'headingLevel', 'args': [1]}, 'such app'] }], [doc.defaultView.showAlert, { speak: ['This is an alert!', {'string': 'headingLevel', 'args': [1]}, {'string': 'dialog'}] }],
--- a/accessible/tests/mochitest/jsat/test_live_regions.html +++ b/accessible/tests/mochitest/jsat/test_live_regions.html @@ -28,16 +28,26 @@ element.style.display = "none"; } function show(id) { var element = document.getElementById(id); element.style.display = "block"; } + function ariaHide(id) { + var element = document.getElementById(id); + element.setAttribute('aria-hidden', true); + } + + function ariaShow(id) { + var element = document.getElementById(id); + element.setAttribute('aria-hidden', false); + } + function udpate(id, text, property) { var element = document.getElementById(id); element[property] = text; } function updateText(id, text) { udpate(id, text, "textContent"); } @@ -55,17 +65,17 @@ } }, action: function action() { [hide(id) for (id of ["to_hide1", "to_hide2", "to_hide3", "to_hide4"])]; } }, { expected: { "eventType": "liveregion-change", - "data": [{"string": "hidden"},"I will be hidden"], + "data": [{"string": "hidden"}, "I will be hidden"], "options": { "enqueue": true } }, action: function action() { [hide(id) for (id of ["to_hide_descendant1", "to_hide_descendant2", "to_hide_descendant3", "to_hide_descendant4"])]; } @@ -92,36 +102,107 @@ [show(id) for (id of ["to_show_descendant1", "to_show_descendant2", "to_show_descendant3", "to_show_descendant4"])]; } }, { expected: { "eventType": "liveregion-change", "data": [{"string": "hidden"}, "I will be hidden"], "options": { + "enqueue": true + } + }, + action: function action() { + [ariaHide(id) for (id of ["to_hide5", "to_hide6", "to_hide7", + "to_hide8", "to_hide9"])]; + } + }, { + expected: { + "eventType": "liveregion-change", + "data": [{"string": "hidden"}, "I will be hidden"], + "options": { + "enqueue": true + } + }, + action: function action() { + [ariaHide(id) for (id of ["to_hide_descendant5", "to_hide_descendant6", + "to_hide_descendant7", "to_hide_descendant8"])]; + } + }, { + expected: { + "eventType": "liveregion-change", + "data": ["I will be shown"], + "options": { + "enqueue": true + } + }, + action: function action() { + [ariaShow(id) for (id of ["to_show5", "to_show6", "to_show7", + "to_show8", "to_show9"])]; + } + }, { + expected: { + "eventType": "liveregion-change", + "data": ["I will be shown"], + "options": { + "enqueue": true + } + }, + action: function action() { + [ariaShow(id) for (id of ["to_show_descendant5", "to_show_descendant6", + "to_show_descendant7", "to_show_descendant8"])]; + } + }, { + expected: { + "eventType": "liveregion-change", + "data": [{"string": "hidden"}, "I will be hidden"], + "options": { "enqueue": false } }, action: function action() { hide("to_hide_live_assertive"); } }, { expected: { "eventType": "liveregion-change", + "data": [{"string": "hidden"}, "I will be hidden"], + "options": { + "enqueue": false + } + }, + action: function action() { + ariaHide("to_hide_live_assertive2"); + } + }, { + expected: { + "eventType": "liveregion-change", "data": ["I will be shown"], "options": { "enqueue": false } }, action: function action() { [show(id) for (id of ["to_show_live_off", "to_show_live_assertive"])]; } }, { expected: { "eventType": "liveregion-change", + "data": ["I will be shown"], + "options": { + "enqueue": false + } + }, + action: function action() { + [ariaShow(id) for (id of ["to_show_live_off2", + "to_show_live_assertive2"])]; + } + }, { + expected: { + "eventType": "liveregion-change", "data": ["Text Added"], "options": { "enqueue": false } }, action: function action() { updateText("text_add", "Text Added"); } @@ -279,54 +360,100 @@ <div id="content" style="display: none"></div> <pre id="test"></pre> <p id="to_hide1">I should not be announced 1</p> <p id="to_hide2" aria-live="polite">I should not be announced 2</p> <p id="to_hide3" aria-live="assertive" aria-relevant="text">I should not be announced 3</p> <p id="to_hide4" aria-live="polite" aria-relevant="all">I will be hidden</p> + <p id="to_hide5" aria-hidden="true">I should not be announced 5</p> + <p id="to_hide6">I should not be announced 6</p> + <p id="to_hide7" aria-live="polite">I should not be announced 7</p> + <p id="to_hide8" aria-live="assertive" aria-relevant="text">I should not be announced 8</p> + <p id="to_hide9" aria-live="polite" aria-relevant="all">I will be hidden</p> + <div> <p id="to_hide_descendant1">I should not be announced 1</p> </div> <div aria-live="polite"> <p id="to_hide_descendant2">I should not be announced 2</p> </div> <div aria-live="assertive" aria-relevant="text"> <p id="to_hide_descendant3">I should not be announced 3</p> </div> <div aria-live="polite" aria-relevant="all"> <p id="to_hide_descendant4">I will be hidden</p> </div> + <div> + <p id="to_hide_descendant5">I should not be announced 4</p> + </div> + <div aria-live="polite"> + <p id="to_hide_descendant6">I should not be announced 5</p> + </div> + <div aria-live="assertive" aria-relevant="text"> + <p id="to_hide_descendant7">I should not be announced 6</p> + </div> + <div aria-live="polite" aria-relevant="all"> + <p id="to_hide_descendant8">I will be hidden</p> + </div> + <p id="to_show1" style="display: none">I should not be announced 1</p> <p id="to_show2" aria-live="assertive" aria-relevant="text" style="display: none">I should not be announced 2</p> <p id="to_show3" aria-live="polite" aria-relevant="removals" style="display: none">I should not be announced 3</p> <p id="to_show4" aria-live="polite" aria-relevant="all" style="display: none">I will be shown</p> + <p id="to_show5" aria-hidden="false">I should not be announced 5</p> + <p id="to_show6" aria-hidden="true">I should not be announced 6</p> + <p id="to_show7" aria-hidden="true" aria-live="assertive" aria-relevant="text">I should not be announced 7</p> + <p id="to_show8" aria-hidden="true" aria-live="polite" aria-relevant="removals">I should not be announced 8</p> + <p id="to_show9" aria-hidden="true" aria-live="polite" aria-relevant="all">I will be shown</p> + <div> <p id="to_show_descendant1" style="display: none">I should not be announced 1</p> </div> <div aria-live="polite" aria-relevant="removals"> <p id="to_show_descendant2" style="display: none">I should not be announced 2</p> </div> <div aria-live="assertive" aria-relevant="text"> <p id="to_show_descendant3" style="display: none">I should not be announced 3</p> </div> <div aria-live="polite" aria-relevant="all"> <p id="to_show_descendant4" style="display: none">I will be shown</p> </div> + <div> + <p id="to_show_descendant5" aria-hidden="true">I should not be announced 5</p> + </div> + <div aria-live="polite" aria-relevant="removals"> + <p id="to_show_descendant6" aria-hidden="true">I should not be announced 6</p> + </div> + <div aria-live="assertive" aria-relevant="text"> + <p id="to_show_descendant7" aria-hidden="true">I should not be announced 7</p> + </div> + <div aria-live="polite" aria-relevant="all"> + <p id="to_show_descendant8" aria-hidden="true">I will be shown</p> + </div> + <div aria-live="assertive" aria-relevant="all"> <p id="to_hide_live_assertive">I will be hidden</p> </div> + + <div aria-live="assertive" aria-relevant="all"> + <p id="to_hide_live_assertive2">I will be hidden</p> + </div> <p id="to_show_live_assertive" aria-live="assertive" style="display: none">I will be shown</p> <p id="to_show_live_off" aria-live="off" style="display: none">I will not be shown</p> + <p id="to_show_live_assertive2" aria-live="assertive" aria-hidden="true">I will be shown</p> + + <p id="to_show_live_off2" aria-live="off" aria-hidden="true">I will not be shown</p> + <div id="to_replace_region" aria-live="polite" aria-relevant="all"> <p id="to_replace">I am replaced</p> </div> <p id="to_replace_text" aria-live="assertive" aria-relevant="text">I am going to be replaced</p> <p id="text_add" aria-live="assertive" aria-relevant="text"></p> <p id="text_remove" aria-live="polite" aria-relevant="all">Text Removed</p>
--- a/accessible/xpcom/AccEvents.conf +++ b/accessible/xpcom/AccEvents.conf @@ -7,11 +7,12 @@ and should be in nsIAccessible<name>.idl file""" simple_events = [ 'Event', 'StateChangeEvent', 'TextChangeEvent', 'HideEvent', 'CaretMoveEvent', + 'ObjectAttributeChangedEvent', 'TableChangeEvent', 'VirtualCursorChangeEvent' ]
--- a/browser/base/content/test/plugins/browser_CTP_crashreporting.js +++ b/browser/base/content/test/plugins/browser_CTP_crashreporting.js @@ -98,18 +98,31 @@ function onCrash() { } function onSubmitStatus(subj, topic, data) { try { // Wait for success or failed, doesn't matter which. if (data != "success" && data != "failed") return; - let extra = getPropertyBagValue(subj.QueryInterface(Ci.nsIPropertyBag), - "extra"); + let propBag = subj.QueryInterface(Ci.nsIPropertyBag); + if (data == "success") { + let remoteID = getPropertyBagValue(propBag, "serverCrashID"); + ok(!!remoteID, "serverCrashID should be set"); + + // Remove the submitted report file. + let file = Services.dirsvc.get("UAppData", Ci.nsILocalFile); + file.append("Crash Reports"); + file.append("submitted"); + file.append(remoteID + ".txt"); + ok(file.exists(), "Submitted report file should exist"); + file.remove(false); + } + + let extra = getPropertyBagValue(propBag, "extra"); ok(extra instanceof Ci.nsIPropertyBag, "Extra data should be property bag"); let val = getPropertyBagValue(extra, "PluginUserComment"); is(val, "a test comment", "Comment in extra data should match comment in textbox"); val = getPropertyBagValue(extra, "PluginContentURL"); ok(val === undefined,
--- a/configure.in +++ b/configure.in @@ -8751,16 +8751,17 @@ AC_SUBST(VPX_AS) AC_SUBST(VPX_ASFLAGS) AC_SUBST(VPX_DASH_C_FLAG) AC_SUBST(VPX_AS_CONVERSION) AC_SUBST(VPX_ASM_SUFFIX) AC_SUBST(VPX_X86_ASM) AC_SUBST(VPX_ARM_ASM) AC_SUBST(VPX_NEED_OBJ_INT_EXTRACT) AC_SUBST(MOZ_INSTRUMENT_EVENT_LOOP) +AC_SUBST(MOZ_CODE_COVERAGE) AC_SUBST(LIBJPEG_TURBO_AS) AC_SUBST(LIBJPEG_TURBO_ASFLAGS) AC_SUBST(LIBJPEG_TURBO_X86_ASM) AC_SUBST(LIBJPEG_TURBO_X64_ASM) AC_SUBST(LIBJPEG_TURBO_ARM_ASM) AC_SUBST(MOZ_PACKAGE_JSSHELL) AC_SUBST(MOZ_FOLD_LIBS)
--- a/content/base/src/Element.cpp +++ b/content/base/src/Element.cpp @@ -1495,30 +1495,32 @@ Element::UnbindFromTree(bool aDeep, bool DeleteProperty(nsGkAtoms::transitionsProperty); DeleteProperty(nsGkAtoms::animationsOfBeforeProperty); DeleteProperty(nsGkAtoms::animationsOfAfterProperty); DeleteProperty(nsGkAtoms::animationsProperty); } // Unset this since that's what the old code effectively did. UnsetFlags(NODE_FORCE_XBL_BINDINGS); - + bool clearBindingParent = true; + #ifdef MOZ_XUL nsXULElement* xulElem = nsXULElement::FromContent(this); if (xulElem) { xulElem->SetXULBindingParent(nullptr); + clearBindingParent = false; } - else #endif - { - nsDOMSlots *slots = GetExistingDOMSlots(); - if (slots) { + + nsDOMSlots* slots = GetExistingDOMSlots(); + if (slots) { + if (clearBindingParent) { slots->mBindingParent = nullptr; - slots->mContainingShadow = nullptr; } + slots->mContainingShadow = nullptr; } // This has to be here, rather than in nsGenericHTMLElement::UnbindFromTree, // because it has to happen after unsetting the parent pointer, but before // recursively unbinding the kids. if (IsHTML()) { ResetDir(this); }
--- a/content/base/test/csp/test_CSP_bug885433.html +++ b/content/base/test/csp/test_CSP_bug885433.html @@ -29,16 +29,19 @@ function checkAllowed () { var color; color = window.getComputedStyle(cspframe.contentDocument.getElementById('unsafe-inline-script-allowed')).color; ok(color === green, "Inline script should be allowed"); color = window.getComputedStyle(cspframe.contentDocument.getElementById('unsafe-eval-script-allowed')).color; ok(color === green, "Eval should be allowed"); color = window.getComputedStyle(cspframe.contentDocument.getElementById('unsafe-inline-style-allowed')).color; ok(color === green, "Inline style should be allowed"); + + document.getElementById('cspframe2').src = 'file_CSP_bug885433_blocks.html'; + document.getElementById('cspframe2').addEventListener('load', checkBlocked, false); } function checkBlocked () { var cspframe = document.getElementById('cspframe2'); var color; color = window.getComputedStyle(cspframe.contentDocument.getElementById('unsafe-inline-script-blocked')).color; ok(color === black, "Inline script should be blocked"); @@ -47,14 +50,12 @@ function checkBlocked () { color = window.getComputedStyle(cspframe.contentDocument.getElementById('unsafe-inline-style-blocked')).color; ok(color === black, "Inline style should be blocked"); SimpleTest.finish(); } document.getElementById('cspframe').src = 'file_CSP_bug885433_allows.html'; document.getElementById('cspframe').addEventListener('load', checkAllowed, false); -document.getElementById('cspframe2').src = 'file_CSP_bug885433_blocks.html'; -document.getElementById('cspframe2').addEventListener('load', checkBlocked, false); </script> </pre> </body> </html>
old mode 100644 new mode 100755 --- a/content/html/content/public/HTMLMediaElement.h +++ b/content/html/content/public/HTMLMediaElement.h @@ -1146,16 +1146,20 @@ protected: bool mAudioCaptured; // If TRUE then the media element was actively playing before the currently // in progress seeking. If FALSE then the media element is either not seeking // or was not actively playing before the current seek. Used to decide whether // to raise the 'waiting' event as per 4.7.1.8 in HTML 5 specification. bool mPlayingBeforeSeek; + // if TRUE then the seek started while content was in active playing state + // if FALSE then the seek started while the content was not playing. + bool mPlayingThroughTheAudioChannelBeforeSeek; + // True iff this element is paused because the document is inactive or has // been suspended by the audio channel service. bool mPausedForInactiveDocumentOrChannel; // True iff event delivery is suspended (mPausedForInactiveDocumentOrChannel must also be true). bool mEventDeliveryPaused; // True if we've reported a "waiting" event since the last
old mode 100644 new mode 100755 --- a/content/html/content/src/HTMLMediaElement.cpp +++ b/content/html/content/src/HTMLMediaElement.cpp @@ -2029,16 +2029,17 @@ HTMLMediaElement::HTMLMediaElement(alrea mAutoplayEnabled(true), mPaused(true), mMuted(0), mStatsShowing(false), mAllowCasting(false), mIsCasting(false), mAudioCaptured(false), mPlayingBeforeSeek(false), + mPlayingThroughTheAudioChannelBeforeSeek(false), mPausedForInactiveDocumentOrChannel(false), mEventDeliveryPaused(false), mWaitingFired(false), mIsRunningLoadMethod(false), mIsLoadingFromSourceChildren(false), mDelayingLoadEvent(false), mIsRunningSelectResource(false), mHaveQueuedSelectResource(false), @@ -3051,16 +3052,20 @@ void HTMLMediaElement::PlaybackEnded() FireTimeUpdate(false); DispatchAsyncEvent(NS_LITERAL_STRING("ended")); } void HTMLMediaElement::SeekStarted() { DispatchAsyncEvent(NS_LITERAL_STRING("seeking")); + // Set the Variable if the Seekstarted while active playing + if(mPlayingThroughTheAudioChannel) { + mPlayingThroughTheAudioChannelBeforeSeek = true; + } ChangeReadyState(nsIDOMHTMLMediaElement::HAVE_METADATA); FireTimeUpdate(false); } void HTMLMediaElement::SeekCompleted() { mPlayingBeforeSeek = false; SetPlayedOrSeeked(true); @@ -3068,16 +3073,18 @@ void HTMLMediaElement::SeekCompleted() // We changed whether we're seeking so we need to AddRemoveSelfReference AddRemoveSelfReference(); if (mTextTrackManager) { mTextTrackManager->DidSeek(); } if (mCurrentPlayRangeStart == -1.0) { mCurrentPlayRangeStart = CurrentTime(); } + // Unset the variable on seekend + mPlayingThroughTheAudioChannelBeforeSeek = false; } void HTMLMediaElement::NotifySuspendedByCache(bool aIsSuspended) { mDownloadSuspendedByCache = aIsSuspended; // If this is an autoplay element, we may need to kick off its autoplaying // now so we consume data and hopefully free up cache space. CheckAutoplayDataReady(); @@ -3908,17 +3915,17 @@ void HTMLMediaElement::UpdateAudioChanne return; } bool playingThroughTheAudioChannel = (!mPaused && (HasAttr(kNameSpaceID_None, nsGkAtoms::loop) || (mReadyState >= nsIDOMHTMLMediaElement::HAVE_CURRENT_DATA && !IsPlaybackEnded()) || - mPlayingBeforeSeek)); + mPlayingThroughTheAudioChannelBeforeSeek)); if (playingThroughTheAudioChannel != mPlayingThroughTheAudioChannel) { mPlayingThroughTheAudioChannel = playingThroughTheAudioChannel; // If we are not playing, we don't need to create a new audioChannelAgent. if (!mAudioChannelAgent && !mPlayingThroughTheAudioChannel) { return; }
--- a/content/html/content/src/nsTextEditorState.cpp +++ b/content/html/content/src/nsTextEditorState.cpp @@ -1516,18 +1516,20 @@ nsTextEditorState::UnbindFromFrame(nsTex // If it was, however, it should be unbounded from the same frame. NS_ASSERTION(!aFrame || aFrame == mBoundFrame, "Unbinding from the wrong frame"); NS_ENSURE_TRUE_VOID(!aFrame || aFrame == mBoundFrame); // If the editor is modified but nsIEditorObserver::EditAction() hasn't been // called yet, we need to notify it here because editor may be destroyed // before EditAction() is called if selection listener causes flushing layout. + bool isInEditAction = false; if (mTextListener && mEditor && mEditorInitialized && - mEditor->GetIsInEditAction()) { + NS_SUCCEEDED(mEditor->GetIsInEditAction(&isInEditAction)) && + isInEditAction) { mTextListener->EditAction(); } // We need to start storing the value outside of the editor if we're not // going to use it anymore, so retrieve it for now. nsAutoString value; GetValue(value, true);
--- a/content/media/GraphDriver.cpp +++ b/content/media/GraphDriver.cpp @@ -83,17 +83,19 @@ void GraphDriver::EnsureImmediateWakeUpL } void GraphDriver::UpdateStateComputedTime(GraphTime aStateComputedTime) { MOZ_ASSERT(aStateComputedTime > mIterationEnd); // The next state computed time can be the same as the previous, here: it // means the driver would be have been blocking indefinitly, but the graph has // been woken up right after having been to sleep. - MOZ_ASSERT(aStateComputedTime >= mStateComputedTime, "State time can't go backward."); + if (aStateComputedTime < mStateComputedTime) { + printf("State time can't go backward %ld < %ld.\n", static_cast<long>(aStateComputedTime), static_cast<long>(mStateComputedTime)); + } mStateComputedTime = aStateComputedTime; } void GraphDriver::EnsureNextIteration() { MonitorAutoLock lock(mGraphImpl->GetMonitor()); EnsureNextIterationLocked();
--- a/content/media/MediaStreamGraph.cpp +++ b/content/media/MediaStreamGraph.cpp @@ -1305,22 +1305,24 @@ MediaStreamGraphImpl::Process(GraphTime "Stream did not produce enough data"); } } } NotifyHasCurrentData(stream); // Only playback audio and video in real-time mode if (mRealtime) { CreateOrDestroyAudioStreams(aFrom, stream); - TrackTicks ticksPlayedForThisStream = PlayAudio(stream, aFrom, aTo); - if (!ticksPlayed) { - ticksPlayed = ticksPlayedForThisStream; - } else { - MOZ_ASSERT(!ticksPlayedForThisStream || ticksPlayedForThisStream == ticksPlayed, - "Each stream should have the same number of frame."); + if (CurrentDriver()->AsAudioCallbackDriver()) { + TrackTicks ticksPlayedForThisStream = PlayAudio(stream, aFrom, aTo); + if (!ticksPlayed) { + ticksPlayed = ticksPlayedForThisStream; + } else { + MOZ_ASSERT(!ticksPlayedForThisStream || ticksPlayedForThisStream == ticksPlayed, + "Each stream should have the same number of frame."); + } } PlayVideo(stream); } SourceMediaStream* is = stream->AsSourceStream(); if (is) { UpdateBufferSufficiencyState(is); } GraphTime end;
--- a/content/media/test/crashtests/crashtests.list +++ b/content/media/test/crashtests/crashtests.list @@ -72,9 +72,9 @@ skip-if(Android||B2G) test-pref(media.na load buffer-source-ended-1.html HTTP load media-element-source-seek-1.html load offline-buffer-source-ended-1.html load oscillator-ended-1.html load oscillator-ended-2.html include ../../mediasource/test/crashtests/crashtests.list # This needs to run at the end to avoid leaking busted state into other tests. -load 691096-1.html +skip-if(winWidget) load 691096-1.html
--- a/dom/base/ScriptSettings.cpp +++ b/dom/base/ScriptSettings.cpp @@ -235,16 +235,17 @@ FindJSContext(nsIGlobalObject* aGlobalOb AutoJSAPI::AutoJSAPI() : mCx(nullptr) { } void AutoJSAPI::InitInternal(JSObject* aGlobal, JSContext* aCx, bool aIsMainThread) { + MOZ_ASSERT(aCx); mCx = aCx; if (aIsMainThread) { // This Rooted<> is necessary only as long as AutoCxPusher::AutoCxPusher // can GC, which is only possible because XPCJSContextStack::Push calls // nsIPrincipal.Equals. Once that is removed, the Rooted<> will no longer // be necessary. JS::Rooted<JSObject*> global(JS_GetRuntime(aCx), aGlobal); mCxPusher.emplace(mCx);
--- a/dom/events/IMEContentObserver.cpp +++ b/dom/events/IMEContentObserver.cpp @@ -986,17 +986,19 @@ IMEContentObserver::FlushMergeableNotifi { // If this is already detached from the widget, this doesn't need to notify // anything. if (!mWidget) { return; } // If we're in handling an edit action, this method will be called later. - if (mEditor && mEditor->GetIsInEditAction()) { + bool isInEditAction = false; + if (mEditor && NS_SUCCEEDED(mEditor->GetIsInEditAction(&isInEditAction)) && + isInEditAction) { return; } // Notifying something may cause nested call of this method. For example, // when somebody notified one of the notifications may dispatch query content // event. Then, it causes flushing layout which may cause another layout // change notification.
--- a/dom/media/tests/mochitest/pc.js +++ b/dom/media/tests/mochitest/pc.js @@ -1534,27 +1534,35 @@ PeerConnectionWrapper.prototype = { * @param {MediaStream} stream * Media stream to handle * @param {string} type * The type of media stream ('audio' or 'video') * @param {string} side * The location the stream is coming from ('local' or 'remote') */ attachMedia : function PCW_attachMedia(stream, type, side) { + function isSenderOfTrack(sender) { + return sender.track == this; + } + info("Got media stream: " + type + " (" + side + ")"); this.streams.push(stream); if (side === 'local') { // In order to test both the addStream and addTrack APIs, we do video one // way and audio + audiovideo the other. if (type == "video") { this._pc.addStream(stream); + ok(this._pc.getSenders().find(isSenderOfTrack, + stream.getVideoTracks()[0]), + "addStream adds sender"); } else { stream.getTracks().forEach(function(track) { - this._pc.addTrack(track, stream); + var sender = this._pc.addTrack(track, stream); + is(sender.track, track, "addTrack returns sender"); }.bind(this)); } } var element = createMediaElement(type, this.label + '_' + side); this.mediaCheckers.push(new MediaElementChecker(element)); element.mozSrcObject = stream; element.play();
--- a/dom/workers/ServiceWorkerContainer.cpp +++ b/dom/workers/ServiceWorkerContainer.cpp @@ -34,27 +34,37 @@ NS_IMPL_CYCLE_COLLECTION_INHERITED(Servi ServiceWorkerContainer::ServiceWorkerContainer(nsPIDOMWindow* aWindow) : DOMEventTargetHelper(aWindow) { } ServiceWorkerContainer::~ServiceWorkerContainer() { + RemoveReadyPromise(); } void ServiceWorkerContainer::DisconnectFromOwner() { - nsCOMPtr<nsIServiceWorkerManager> swm = mozilla::services::GetServiceWorkerManager(); - MOZ_ASSERT(swm); + RemoveReadyPromise(); + DOMEventTargetHelper::DisconnectFromOwner(); +} - swm->RemoveReadyPromise(GetOwner()); +void +ServiceWorkerContainer::RemoveReadyPromise() +{ + nsCOMPtr<nsPIDOMWindow> window = GetOwner(); + if (window) { + nsCOMPtr<nsIServiceWorkerManager> swm = + mozilla::services::GetServiceWorkerManager(); + MOZ_ASSERT(swm); - DOMEventTargetHelper::DisconnectFromOwner(); + swm->RemoveReadyPromise(window); + } } JSObject* ServiceWorkerContainer::WrapObject(JSContext* aCx) { return ServiceWorkerContainerBinding::Wrap(aCx, this); }
--- a/dom/workers/ServiceWorkerContainer.h +++ b/dom/workers/ServiceWorkerContainer.h @@ -70,16 +70,18 @@ public: ErrorResult& aRv); // DOMEventTargetHelper void DisconnectFromOwner() MOZ_OVERRIDE; private: ~ServiceWorkerContainer(); + void RemoveReadyPromise(); + // This only changes when a worker hijacks everything in its scope by calling // replace(). // FIXME(nsm): Bug 982711. Provide API to let SWM invalidate this. nsRefPtr<workers::ServiceWorker> mControllerWorker; nsRefPtr<Promise> mReadyPromise; };
--- a/dom/workers/ServiceWorkerManager.cpp +++ b/dom/workers/ServiceWorkerManager.cpp @@ -1846,16 +1846,17 @@ ServiceWorkerManager::GetScopeForUrl(con aScope = NS_ConvertUTF8toUTF16(r->mScope); return NS_OK; } NS_IMETHODIMP ServiceWorkerManager::AddRegistrationEventListener(nsIURI* aDocumentURI, nsIDOMEventTarget* aListener) { MOZ_ASSERT(aDocumentURI); + AssertIsOnMainThread(); nsRefPtr<ServiceWorkerDomainInfo> domainInfo = GetDomainInfo(aDocumentURI); if (!domainInfo) { nsCString domain; nsresult rv = aDocumentURI->GetHost(domain); if (NS_WARN_IF(NS_FAILED(rv))) { return rv; } @@ -1870,16 +1871,17 @@ ServiceWorkerManager::AddRegistrationEve MOZ_ASSERT(!domainInfo->mServiceWorkerRegistrations.Contains(registration)); domainInfo->mServiceWorkerRegistrations.AppendElement(registration); return NS_OK; } NS_IMETHODIMP ServiceWorkerManager::RemoveRegistrationEventListener(nsIURI* aDocumentURI, nsIDOMEventTarget* aListener) { + AssertIsOnMainThread(); MOZ_ASSERT(aDocumentURI); nsRefPtr<ServiceWorkerDomainInfo> domainInfo = GetDomainInfo(aDocumentURI); if (!domainInfo) { return NS_OK; } ServiceWorkerRegistration* registration = static_cast<ServiceWorkerRegistration*>(aListener); MOZ_ASSERT(domainInfo->mServiceWorkerRegistrations.Contains(registration));
--- a/dom/workers/ServiceWorkerRegistration.cpp +++ b/dom/workers/ServiceWorkerRegistration.cpp @@ -33,25 +33,27 @@ NS_IMPL_CYCLE_COLLECTION_INHERITED(Servi mInstallingWorker, mWaitingWorker, mActiveWorker) ServiceWorkerRegistration::ServiceWorkerRegistration(nsPIDOMWindow* aWindow, const nsAString& aScope) : DOMEventTargetHelper(aWindow) , mScope(aScope) + , mListeningForEvents(false) { MOZ_ASSERT(aWindow); MOZ_ASSERT(aWindow->IsInnerWindow()); StartListeningForEvents(); } ServiceWorkerRegistration::~ServiceWorkerRegistration() { + StopListeningForEvents(); } void ServiceWorkerRegistration::DisconnectFromOwner() { StopListeningForEvents(); DOMEventTargetHelper::DisconnectFromOwner(); } @@ -171,25 +173,31 @@ ServiceWorkerRegistration::InvalidateWor // XXXnsm, maybe this can be optimized to only add when a event handler is // registered. void ServiceWorkerRegistration::StartListeningForEvents() { nsCOMPtr<nsIServiceWorkerManager> swm = do_GetService(SERVICEWORKERMANAGER_CONTRACTID); if (swm) { swm->AddRegistrationEventListener(GetDocumentURI(), this); + mListeningForEvents = true; } } void ServiceWorkerRegistration::StopListeningForEvents() { + if (!mListeningForEvents) { + return; + } + nsCOMPtr<nsIServiceWorkerManager> swm = do_GetService(SERVICEWORKERMANAGER_CONTRACTID); if (swm) { swm->RemoveRegistrationEventListener(GetDocumentURI(), this); + mListeningForEvents = false; } } nsIURI* ServiceWorkerRegistration::GetDocumentURI() const { MOZ_ASSERT(GetOwner()); return GetOwner()->GetDocumentURI();
--- a/dom/workers/ServiceWorkerRegistration.h +++ b/dom/workers/ServiceWorkerRegistration.h @@ -81,14 +81,15 @@ private: // instead of acquiring a new worker instance from the ServiceWorkerManager // for every access. A null value is considered a cache miss. // These three may change to a new worker at any time. nsRefPtr<workers::ServiceWorker> mInstallingWorker; nsRefPtr<workers::ServiceWorker> mWaitingWorker; nsRefPtr<workers::ServiceWorker> mActiveWorker; const nsString mScope; + bool mListeningForEvents; }; } // namespace dom } // namespace mozilla #endif /* mozilla_dom_ServiceWorkerRegistration_h */
--- a/editor/nsIEditor.idl +++ b/editor/nsIEditor.idl @@ -16,17 +16,17 @@ interface nsIDocumentStateListener; interface nsIOutputStream; interface nsITransactionManager; interface nsITransaction; interface nsIEditorObserver; interface nsIEditActionListener; interface nsIInlineSpellChecker; interface nsITransferable; -[builtinclass, scriptable, uuid(c3b61bc9-ccdd-4bcd-acd8-1b8dcbe6a247)] +[scriptable, uuid(04714a01-e02f-4ef5-a388-612451d0db16)] interface nsIEditor : nsISupports { %{C++ typedef short EDirection; typedef short EStripWrappers; %} const short eNone = 0; @@ -550,10 +550,10 @@ interface nsIEditor : nsISupports /* Set true if you want to suppress dispatching input event. */ attribute boolean suppressDispatchingInputEvent; /** * True if an edit action is being handled (in other words, between calls of * nsIEditorObserver::BeforeEditAction() and nsIEditorObserver::EditAction() * or nsIEditorObserver::CancelEditAction(). Otherwise, false. */ - [infallible, noscript] readonly attribute boolean isInEditAction; + [noscript] readonly attribute boolean isInEditAction; };
--- a/editor/nsIHTMLEditor.idl +++ b/editor/nsIHTMLEditor.idl @@ -17,17 +17,17 @@ namespace mozilla { namespace dom { class Element; } } %} [ptr] native Element (mozilla::dom::Element); -[builtinclass, scriptable, uuid(9470bee7-cad3-4382-8fb4-6bdda9f0273a)] +[scriptable, uuid(393a364f-e8e2-48a1-a271-a0067b6bac9b)] interface nsIHTMLEditor : nsISupports { %{C++ typedef short EAlignment; %} // used by GetAlignment()
--- a/editor/nsIPlaintextEditor.idl +++ b/editor/nsIPlaintextEditor.idl @@ -1,16 +1,16 @@ /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "nsISupports.idl" -[builtinclass, scriptable, uuid(da8f244b-6ffc-4be1-8b1a-667abfe1d304)] +[scriptable, uuid(b74fb158-1265-4102-91eb-edd0136b49f8)] interface nsIPlaintextEditor : nsISupports { // XXX Why aren't these in nsIEditor? // only plain text entry is allowed via events const long eEditorPlaintextMask = 0x0001; // enter key and CR-LF handled specially const long eEditorSingleLineMask = 0x0002;
--- a/gfx/layers/composite/FPSCounter.cpp +++ b/gfx/layers/composite/FPSCounter.cpp @@ -98,17 +98,17 @@ FPSCounter::GetLatestTimeStamp() // Returns true if we iterated over a full interval of data bool FPSCounter::IteratedFullInterval(TimeStamp aTimestamp, double aDuration) { MOZ_ASSERT(mIteratorIndex >= 0, "Cannot be negative"); MOZ_ASSERT(mIteratorIndex < kMaxFrames, "Iterator index cannot be greater than kMaxFrames"); TimeStamp currentStamp = mFrameTimestamps[mIteratorIndex]; TimeDuration duration = aTimestamp - currentStamp; - return duration.ToSecondsSigDigits() >= aDuration; + return duration.ToSeconds() >= aDuration; } void FPSCounter::ResetReverseIterator() { mIteratorIndex = GetLatestReadIndex(); } @@ -182,17 +182,17 @@ FPSCounter::BuildHistogram(std::map<int, int frameCount = 0; int totalFrameCount = 0; ResetReverseIterator(); while (HasNext(startTimeStamp)) { currentTimeStamp = GetNextTimeStamp(); TimeDuration interval = currentIntervalStart - currentTimeStamp; - if (interval.ToSecondsSigDigits() >= 1.0 ) { + if (interval.ToSeconds() >= 1.0 ) { currentIntervalStart = currentTimeStamp; aFpsData[frameCount]++; frameCount = 0; } frameCount++; totalFrameCount++; }
--- a/image/decoders/EXIF.cpp +++ b/image/decoders/EXIF.cpp @@ -127,17 +127,16 @@ EXIFParser::ParseIFD0(Orientation& aOrie if (!ReadUInt16(type)) return false; uint32_t count; if (!ReadUInt32(count)) return false; // We should have an orientation value here; go ahead and parse it. - Orientation orientation; if (!ParseOrientation(type, count, aOrientationOut)) return false; // Since the orientation is all we care about, we're done. return true; } // We didn't find an orientation field in the IFD. That's OK; we assume the
--- a/intl/unicharutil/tools/genUnicodePropertyData.pl +++ b/intl/unicharutil/tools/genUnicodePropertyData.pl @@ -21,21 +21,28 @@ # - EastAsianWidth.txt # - BidiMirroring.txt # - HangulSyllableType.txt # - ReadMe.txt (to record version/date of the UCD) # - Unihan_Variants.txt (from Unihan.zip) # though this may change if we find a need for additional properties. # # The Unicode data files listed above should be together in one directory. +# # We also require the file # http://www.unicode.org/Public/security/latest/xidmodifications.txt # This file should be in a sub-directory "security" immediately below the # directory containing the other Unicode data files. # +# We also require the latest data file for UTR50, currently revision-12: +# http://www.unicode.org/Public/vertical/revision-12/VerticalOrientation-12.txt +# This file should be in a sub-directory "vertical" immediately below the +# directory containing the other Unicode data files. +# +# # (2) Run this tool using a command line of the form # # perl genUnicodePropertyData.pl \ # /path/to/harfbuzz/src \ # /path/to/UCD-directory # # This will generate (or overwrite!) the files # @@ -296,39 +303,48 @@ my %bidicategoryCode = ( "AL" => "13", # Right-to-Left Arabic "RLE" => "14", # Right-to-Left Embedding "RLO" => "15", # Right-to-Left Override "PDF" => "16", # Pop Directional Format "NSM" => "17", # Non-Spacing Mark "BN" => "18" # Boundary Neutral ); +my %verticalOrientationCode = ( + 'U' => 0, # U - Upright, the same orientation as in the code charts + 'R' => 1, # R - Rotated 90 degrees clockwise compared to the code charts + 'Tu' => 2, # Tu - Transformed typographically, with fallback to Upright + 'Tr' => 3 # Tr - Transformed typographically, with fallback to Rotated +); + # initialize default properties my @script; my @category; my @combining; my @eaw; my @mirror; my @hangul; my @casemap; my @xidmod; my @numericvalue; my @hanVariant; my @bidicategory; my @fullWidth; +my @verticalOrientation; for (my $i = 0; $i < 0x110000; ++$i) { $script[$i] = $scriptCode{"UNKNOWN"}; $category[$i] = $catCode{"UNASSIGNED"}; $combining[$i] = 0; $casemap[$i] = 0; $xidmod[$i] = $xidmodCode{"not-chars"}; $numericvalue[$i] = -1; $hanVariant[$i] = 0; $bidicategory[$i] = $bidicategoryCode{"L"}; $fullWidth[$i] = 0; + $verticalOrientation[$i] = 1; # default for unlisted codepoints is 'R' } # blocks where the default for bidi category is not L for my $i (0x0600..0x07BF, 0x08A0..0x08FF, 0xFB50..0xFDCF, 0xFDF0..0xFDFF, 0xFE70..0xFEFF, 0x1EE00..0x0001EEFF) { $bidicategory[$i] = $bidicategoryCode{"AL"}; } for my $i (0x0590..0x05FF, 0x07C0..0x089F, 0xFB1D..0xFB4F, 0x00010800..0x00010FFF, 0x0001E800..0x0001EDFF, 0x0001EF00..0x0001EFFF) { $bidicategory[$i] = $bidicategoryCode{"R"}; @@ -623,16 +639,41 @@ while (<FH>) { } if ($2 eq "Simplified") { $hasSC = 1; } } } close FH; +# read VerticalOrientation-12.txt +open FH, "< $ARGV[1]/vertical/VerticalOrientation-12.txt" or die "can't open UTR50 data file VerticalOrientation-12.txt\n"; +push @versionInfo, ""; +while (<FH>) { + chomp; + push @versionInfo, $_; + last if /Date:/; +} +while (<FH>) { + chomp; + s/#.*//; + if (m/([0-9A-F]{4,6})(?:\.\.([0-9A-F]{4,6}))*\s*;\s*([^ ]+)/) { + my $vo = $3; + warn "unknown Vertical_Orientation code $vo" + unless exists $verticalOrientationCode{$vo}; + $vo = $verticalOrientationCode{$vo}; + my $start = hex "0x$1"; + my $end = (defined $2) ? hex "0x$2" : $start; + for (my $i = $start; $i <= $end; ++$i) { + $verticalOrientation[$i] = $vo; + } + } +} +close FH; + my $timestamp = gmtime(); open DATA_TABLES, "> nsUnicodePropertyData.cpp" or die "unable to open nsUnicodePropertyData.cpp for output"; my $licenseBlock = q[ /* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this @@ -701,28 +742,45 @@ print DATA_TABLES "};\n\n"; print HEADER "#pragma pack(1)\n\n"; sub sprintCharProps1 { my $usv = shift; return sprintf("{%d,%d,%d}, ", $mirror[$usv], $hangul[$usv], $combining[$usv]); } -&genTables("CharProp1", "struct nsCharProps1 {\n unsigned char mMirrorOffsetIndex:5;\n unsigned char mHangulType:3;\n unsigned char mCombiningClass:8;\n};", - "nsCharProps1", 11, 5, \&sprintCharProps1, 1, 2, 1); +my $type = q/ +struct nsCharProps1 { + unsigned char mMirrorOffsetIndex:5; + unsigned char mHangulType:3; + unsigned char mCombiningClass:8; +}; +/; +&genTables("CharProp1", $type, "nsCharProps1", 11, 5, \&sprintCharProps1, 1, 2, 1); sub sprintCharProps2 { my $usv = shift; - return sprintf("{%d,%d,%d,%d,%d,%d},", + return sprintf("{%d,%d,%d,%d,%d,%d,%d},", $script[$usv], $eaw[$usv], $category[$usv], - $bidicategory[$usv], $xidmod[$usv], $numericvalue[$usv]); + $bidicategory[$usv], $xidmod[$usv], $numericvalue[$usv], + $verticalOrientation[$usv]); } -&genTables("CharProp2", "struct nsCharProps2 {\n unsigned char mScriptCode:8;\n unsigned char mEAW:3;\n unsigned char mCategory:5;\n unsigned char mBidiCategory:5;\n unsigned char mXidmod:4;\n signed char mNumericValue:5;\n unsigned char mHanVariant:2;\n};", - "nsCharProps2", 11, 5, \&sprintCharProps2, 16, 4, 1); +$type = q/ +struct nsCharProps2 { + unsigned char mScriptCode:8; + unsigned char mEAW:3; + unsigned char mCategory:5; + unsigned char mBidiCategory:5; + unsigned char mXidmod:4; + signed char mNumericValue:5; + unsigned char mVertOrient:2; +}; +/; +&genTables("CharProp2", $type, "nsCharProps2", 11, 5, \&sprintCharProps2, 16, 4, 1); print HEADER "#pragma pack()\n\n"; sub sprintHanVariants { my $baseUsv = shift; my $varShift = 0; my $val = 0;
--- a/intl/unicharutil/util/nsUnicodeProperties.h +++ b/intl/unicharutil/util/nsUnicodeProperties.h @@ -44,16 +44,28 @@ inline uint8_t GetScriptCode(uint32_t aC } uint32_t GetScriptTagForCode(int32_t aScriptCode); inline nsCharType GetBidiCat(uint32_t aCh) { return nsCharType(GetCharProps2(aCh).mBidiCategory); } +/* This MUST match the values assigned by genUnicodePropertyData.pl! */ +enum VerticalOrientation { + VERTICAL_ORIENTATION_U = 0, + VERTICAL_ORIENTATION_R = 1, + VERTICAL_ORIENTATION_Tu = 2, + VERTICAL_ORIENTATION_Tr = 3 +}; + +inline VerticalOrientation GetVerticalOrientation(uint32_t aCh) { + return VerticalOrientation(GetCharProps2(aCh).mVertOrient); +} + enum XidmodType { XIDMOD_INCLUSION, XIDMOD_RECOMMENDED, XIDMOD_DEFAULT_IGNORABLE, XIDMOD_HISTORIC, XIDMOD_LIMITED_USE, XIDMOD_NOT_NFKC, XIDMOD_NOT_XID,
--- a/intl/unicharutil/util/nsUnicodePropertyData.cpp +++ b/intl/unicharutil/util/nsUnicodePropertyData.cpp @@ -6,17 +6,17 @@ /* * Derived from the Unicode Character Database by genUnicodePropertyData.pl * * For Unicode terms of use, see http://www.unicode.org/terms_of_use.html */ /* - * Created on Fri Aug 22 16:49:19 2014 from UCD data files with version info: + * Created on Tue Aug 26 10:16:12 2014 from UCD data files with version info: * # Date: 2014-06-12, 20:18:00 GMT [KW] # # Unicode Character Database # Copyright (c) 1991-2014 Unicode, Inc. # For terms of use, see http://www.unicode.org/terms_of_use.html # @@ -47,16 +47,19 @@ Standard. # File: xidmodifications.txt # Version: 7.0.0 # Generated: 2014-07-23, 12:42:33 GMT # # Unihan_Variants.txt # Date: 2014-05-09 18:17:02 GMT [JHJ] +# VerticalOrientation-12.txt +# Date: 2014-07-07, 21:00:00 GMT [EM, KI, LI] + * * * * * * This file contains MACHINE-GENERATED DATA, do not edit! * * * * * */ #include <stdint.h> #include "harfbuzz/hb.h" static const uint32_t sScriptCodeToTag[] = { @@ -384,668 +387,673 @@ static const nsCharProps1 sCharProp1Valu }; #define kCharProp2MaxPlane 16 #define kCharProp2IndexBits 11 #define kCharProp2CharBits 5 static const uint8_t sCharProp2Planes[16] = {1,2,3,4,4,4,4,4,4,4,4,4,4,5,6,6}; static const uint16_t sCharProp2Pages[7][2048] = { - {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,37,37,39,40,41,42,43,44,45,46,47,48,49,50,47,51,52,53,54,55,47,56,57,58,59,60,61,62,63,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,110,114,115,116,117,118,119,120,110,121,122,123,124,125,126,127,128,129,129,130,131,132,132,132,132,133,133,134,133,135,136,137,133,138,133,139,140,141,142,142,143,144,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,146,147,148,148,149,150,151,152,153,154,155,156,157,158,159,160,161,159,162,145,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,110,110,178,179,180,181,182,183,184,185,186,187,188,189,110,110,190,191,192,193,194,195,196,197,198,199,200,200,200,200,201,202,203,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,248,249,250,250,251,252,253,254,255,256,257,243,258,259,260,261,262,263,243,264,265,266,267,243,268,269,270,270,270,270,270,270,270,270,234,234,234,234,271,234,272,273,274,234,234,275,234,234,276,234,243,277,278,279,280,281,282,110,283,284,285,286,287,287,287,288,289,290,291,292,293,294,294,295,296,297,298,110,299,300,300,301,302,302,302,302,302,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,322,325,326,327,328,328,329,330,331,331,332,333,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,335,243,243,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,336,337,338,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,339,340,341,342,343,344,344,344,344,344,344,344,344,345,346,35,347,348,349,349,350,351,352,353,354,355,356,110,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,110,110,386,387,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,388,389,390,391,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,392,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,394,394,394,394,394,394,394,394,395,396,394,397,394,394,398,337,399,400,401,402,402,403,404,402,402,402,402,402,402,402,402,402,402,405,406,402,407,402,408,409,410,411,412,413,402,402,402,414,415,416,417,418,419,420,421,422}, - {423,424,425,110,426,426,426,427,428,429,430,431,432,433,434,435,110,110,110,110,436,437,438,439,440,441,442,443,444,445,446,110,447,448,449,450,451,452,110,110,453,454,455,456,110,110,110,110,457,457,457,457,457,457,457,457,457,458,459,460,110,110,110,110,461,462,463,464,465,466,63,63,467,468,63,63,469,470,63,63,471,472,473,474,475,63,476,477,478,479,480,481,482,483,63,63,484,484,485,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,486,63,63,63,63,63,63,63,63,63,63,63,63,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,110,110,110,505,506,507,508,509,510,511,110,110,110,110,110,110,110,110,512,513,514,110,110,110,110,110,515,516,517,110,518,519,520,110,521,522,523,110,110,110,110,110,110,110,110,110,110,110,110,110,110,524,525,526,110,110,110,110,110,110,110,110,110,110,110,110,110,110,527,528,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,530,110,110,110,531,531,531,532,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,534,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,349,349,349,349,349,349,349,349,349,349,349,349,349,349,349,349,349,535,536,537,110,110,538,539,540,541,542,543,544,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,545,545,546,547,548,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,549,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,550,550,550,551,552,553,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,237,237,237,237,237,237,237,554,237,555,556,557,558,559,560,110,561,561,562,110,110,110,110,110,243,243,563,564,110,110,110,110,565,566,567,568,569,570,571,572,573,574,575,576,577,565,566,578,568,579,580,581,572,582,583,584,585,586,587,588,589,590,591,592,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,593,593,593,593,593,593,594,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,595,596,597,598,599,600,65,601,63,63,63,63,63,63,63,63,243,602,243,243,603,604,605,606,607,608,609,610,611,110,110,612,613,614,615,110,110,110,110,110,243,616,243,617,243,243,618,619,243,243,243,243,243,243,243,620,243,243,621,622,243,623,243,243,243,243,624,243,243,243,625,626,243,243,243,603,243,243,627,110,602,243,628,243,629,630,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110}, - {334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,631,337,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,632,334,334,334,334,334,334,633,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,394,394,394,394,394,394,394,394,394,394,394,394,394,394,394,394,634,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,635}, - {337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,635}, + {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,37,37,39,40,41,42,43,44,45,46,47,48,49,50,47,51,52,53,54,55,47,56,57,58,59,60,61,62,63,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,110,114,115,116,117,118,119,120,110,121,122,123,124,125,126,127,128,129,129,130,131,132,132,132,132,133,133,134,133,135,136,137,133,138,133,139,140,141,142,142,143,144,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,146,147,148,148,149,150,151,152,153,154,155,156,157,158,159,160,161,159,162,145,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,110,110,178,179,180,181,182,183,184,185,186,187,188,189,110,110,190,191,192,193,194,195,196,197,198,199,200,200,200,200,201,202,203,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,248,249,250,250,251,252,253,254,255,256,257,243,258,259,260,261,262,263,243,264,265,266,267,268,269,270,271,271,271,271,271,271,271,271,234,234,234,234,272,234,273,274,275,234,234,276,234,234,277,234,278,279,280,281,282,283,284,285,286,287,288,289,290,290,290,291,292,293,294,295,296,297,297,298,299,300,301,110,302,303,303,304,305,305,305,305,305,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,325,328,329,330,331,331,332,333,334,334,335,336,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,338,243,243,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,339,340,341,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,343,344,345,346,347,347,347,347,347,347,347,347,348,349,35,350,351,352,352,353,354,355,356,357,358,359,110,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,110,110,389,390,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,392,393,394,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,397,397,397,397,397,397,397,397,398,399,397,400,397,397,401,340,402,403,404,405,405,406,407,405,405,405,405,405,405,405,405,405,405,408,409,405,410,405,411,412,413,414,415,416,405,405,405,417,418,419,420,421,422,423,424,425}, + {426,427,428,110,429,429,429,430,431,432,433,434,435,436,437,438,110,110,110,110,439,440,441,442,443,444,445,446,447,448,449,110,450,451,452,453,454,455,110,110,456,457,458,459,110,110,110,110,460,460,460,460,460,460,460,460,460,461,462,463,110,110,110,110,464,465,466,467,468,469,63,63,470,471,63,63,472,473,63,63,474,475,476,477,478,63,479,480,481,482,483,484,485,486,63,63,487,487,488,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,489,63,63,63,63,63,63,63,63,63,63,63,63,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,110,110,110,508,509,510,511,512,513,514,110,110,110,110,110,110,110,110,515,516,517,110,110,110,110,110,518,519,520,285,521,522,523,110,524,525,526,110,110,110,110,110,110,110,110,110,110,110,110,110,110,527,528,529,110,110,110,110,110,110,110,110,110,110,110,110,110,110,530,531,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,533,110,110,110,534,534,534,535,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,537,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,538,539,540,110,110,541,542,543,544,545,546,547,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,548,548,549,550,551,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,552,285,285,285,285,285,285,285,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,553,553,553,554,555,556,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,557,557,557,557,557,557,557,558,557,559,560,561,562,563,564,285,565,565,566,110,110,110,110,110,243,243,567,568,110,110,110,110,569,570,571,572,573,574,575,576,577,578,579,580,581,569,570,582,572,583,584,585,576,586,587,588,589,590,591,592,593,594,595,596,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,597,597,597,597,597,597,598,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,599,600,601,602,603,604,65,605,63,63,63,63,63,63,63,63,243,606,243,243,607,608,609,610,611,612,613,614,615,285,285,616,617,618,619,285,285,285,285,285,243,620,243,621,243,243,622,623,243,243,243,243,243,243,243,624,243,243,625,626,243,627,243,243,243,243,628,243,243,243,629,630,243,243,243,607,243,243,631,285,632,268,633,268,634,635,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110}, + {337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,636,340,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,637,337,337,337,337,337,337,638,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,397,397,397,397,397,397,397,397,397,397,397,397,397,397,397,397,639,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,640}, + {340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,340,640}, {110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110}, - {636,637,637,637,638,638,638,638,639,639,639,639,639,639,639,640,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110}, - {393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,393,641} + {641,642,642,642,643,643,643,643,644,644,644,644,644,644,644,645,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110}, + {396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,396,646} }; -static const nsCharProps2 sCharProp2Values[642][32] = { - {{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,8,6,-1},{0,3,0,7,6,-1},{0,3,0,8,6,-1},{0,3,0,9,6,-1},{0,3,0,7,6,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,7,9,-1},{0,3,0,7,9,-1},{0,3,0,7,9,-1},{0,3,0,8,9,-1}}, - {{0,4,29,9,6,-1},{0,4,21,10,6,-1},{0,4,21,10,6,-1},{0,4,21,4,6,-1},{0,4,23,4,6,-1},{0,4,21,4,6,-1},{0,4,21,10,6,-1},{0,4,21,10,0,-1},{0,4,22,10,6,-1},{0,4,18,10,6,-1},{0,4,21,10,6,-1},{0,4,25,3,6,-1},{0,4,21,6,6,-1},{0,4,17,3,0,-1},{0,4,21,6,0,-1},{0,4,21,6,6,-1},{0,4,13,2,1,0},{0,4,13,2,1,1},{0,4,13,2,1,2},{0,4,13,2,1,3},{0,4,13,2,1,4},{0,4,13,2,1,5},{0,4,13,2,1,6},{0,4,13,2,1,7},{0,4,13,2,1,8},{0,4,13,2,1,9},{0,4,21,6,0,-1},{0,4,21,10,6,-1},{0,4,25,10,6,-1},{0,4,25,10,6,-1},{0,4,25,10,6,-1},{0,4,21,10,6,-1}}, - {{0,4,21,10,6,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{25,4,9,0,1,-1},{0,4,22,10,6,-1},{0,4,21,10,6,-1},{0,4,18,10,6,-1},{0,4,24,10,6,-1},{0,4,16,10,1,-1}}, - {{0,4,24,10,6,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{25,4,5,0,1,-1},{0,4,22,10,6,-1},{0,4,25,10,6,-1},{0,4,18,10,6,-1},{0,4,25,10,6,-1},{0,3,0,18,9,-1}}, - {{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,7,6,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1},{0,3,0,18,9,-1}}, - {{0,3,29,6,5,-1},{0,0,21,10,6,-1},{0,4,23,4,6,-1},{0,4,23,4,6,-1},{0,0,23,4,6,-1},{0,4,23,4,6,-1},{0,4,26,10,6,-1},{0,0,21,10,6,-1},{0,0,24,10,5,-1},{0,3,26,10,6,-1},{25,0,7,0,5,-1},{0,3,20,10,6,-1},{0,4,25,10,6,-1},{0,0,1,18,2,-1},{0,0,26,10,6,-1},{0,4,24,10,5,-1},{0,0,26,4,6,-1},{0,0,25,4,6,-1},{0,0,15,2,5,2},{0,0,15,2,5,3},{0,0,24,10,5,-1},{0,3,5,0,5,-1},{0,0,21,10,6,-1},{0,0,21,10,0,-1},{0,0,24,10,5,-1},{0,0,15,2,5,1},{25,0,7,0,5,-1},{0,3,19,10,6,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,21,10,6,-1}}, - {{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,0,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,0,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{0,0,25,10,6,-1},{25,0,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,0,9,0,1,-1},{25,0,5,0,1,-1}}, - {{25,0,5,0,1,-1},{25,0,5,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,1,-1},{25,0,5,0,1,-1},{25,3,5,0,1,-1},{25,0,5,0,1,-1},{25,0,5,0,1,-1},{25,0,5,0,1,-1},{25,3,5,0,1,-1},{25,0,5,0,1,-1},{25,0,5,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,1,-1},{25,0,5,0,1,-1},{25,3,5,0,1,-1},{25,0,5,0,1,-1},{25,0,5,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,1,-1},{0,0,25,10,6,-1},{25,0,5,0,1,-1},{25,0,5,0,1,-1},{25,0,5,0,1,-1},{25,3,5,0,1,-1},{25,0,5,0,1,-1},{25,3,5,0,1,-1},{25,0,5,0,1,-1},{25,3,5,0,1,-1}}, - {{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1}}, - {{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,0,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,0,9,0,5,-1},{25,0,5,0,5,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,0,9,0,5,-1}}, - {{25,0,5,0,5,-1},{25,0,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,0,5,0,5,-1},{25,0,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,0,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1}}, - {{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,0,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,5,-1}}, - {{25,3,5,0,8,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,5,0,7,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,5,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1}}, - {{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,7,-1},{25,3,5,0,7,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,7,-1},{25,3,5,0,7,-1},{25,3,7,0,7,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,5,0,7,-1},{25,3,5,0,3,-1}}, - {{25,3,7,0,8,-1},{25,3,7,0,8,-1},{25,3,7,0,8,-1},{25,3,7,0,8,-1},{25,3,9,0,5,-1},{25,3,8,0,5,-1},{25,3,5,0,5,-1},{25,3,9,0,5,-1},{25,3,8,0,5,-1},{25,3,5,0,5,-1},{25,3,9,0,5,-1},{25,3,8,0,5,-1},{25,3,5,0,5,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,9,0,1,-1},{25,0,5,0,1,-1},{25,3,5,0,4,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1}}, - {{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,5,-1},{25,3,8,0,5,-1},{25,3,5,0,5,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,3,-1},{25,3,9,0,3,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1}}, - {{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1}}, - {{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,4,-1},{25,3,5,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1}}, - {{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,5,0,8,-1},{25,0,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,4,-1},{25,3,5,0,4,-1},{25,3,5,0,8,-1},{25,3,5,0,4,-1},{25,3,5,0,4,-1},{25,3,5,0,8,-1},{25,3,5,0,1,-1},{25,3,5,0,8,-1},{25,3,5,0,4,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,7,-1}}, - {{25,3,5,0,4,-1},{25,0,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,4,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,4,-1},{25,3,5,0,4,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,4,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,4,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,4,-1},{25,3,5,0,8,-1},{25,3,5,0,7,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,7,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1}}, - {{25,3,5,0,4,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,4,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,4,-1},{25,3,5,0,4,-1},{25,3,5,0,4,-1},{25,3,5,0,4,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,4,-1},{25,3,5,0,8,-1},{25,3,7,0,4,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,7,-1},{25,3,5,0,8,-1}}, - {{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{0,3,6,10,8,-1},{0,3,6,10,8,-1},{0,3,6,0,1,-1},{0,3,6,0,1,-1},{0,3,6,0,8,-1},{0,3,6,0,8,-1},{0,3,6,0,8,-1}}, - {{0,3,6,0,8,-1},{0,3,6,0,8,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,0,24,10,6,-1},{0,3,24,10,6,-1},{0,3,6,10,8,-1},{0,0,6,10,8,-1},{0,3,6,10,8,-1},{0,0,6,10,8,-1},{0,0,6,10,8,-1},{0,0,6,10,8,-1},{0,3,6,10,8,-1},{0,0,6,10,8,-1},{0,3,6,10,8,-1},{0,3,6,10,8,-1},{0,0,6,0,8,-1},{0,3,6,0,8,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,0,24,10,5,-1},{0,0,24,10,5,-1},{0,0,24,10,5,-1},{0,0,24,10,5,-1},{0,3,24,10,5,-1},{0,0,24,10,5,-1},{0,3,24,10,6,-1},{0,0,24,10,6,-1}}, - {{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{5,3,24,10,6,-1},{5,3,24,10,6,-1},{0,3,6,10,1,-1},{0,3,24,10,6,-1},{0,3,6,0,8,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1}}, - {{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,4,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,4,-1},{1,0,12,17,8,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,8,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,8,-1},{1,0,12,17,4,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,1,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1}}, - {{1,0,12,17,8,-1},{1,0,12,17,4,-1},{1,0,12,17,4,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,8,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,4,-1},{1,0,12,17,8,-1},{1,0,12,17,4,-1},{1,0,12,17,1,-1},{1,0,12,17,4,-1},{1,0,12,17,8,-1},{1,0,12,17,1,-1},{1,0,12,17,1,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1}}, - {{1,0,12,17,5,-1},{1,0,12,17,5,-1},{1,0,12,17,1,-1},{1,0,12,17,5,-1},{1,0,12,17,5,-1},{1,0,12,17,1,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,2,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,4,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1}}, - {{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,8,-1},{1,0,12,17,3,-1},{1,0,12,17,3,-1},{1,0,12,17,3,-1},{1,0,12,17,3,-1},{1,0,12,17,3,-1},{1,0,12,17,3,-1},{1,0,12,17,3,-1},{1,0,12,17,3,-1},{1,0,12,17,3,-1},{1,0,12,17,3,-1},{1,0,12,17,3,-1},{1,0,12,17,3,-1},{1,0,12,17,3,-1},{14,3,9,0,3,-1},{14,3,5,0,3,-1},{14,3,9,0,3,-1},{14,3,5,0,3,-1},{0,3,6,10,5,-1},{14,3,24,10,0,-1},{14,3,9,0,3,-1},{14,3,5,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{14,3,6,0,5,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{0,3,21,10,5,-1},{14,3,9,0,3,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{14,3,24,10,5,-1},{0,3,24,10,5,-1},{14,3,9,0,1,-1},{0,3,21,10,5,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{61,0,2,0,9,-1},{14,3,9,0,1,-1},{61,0,2,0,9,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,5,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1}}, - {{14,0,9,0,1,-1},{14,0,9,0,1,-1},{61,0,2,0,9,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,0,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1}}, - {{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,3,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,0,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,9,0,8,-1},{14,3,5,0,5,-1},{14,3,5,0,5,-1},{14,3,9,0,5,-1},{14,3,9,0,5,-1},{14,3,9,0,5,-1},{14,3,5,0,5,-1},{14,3,5,0,5,-1},{14,3,5,0,8,-1},{14,3,9,0,3,-1},{14,3,5,0,3,-1},{14,3,9,0,3,-1},{14,3,5,0,3,-1},{14,3,9,0,3,-1},{14,3,5,0,3,-1},{14,3,9,0,3,-1},{14,3,5,0,3,-1}}, - {{14,3,9,0,3,-1},{14,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{14,3,5,0,5,-1},{14,3,5,0,5,-1},{14,3,5,0,5,-1},{14,3,5,0,8,-1},{14,3,9,0,5,-1},{14,3,5,0,5,-1},{14,3,25,10,6,-1},{14,3,9,0,3,-1},{14,3,5,0,3,-1},{14,3,9,0,5,-1},{14,3,9,0,3,-1},{14,3,5,0,3,-1},{14,3,5,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1}}, - {{8,3,9,0,1,-1},{8,0,9,0,1,-1},{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1}}, - {{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,9,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1}}, - {{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,0,5,0,1,-1},{8,3,5,0,1,-1},{8,0,5,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1}}, - {{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1}}, - {{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,26,0,6,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,11,17,6,-1},{8,3,11,17,6,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1}}, - {{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1}}, - {{8,3,9,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1}}, - {{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,4,-1},{8,3,5,0,4,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,4,-1},{8,3,5,0,4,-1},{61,0,2,0,9,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1}}, - {{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{3,3,9,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{3,3,6,0,1,-1},{3,3,21,0,6,-1},{3,3,21,0,6,-1},{3,3,21,0,6,-1},{3,3,21,0,6,-1},{3,3,21,0,6,-1},{3,3,21,0,6,-1}}, - {{61,0,2,0,9,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1}}, - {{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,1,-1},{3,3,5,0,5,-1},{61,0,2,0,9,-1},{0,3,21,0,6,-1},{3,3,17,10,0,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{3,3,26,10,6,-1},{3,3,26,10,6,-1},{3,3,23,4,6,-1},{61,0,2,1,9,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1}}, - {{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,1,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,17,1,6,-1},{19,3,12,17,4,-1}}, - {{19,3,21,1,6,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,21,1,6,-1},{19,3,12,17,4,-1},{19,3,12,17,4,-1},{19,3,21,1,6,-1},{19,3,12,17,4,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1}}, - {{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,7,1,1,-1},{19,3,21,1,0,-1},{19,3,21,1,0,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1}}, - {{2,3,1,5,6,-1},{2,3,1,5,6,-1},{2,3,1,5,6,-1},{2,3,1,5,6,-1},{2,3,1,5,6,-1},{0,3,1,5,6,-1},{2,3,25,10,6,-1},{2,3,25,10,6,-1},{2,3,25,13,6,-1},{2,3,21,4,6,-1},{2,3,21,4,6,-1},{2,3,23,13,6,-1},{0,3,21,6,6,-1},{2,3,21,13,6,-1},{2,3,26,10,6,-1},{2,3,26,10,6,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{0,3,21,13,6,-1},{0,3,1,13,2,-1},{61,0,2,13,9,-1},{2,3,21,13,6,-1},{0,3,21,13,6,-1}}, - {{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1}}, - {{0,3,6,13,3,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{1,3,12,17,1,-1},{1,3,12,17,1,-1},{1,3,12,17,1,-1},{1,3,12,17,1,-1},{1,3,12,17,1,-1},{1,3,12,17,1,-1},{1,3,12,17,1,-1},{1,3,12,17,1,-1},{1,3,12,17,1,-1},{1,3,12,17,1,-1},{1,3,12,17,1,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1}}, - {{0,3,13,5,1,0},{0,3,13,5,1,1},{0,3,13,5,1,2},{0,3,13,5,1,3},{0,3,13,5,1,4},{0,3,13,5,1,5},{0,3,13,5,1,6},{0,3,13,5,1,7},{0,3,13,5,1,8},{0,3,13,5,1,9},{2,3,21,4,6,-1},{2,3,21,5,6,-1},{2,3,21,5,6,-1},{2,3,21,13,6,-1},{2,3,7,13,3,-1},{2,3,7,13,3,-1},{1,3,12,17,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,7,-1},{2,3,7,13,1,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1}}, - {{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,3,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1}}, - {{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,21,13,6,-1},{2,3,7,13,1,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{0,3,1,5,6,-1},{2,3,26,10,6,-1},{2,3,12,17,4,-1}}, - {{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,6,13,1,-1},{2,3,6,13,1,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,26,10,6,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,13,2,1,0},{2,3,13,2,1,1},{2,3,13,2,1,2},{2,3,13,2,1,3},{2,3,13,2,1,4},{2,3,13,2,1,5},{2,3,13,2,1,6},{2,3,13,2,1,7},{2,3,13,2,1,8},{2,3,13,2,1,9},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,26,13,0,-1},{2,3,26,13,0,-1},{2,3,7,13,1,-1}}, - {{34,3,21,13,6,-1},{34,3,21,13,6,-1},{34,3,21,13,6,-1},{34,3,21,13,6,-1},{34,3,21,13,6,-1},{34,3,21,13,6,-1},{34,3,21,13,6,-1},{34,3,21,13,6,-1},{34,3,21,13,6,-1},{34,3,21,13,6,-1},{34,3,21,13,6,-1},{34,3,21,13,6,-1},{34,3,21,13,6,-1},{34,3,21,13,6,-1},{61,0,2,13,9,-1},{34,3,1,13,6,-1},{34,3,7,13,4,-1},{34,3,12,17,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1}}, - {{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1}}, - {{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{34,3,12,17,4,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{34,3,7,13,4,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1}}, - {{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1}}, - {{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,7,13,1,-1},{37,3,12,17,1,-1},{37,3,12,17,1,-1},{37,3,12,17,1,-1},{37,3,12,17,1,-1},{37,3,12,17,1,-1},{37,3,12,17,1,-1},{37,3,12,17,1,-1},{37,3,12,17,1,-1},{37,3,12,17,1,-1},{37,3,12,17,1,-1},{37,3,12,17,1,-1},{37,3,7,13,1,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1}}, - {{66,3,13,1,4,0},{66,3,13,1,4,1},{66,3,13,1,4,2},{66,3,13,1,4,3},{66,3,13,1,4,4},{66,3,13,1,4,5},{66,3,13,1,4,6},{66,3,13,1,4,7},{66,3,13,1,4,8},{66,3,13,1,4,9},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1}}, - {{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,7,1,4,-1},{66,3,12,17,4,-1},{66,3,12,17,4,-1},{66,3,12,17,4,-1},{66,3,12,17,4,-1},{66,3,12,17,4,-1},{66,3,12,17,4,-1},{66,3,12,17,4,-1},{66,3,12,17,4,-1},{66,3,12,17,4,-1},{66,3,6,1,4,-1},{66,3,6,1,4,-1},{66,3,26,10,6,-1},{66,3,21,10,6,-1},{66,3,21,10,6,-1},{66,3,21,10,6,-1},{66,3,6,1,4,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1}}, - {{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,7,1,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,6,1,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1}}, - {{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,6,1,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,6,1,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{90,3,12,17,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{90,3,21,1,6,-1},{61,0,2,1,9,-1}}, - {{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,7,1,4,-1},{95,3,12,17,4,-1},{95,3,12,17,4,-1},{95,3,12,17,4,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{95,3,21,1,6,-1},{61,0,2,1,9,-1}}, - {{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1}}, - {{2,3,7,13,1,-1},{2,3,7,13,4,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,1,-1},{2,3,7,13,3,-1},{2,3,7,13,3,-1},{2,3,7,13,3,-1},{2,3,7,13,3,-1},{2,3,7,13,3,-1},{2,3,7,13,4,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1}}, - {{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1}}, - {{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1},{2,3,12,17,4,-1}}, - {{10,3,12,17,4,-1},{10,3,12,17,1,-1},{10,3,12,17,1,-1},{10,3,10,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1}}, - {{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,12,17,1,-1},{10,3,10,0,1,-1},{10,3,12,17,1,-1},{10,3,7,0,1,-1},{10,3,10,0,1,-1},{10,3,10,0,1,-1}}, - {{10,3,10,0,1,-1},{10,3,12,17,1,-1},{10,3,12,17,1,-1},{10,3,12,17,1,-1},{10,3,12,17,1,-1},{10,3,12,17,1,-1},{10,3,12,17,1,-1},{10,3,12,17,1,-1},{10,3,12,17,1,-1},{10,3,10,0,1,-1},{10,3,10,0,1,-1},{10,3,10,0,1,-1},{10,3,10,0,1,-1},{10,3,12,17,1,-1},{10,3,10,0,3,-1},{10,3,10,0,1,-1},{10,3,7,0,1,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{10,3,12,17,8,-1},{10,3,12,17,8,-1},{10,3,12,17,4,-1},{10,3,12,17,1,-1},{10,3,12,17,1,-1},{10,3,7,0,5,-1},{10,3,7,0,5,-1},{10,3,7,0,5,-1},{10,3,7,0,5,-1},{10,3,7,0,5,-1},{10,3,7,0,5,-1},{10,3,7,0,5,-1},{10,3,7,0,5,-1}}, - {{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,12,17,1,-1},{10,3,12,17,1,-1},{0,3,21,0,6,-1},{0,3,21,0,6,-1},{10,3,13,0,1,0},{10,3,13,0,1,1},{10,3,13,0,1,2},{10,3,13,0,1,3},{10,3,13,0,1,4},{10,3,13,0,1,5},{10,3,13,0,1,6},{10,3,13,0,1,7},{10,3,13,0,1,8},{10,3,13,0,1,9},{10,3,21,0,6,-1},{10,3,6,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,3,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1},{10,3,7,0,1,-1}}, - {{4,3,7,0,3,-1},{4,3,12,17,1,-1},{4,3,10,0,1,-1},{4,3,10,0,1,-1},{61,0,2,0,9,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1}}, - {{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{61,0,2,0,9,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{61,0,2,0,9,-1},{4,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{4,3,12,17,1,-1},{4,3,7,0,1,-1},{4,3,10,0,1,-1},{4,3,10,0,1,-1}}, - {{4,3,10,0,1,-1},{4,3,12,17,1,-1},{4,3,12,17,1,-1},{4,3,12,17,1,-1},{4,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{4,3,10,0,1,-1},{4,3,10,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{4,3,10,0,1,-1},{4,3,10,0,1,-1},{4,3,12,17,1,-1},{4,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{4,3,10,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{4,3,7,0,5,-1},{4,3,7,0,5,-1},{61,0,2,0,9,-1},{4,3,7,0,5,-1}}, - {{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,12,17,1,-1},{4,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{4,3,13,0,1,0},{4,3,13,0,1,1},{4,3,13,0,1,2},{4,3,13,0,1,3},{4,3,13,0,1,4},{4,3,13,0,1,5},{4,3,13,0,1,6},{4,3,13,0,1,7},{4,3,13,0,1,8},{4,3,13,0,1,9},{4,3,7,0,1,-1},{4,3,7,0,1,-1},{4,3,23,4,6,-1},{4,3,23,4,6,-1},{4,3,15,0,6,-1},{4,3,15,0,6,-1},{4,3,15,0,6,-1},{4,3,15,0,6,-1},{4,3,15,0,6,-1},{4,3,15,0,6,-1},{4,3,26,0,6,-1},{4,3,23,4,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{16,3,12,17,1,-1},{16,3,12,17,1,-1},{16,3,10,0,1,-1},{61,0,2,0,9,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1}}, - {{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{61,0,2,0,9,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{61,0,2,0,9,-1},{16,3,7,0,1,-1},{16,3,7,0,5,-1},{61,0,2,0,9,-1},{16,3,7,0,1,-1},{16,3,7,0,5,-1},{61,0,2,0,9,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{16,3,12,17,1,-1},{61,0,2,0,9,-1},{16,3,10,0,1,-1},{16,3,10,0,1,-1}}, - {{16,3,10,0,1,-1},{16,3,12,17,1,-1},{16,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{16,3,12,17,1,-1},{16,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{16,3,12,17,1,-1},{16,3,12,17,1,-1},{16,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{16,3,12,17,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{16,3,7,0,5,-1},{16,3,7,0,5,-1},{16,3,7,0,5,-1},{16,3,7,0,1,-1},{61,0,2,0,9,-1},{16,3,7,0,5,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{16,3,13,0,1,0},{16,3,13,0,1,1},{16,3,13,0,1,2},{16,3,13,0,1,3},{16,3,13,0,1,4},{16,3,13,0,1,5},{16,3,13,0,1,6},{16,3,13,0,1,7},{16,3,13,0,1,8},{16,3,13,0,1,9},{16,3,12,17,1,-1},{16,3,12,17,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,7,0,1,-1},{16,3,12,17,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{15,3,12,17,1,-1},{15,3,12,17,1,-1},{15,3,10,0,1,-1},{61,0,2,0,9,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{61,0,2,0,9,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{61,0,2,0,9,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1}}, - {{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{61,0,2,0,9,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{61,0,2,0,9,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{61,0,2,0,9,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{15,3,12,17,1,-1},{15,3,7,0,1,-1},{15,3,10,0,1,-1},{15,3,10,0,1,-1}}, - {{15,3,10,0,1,-1},{15,3,12,17,1,-1},{15,3,12,17,1,-1},{15,3,12,17,1,-1},{15,3,12,17,1,-1},{15,3,12,17,1,-1},{61,0,2,0,9,-1},{15,3,12,17,1,-1},{15,3,12,17,1,-1},{15,3,10,0,1,-1},{61,0,2,0,9,-1},{15,3,10,0,1,-1},{15,3,10,0,1,-1},{15,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{15,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{15,3,7,0,1,-1},{15,3,7,0,1,-1},{15,3,12,17,1,-1},{15,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{15,3,13,0,1,0},{15,3,13,0,1,1},{15,3,13,0,1,2},{15,3,13,0,1,3},{15,3,13,0,1,4},{15,3,13,0,1,5},{15,3,13,0,1,6},{15,3,13,0,1,7},{15,3,13,0,1,8},{15,3,13,0,1,9},{15,3,21,0,6,-1},{15,3,23,4,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{31,3,12,17,1,-1},{31,3,10,0,1,-1},{31,3,10,0,1,-1},{61,0,2,0,9,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1}}, - {{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{61,0,2,0,9,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{61,0,2,0,9,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{61,0,2,0,9,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{31,3,12,17,1,-1},{31,3,7,0,1,-1},{31,3,10,0,1,-1},{31,3,12,17,1,-1}}, - {{31,3,10,0,1,-1},{31,3,12,17,1,-1},{31,3,12,17,1,-1},{31,3,12,17,1,-1},{31,3,12,17,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{31,3,10,0,1,-1},{31,3,10,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{31,3,10,0,1,-1},{31,3,10,0,1,-1},{31,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{31,3,12,17,1,-1},{31,3,10,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{31,3,7,0,5,-1},{31,3,7,0,5,-1},{61,0,2,0,9,-1},{31,3,7,0,1,-1}}, - {{31,3,7,0,1,-1},{31,3,7,0,1,-1},{31,3,12,17,4,-1},{31,3,12,17,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{31,3,13,0,1,0},{31,3,13,0,1,1},{31,3,13,0,1,2},{31,3,13,0,1,3},{31,3,13,0,1,4},{31,3,13,0,1,5},{31,3,13,0,1,6},{31,3,13,0,1,7},{31,3,13,0,1,8},{31,3,13,0,1,9},{31,3,26,0,6,-1},{31,3,7,0,1,-1},{31,3,15,0,6,-1},{31,3,15,0,6,-1},{31,3,15,0,6,-1},{31,3,15,0,6,-1},{31,3,15,0,6,-1},{31,3,15,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{35,3,12,17,1,-1},{35,3,7,0,1,-1},{61,0,2,0,9,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{61,0,2,0,9,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{61,0,2,0,9,-1},{35,3,7,0,1,-1},{61,0,2,0,9,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{35,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{35,3,10,0,1,-1},{35,3,10,0,1,-1}}, - {{35,3,12,17,1,-1},{35,3,10,0,1,-1},{35,3,10,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{35,3,10,0,1,-1},{35,3,10,0,1,-1},{35,3,10,0,1,-1},{61,0,2,0,9,-1},{35,3,10,0,1,-1},{35,3,10,0,1,-1},{35,3,10,0,1,-1},{35,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{35,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{35,3,10,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{35,3,13,0,1,0},{35,3,13,0,1,1},{35,3,13,0,1,2},{35,3,13,0,1,3},{35,3,13,0,1,4},{35,3,13,0,1,5},{35,3,13,0,1,6},{35,3,13,0,1,7},{35,3,13,0,1,8},{35,3,13,0,1,9},{35,3,15,0,6,-1},{35,3,15,0,6,-1},{35,3,15,0,6,-1},{35,3,26,10,6,-1},{35,3,26,10,6,-1},{35,3,26,10,6,-1},{35,3,26,10,6,-1},{35,3,26,10,6,-1},{35,3,26,10,6,-1},{35,3,23,4,6,-1},{35,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{36,3,12,17,3,-1},{36,3,10,0,1,-1},{36,3,10,0,1,-1},{36,3,10,0,1,-1},{61,0,2,0,9,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{61,0,2,0,9,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{61,0,2,0,9,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1}}, - {{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{61,0,2,0,9,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,3,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{36,3,7,0,1,-1},{36,3,12,17,1,-1},{36,3,12,17,1,-1}}, - {{36,3,12,17,1,-1},{36,3,10,0,1,-1},{36,3,10,0,1,-1},{36,3,10,0,1,-1},{36,3,10,0,1,-1},{61,0,2,0,9,-1},{36,3,12,17,1,-1},{36,3,12,17,1,-1},{36,3,12,17,1,-1},{61,0,2,0,9,-1},{36,3,12,17,1,-1},{36,3,12,17,1,-1},{36,3,12,17,1,-1},{36,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{36,3,12,17,1,-1},{36,3,12,17,1,-1},{61,0,2,0,9,-1},{36,3,7,0,3,-1},{36,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{36,3,7,0,1,-1},{36,3,7,0,1,-1},{36,3,12,17,4,-1},{36,3,12,17,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{36,3,13,0,1,0},{36,3,13,0,1,1},{36,3,13,0,1,2},{36,3,13,0,1,3},{36,3,13,0,1,4},{36,3,13,0,1,5},{36,3,13,0,1,6},{36,3,13,0,1,7},{36,3,13,0,1,8},{36,3,13,0,1,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{36,3,15,10,6,-1},{36,3,15,10,6,-1},{36,3,15,10,6,-1},{36,3,15,10,6,-1},{36,3,15,10,6,-1},{36,3,15,10,6,-1},{36,3,15,10,6,-1},{36,3,26,0,6,-1}}, - {{61,0,2,0,9,-1},{21,3,12,17,3,-1},{21,3,10,0,1,-1},{21,3,10,0,1,-1},{61,0,2,0,9,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{61,0,2,0,9,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{61,0,2,0,9,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1}}, - {{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{61,0,2,0,9,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{61,0,2,0,9,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{21,3,12,17,1,-1},{21,3,7,0,1,-1},{21,3,10,0,1,-1},{21,3,12,0,1,-1}}, - {{21,3,10,0,1,-1},{21,3,10,0,1,-1},{21,3,10,0,1,-1},{21,3,10,0,1,-1},{21,3,10,0,1,-1},{61,0,2,0,9,-1},{21,3,12,0,1,-1},{21,3,10,0,1,-1},{21,3,10,0,1,-1},{61,0,2,0,9,-1},{21,3,10,0,1,-1},{21,3,10,0,1,-1},{21,3,12,17,1,-1},{21,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{21,3,10,0,1,-1},{21,3,10,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{21,3,7,0,3,-1},{61,0,2,0,9,-1}}, - {{21,3,7,0,1,-1},{21,3,7,0,1,-1},{21,3,12,17,1,-1},{21,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{21,3,13,0,1,0},{21,3,13,0,1,1},{21,3,13,0,1,2},{21,3,13,0,1,3},{21,3,13,0,1,4},{21,3,13,0,1,5},{21,3,13,0,1,6},{21,3,13,0,1,7},{21,3,13,0,1,8},{21,3,13,0,1,9},{61,0,2,0,9,-1},{21,3,7,0,1,-1},{21,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{26,3,12,17,3,-1},{26,3,10,0,1,-1},{26,3,10,0,1,-1},{61,0,2,0,9,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{61,0,2,0,9,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{61,0,2,0,9,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1}}, - {{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{26,3,7,0,1,-1},{26,3,10,0,1,-1},{26,3,10,0,1,-1}}, - {{26,3,10,0,1,-1},{26,3,12,17,1,-1},{26,3,12,17,1,-1},{26,3,12,17,1,-1},{26,3,12,17,4,-1},{61,0,2,0,9,-1},{26,3,10,0,1,-1},{26,3,10,0,1,-1},{26,3,10,0,1,-1},{61,0,2,0,9,-1},{26,3,10,0,1,-1},{26,3,10,0,1,-1},{26,3,10,0,1,-1},{26,3,12,17,1,-1},{26,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{26,3,10,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,12,17,4,-1},{26,3,12,17,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{26,3,13,0,1,0},{26,3,13,0,1,1},{26,3,13,0,1,2},{26,3,13,0,1,3},{26,3,13,0,1,4},{26,3,13,0,1,5},{26,3,13,0,1,6},{26,3,13,0,1,7},{26,3,13,0,1,8},{26,3,13,0,1,9},{26,3,15,0,6,-1},{26,3,15,0,6,-1},{26,3,15,0,6,-1},{26,3,15,0,6,-1},{26,3,15,0,6,-1},{26,3,15,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{26,3,26,0,6,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1},{26,3,7,0,1,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{33,3,10,0,1,-1},{33,3,10,0,1,-1},{61,0,2,0,9,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,4,-1},{33,3,7,0,4,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1}}, - {{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,4,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{61,0,2,0,9,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{61,0,2,0,9,-1},{33,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{33,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{33,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{33,3,10,0,1,-1},{33,3,10,0,1,-1},{33,3,10,0,1,-1},{33,3,12,17,1,-1},{33,3,12,17,1,-1},{33,3,12,17,1,-1},{61,0,2,0,9,-1},{33,3,12,17,1,-1},{61,0,2,0,9,-1},{33,3,10,0,1,-1},{33,3,10,0,1,-1},{33,3,10,0,1,-1},{33,3,10,0,1,-1},{33,3,10,0,1,-1},{33,3,10,0,1,-1},{33,3,10,0,1,-1},{33,3,10,0,4,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{33,3,13,0,3,0},{33,3,13,0,3,1},{33,3,13,0,3,2},{33,3,13,0,3,3},{33,3,13,0,3,4},{33,3,13,0,3,5},{33,3,13,0,3,6},{33,3,13,0,3,7},{33,3,13,0,3,8},{33,3,13,0,3,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{33,3,10,0,1,-1},{33,3,10,0,4,-1},{33,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1}}, - {{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,12,17,1,-1},{38,3,7,0,1,-1},{38,3,7,0,5,-1},{38,3,12,17,1,-1},{38,3,12,17,1,-1},{38,3,12,17,1,-1},{38,3,12,17,1,-1},{38,3,12,17,1,-1},{38,3,12,17,1,-1},{38,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,23,4,6,-1}}, - {{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,7,0,1,-1},{38,3,6,0,1,-1},{38,3,12,17,1,-1},{38,3,12,17,1,-1},{38,3,12,17,1,-1},{38,3,12,17,1,-1},{38,3,12,17,1,-1},{38,3,12,17,1,-1},{38,3,12,17,1,-1},{38,3,12,17,1,-1},{38,3,21,0,6,-1},{38,3,13,0,1,0},{38,3,13,0,1,1},{38,3,13,0,1,2},{38,3,13,0,1,3},{38,3,13,0,1,4},{38,3,13,0,1,5},{38,3,13,0,1,6},{38,3,13,0,1,7},{38,3,13,0,1,8},{38,3,13,0,1,9},{38,3,21,0,6,-1},{38,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{61,0,2,0,9,-1},{24,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{61,0,2,0,9,-1},{24,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{24,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{61,0,2,0,9,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1}}, - {{61,0,2,0,9,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{61,0,2,0,9,-1},{24,3,7,0,1,-1},{61,0,2,0,9,-1},{24,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{61,0,2,0,9,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,12,17,1,-1},{24,3,7,0,1,-1},{24,3,7,0,5,-1},{24,3,12,17,1,-1},{24,3,12,17,1,-1},{24,3,12,17,1,-1},{24,3,12,17,1,-1},{24,3,12,17,1,-1},{24,3,12,17,1,-1},{61,0,2,0,9,-1},{24,3,12,17,1,-1},{24,3,12,17,1,-1},{24,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1},{61,0,2,0,9,-1},{24,3,6,0,1,-1},{61,0,2,0,9,-1},{24,3,12,17,1,-1},{24,3,12,17,1,-1},{24,3,12,17,1,-1},{24,3,12,17,1,-1},{24,3,12,17,1,-1},{24,3,12,17,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{24,3,13,0,1,0},{24,3,13,0,1,1},{24,3,13,0,1,2},{24,3,13,0,1,3},{24,3,13,0,1,4},{24,3,13,0,1,5},{24,3,13,0,1,6},{24,3,13,0,1,7},{24,3,13,0,1,8},{24,3,13,0,1,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{24,3,7,0,5,-1},{24,3,7,0,5,-1},{24,3,7,0,1,-1},{24,3,7,0,1,-1}}, - {{39,3,7,0,1,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,0,-1},{39,3,21,0,5,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,26,0,6,-1},{39,3,21,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,12,17,8,-1},{39,3,12,17,8,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1}}, - {{39,3,13,0,1,0},{39,3,13,0,1,1},{39,3,13,0,1,2},{39,3,13,0,1,3},{39,3,13,0,1,4},{39,3,13,0,1,5},{39,3,13,0,1,6},{39,3,13,0,1,7},{39,3,13,0,1,8},{39,3,13,0,1,9},{39,3,15,0,6,-1},{39,3,15,0,6,-1},{39,3,15,0,6,-1},{39,3,15,0,6,-1},{39,3,15,0,6,-1},{39,3,15,0,6,-1},{39,3,15,0,6,-1},{39,3,15,0,6,-1},{39,3,15,0,6,-1},{39,3,15,0,6,-1},{39,3,26,0,6,-1},{39,3,12,17,1,-1},{39,3,26,0,6,-1},{39,3,12,17,1,-1},{39,3,26,0,6,-1},{39,3,12,17,4,-1},{39,3,22,10,6,-1},{39,3,18,10,6,-1},{39,3,22,10,6,-1},{39,3,18,10,6,-1},{39,3,10,0,1,-1},{39,3,10,0,1,-1}}, - {{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,5,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{61,0,2,0,9,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,5,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,5,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,5,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,5,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1}}, - {{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,5,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,5,-1},{39,3,12,17,1,-1},{39,3,12,17,5,-1},{39,3,12,17,5,-1},{39,3,12,17,5,-1},{39,3,12,17,5,-1},{39,3,12,17,5,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,10,0,1,-1}}, - {{39,3,12,17,1,-1},{39,3,12,17,5,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,21,0,6,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,7,0,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,5,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{61,0,2,0,9,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,5,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1}}, - {{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,5,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,5,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,5,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,5,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{39,3,12,17,1,-1},{61,0,2,0,9,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1}}, - {{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,12,17,1,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{61,0,2,0,9,-1},{39,3,26,0,6,-1},{39,3,26,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{39,3,21,0,6,-1},{39,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1}}, - {{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,10,0,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,10,0,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,7,0,1,-1}}, - {{28,3,13,0,1,0},{28,3,13,0,1,1},{28,3,13,0,1,2},{28,3,13,0,1,3},{28,3,13,0,1,4},{28,3,13,0,1,5},{28,3,13,0,1,6},{28,3,13,0,1,7},{28,3,13,0,1,8},{28,3,13,0,1,9},{28,3,21,0,6,-1},{28,3,21,0,6,-1},{28,3,21,0,6,-1},{28,3,21,0,6,-1},{28,3,21,0,6,-1},{28,3,21,0,6,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1}}, - {{28,3,12,17,1,-1},{28,3,7,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1}}, - {{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,12,17,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,12,17,1,-1},{28,3,12,17,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,12,17,1,-1},{28,3,7,0,1,-1},{28,3,10,0,1,-1},{28,3,13,0,1,0},{28,3,13,0,1,1},{28,3,13,0,1,2},{28,3,13,0,1,3},{28,3,13,0,1,4},{28,3,13,0,1,5},{28,3,13,0,1,6},{28,3,13,0,1,7},{28,3,13,0,1,8},{28,3,13,0,1,9},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,10,0,1,-1},{28,3,12,17,1,-1},{28,3,26,0,6,-1},{28,3,26,0,6,-1}}, - {{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1}}, - {{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{12,3,9,0,3,-1},{61,0,2,0,9,-1},{12,3,9,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{12,3,9,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1}}, - {{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,3,-1},{12,3,7,0,3,-1},{12,3,7,0,3,-1},{12,3,7,0,3,-1},{12,3,7,0,3,-1},{12,3,7,0,3,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{0,3,21,0,6,-1},{12,3,6,0,5,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1},{12,3,7,0,1,-1}}, - {{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1}}, - {{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,2,-1}}, - {{18,3,7,0,2,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1}}, - {{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1}}, - {{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1}}, - {{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1}}, - {{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1}}, - {{11,3,7,0,1,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1}}, - {{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1}}, - {{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{11,3,12,17,1,-1},{11,3,12,17,1,-1},{11,3,12,17,1,-1}}, - {{11,3,21,0,6,-1},{11,3,21,0,6,-1},{11,3,21,0,6,-1},{11,3,21,0,6,-1},{11,3,21,0,6,-1},{11,3,21,0,6,-1},{11,3,21,0,6,-1},{11,3,21,0,6,-1},{11,3,21,0,6,-1},{11,3,15,0,7,1},{11,3,15,0,7,2},{11,3,15,0,7,3},{11,3,15,0,7,4},{11,3,15,0,7,5},{11,3,15,0,7,6},{11,3,15,0,7,7},{11,3,15,0,7,8},{11,3,15,0,7,9},{11,3,15,0,6,-1},{11,3,15,0,6,-1},{11,3,15,0,6,-1},{11,3,15,0,6,-1},{11,3,15,0,6,-1},{11,3,15,0,6,-1},{11,3,15,0,6,-1},{11,3,15,0,6,-1},{11,3,15,0,6,-1},{11,3,15,0,6,-1},{11,3,15,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,26,10,6,-1},{11,3,26,10,6,-1},{11,3,26,10,6,-1},{11,3,26,10,6,-1},{11,3,26,10,6,-1},{11,3,26,10,6,-1},{11,3,26,10,6,-1},{11,3,26,10,6,-1},{11,3,26,10,6,-1},{11,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1}}, - {{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{6,3,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{40,3,17,10,6,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1}}, - {{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1}}, - {{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,21,0,6,-1},{40,3,21,0,6,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1}}, - {{29,3,29,9,6,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,7,0,3,-1},{29,3,22,10,6,-1},{29,3,18,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1}}, - {{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{0,3,21,0,6,-1},{0,3,21,0,6,-1},{0,3,21,0,6,-1},{32,3,14,0,3,-1},{32,3,14,0,3,-1},{32,3,14,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{32,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{61,0,2,0,9,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,7,0,3,-1},{42,3,12,17,3,-1},{42,3,12,17,3,-1},{42,3,12,17,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,7,0,3,-1},{43,3,12,17,3,-1},{43,3,12,17,3,-1},{43,3,12,17,3,-1},{0,3,21,0,6,-1},{0,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,7,0,3,-1},{44,3,12,17,3,-1},{44,3,12,17,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{45,3,7,0,3,-1},{45,3,7,0,3,-1},{45,3,7,0,3,-1},{45,3,7,0,3,-1},{45,3,7,0,3,-1},{45,3,7,0,3,-1},{45,3,7,0,3,-1},{45,3,7,0,3,-1},{45,3,7,0,3,-1},{45,3,7,0,3,-1},{45,3,7,0,3,-1},{45,3,7,0,3,-1},{45,3,7,0,3,-1},{61,0,2,0,9,-1},{45,3,7,0,3,-1},{45,3,7,0,3,-1},{45,3,7,0,3,-1},{61,0,2,0,9,-1},{45,3,12,17,3,-1},{45,3,12,17,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1}}, - {{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,7,-1},{23,3,7,0,7,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,3,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,7,0,1,-1},{23,3,12,17,2,-1},{23,3,12,17,2,-1},{23,3,10,0,1,-1},{23,3,12,17,1,-1},{23,3,12,17,1,-1},{23,3,12,17,1,-1},{23,3,12,17,1,-1},{23,3,12,17,1,-1},{23,3,12,17,1,-1},{23,3,12,17,1,-1},{23,3,10,0,1,-1},{23,3,10,0,1,-1}}, - {{23,3,10,0,1,-1},{23,3,10,0,1,-1},{23,3,10,0,1,-1},{23,3,10,0,1,-1},{23,3,10,0,1,-1},{23,3,10,0,1,-1},{23,3,12,17,1,-1},{23,3,10,0,1,-1},{23,3,10,0,1,-1},{23,3,12,17,1,-1},{23,3,12,17,1,-1},{23,3,12,17,8,-1},{23,3,12,17,8,-1},{23,3,12,17,8,-1},{23,3,12,17,8,-1},{23,3,12,17,8,-1},{23,3,12,17,8,-1},{23,3,12,17,7,-1},{23,3,12,17,1,-1},{23,3,12,17,7,-1},{23,3,21,0,6,-1},{23,3,21,0,6,-1},{23,3,21,0,6,-1},{23,3,6,0,1,-1},{23,3,21,0,6,-1},{23,3,21,0,6,-1},{23,3,21,0,6,-1},{23,3,23,4,6,-1},{23,3,7,0,1,-1},{23,3,12,17,7,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{23,3,13,0,1,0},{23,3,13,0,1,1},{23,3,13,0,1,2},{23,3,13,0,1,3},{23,3,13,0,1,4},{23,3,13,0,1,5},{23,3,13,0,1,6},{23,3,13,0,1,7},{23,3,13,0,1,8},{23,3,13,0,1,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{23,3,15,10,6,-1},{23,3,15,10,6,-1},{23,3,15,10,6,-1},{23,3,15,10,6,-1},{23,3,15,10,6,-1},{23,3,15,10,6,-1},{23,3,15,10,6,-1},{23,3,15,10,6,-1},{23,3,15,10,6,-1},{23,3,15,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{27,3,21,10,6,-1},{27,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{27,3,21,10,6,-1},{0,3,21,10,6,-1},{27,3,17,10,6,-1},{27,3,21,10,6,-1},{27,3,21,10,6,-1},{27,3,21,10,6,-1},{27,3,21,10,6,-1},{27,3,12,17,2,-1},{27,3,12,17,2,-1},{27,3,12,17,2,-1},{27,3,1,18,2,-1},{61,0,2,0,9,-1},{27,3,13,0,4,0},{27,3,13,0,4,1},{27,3,13,0,4,2},{27,3,13,0,4,3},{27,3,13,0,4,4},{27,3,13,0,4,5},{27,3,13,0,4,6},{27,3,13,0,4,7},{27,3,13,0,4,8},{27,3,13,0,4,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1}}, - {{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,6,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1}}, - {{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,7,0,4,-1},{27,3,12,17,4,-1},{27,3,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1}}, - {{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{40,3,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{48,3,7,0,4,-1},{61,0,2,0,9,-1}}, - {{48,3,12,17,4,-1},{48,3,12,17,4,-1},{48,3,12,17,4,-1},{48,3,10,0,4,-1},{48,3,10,0,4,-1},{48,3,10,0,4,-1},{48,3,10,0,4,-1},{48,3,12,17,4,-1},{48,3,12,17,4,-1},{48,3,10,0,4,-1},{48,3,10,0,4,-1},{48,3,10,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{48,3,10,0,4,-1},{48,3,10,0,4,-1},{48,3,12,17,4,-1},{48,3,10,0,4,-1},{48,3,10,0,4,-1},{48,3,10,0,4,-1},{48,3,10,0,4,-1},{48,3,10,0,4,-1},{48,3,10,0,4,-1},{48,3,12,17,4,-1},{48,3,12,17,4,-1},{48,3,12,17,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{48,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{48,3,21,10,6,-1},{48,3,21,10,6,-1},{48,3,13,0,4,0},{48,3,13,0,4,1},{48,3,13,0,4,2},{48,3,13,0,4,3},{48,3,13,0,4,4},{48,3,13,0,4,5},{48,3,13,0,4,6},{48,3,13,0,4,7},{48,3,13,0,4,8},{48,3,13,0,4,9},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1}}, - {{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{52,3,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1}}, - {{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1}}, - {{54,3,10,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,7,0,4,-1},{54,3,10,0,4,-1},{54,3,10,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{54,3,13,0,4,0},{54,3,13,0,4,1},{54,3,13,0,4,2},{54,3,13,0,4,3},{54,3,13,0,4,4},{54,3,13,0,4,5},{54,3,13,0,4,6},{54,3,13,0,4,7},{54,3,13,0,4,8},{54,3,13,0,4,9},{54,3,15,0,4,1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{54,3,26,10,6,-1},{54,3,26,10,6,-1}}, - {{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1},{23,3,26,10,6,-1}}, - {{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,7,0,3,-1},{55,3,12,17,3,-1},{55,3,12,17,3,-1},{55,3,10,0,3,-1},{55,3,10,0,3,-1},{55,3,12,17,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{55,3,21,0,6,-1},{55,3,21,0,6,-1}}, - {{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1}}, - {{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,7,0,4,-1},{91,3,10,0,4,-1},{91,3,12,17,4,-1},{91,3,10,0,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{61,0,2,0,9,-1}}, - {{91,3,12,17,4,-1},{91,3,10,0,4,-1},{91,3,12,17,4,-1},{91,3,10,0,4,-1},{91,3,10,0,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,10,0,4,-1},{91,3,10,0,4,-1},{91,3,10,0,4,-1},{91,3,10,0,4,-1},{91,3,10,0,4,-1},{91,3,10,0,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{91,3,12,17,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{91,3,12,17,4,-1}}, - {{91,3,13,0,4,0},{91,3,13,0,4,1},{91,3,13,0,4,2},{91,3,13,0,4,3},{91,3,13,0,4,4},{91,3,13,0,4,5},{91,3,13,0,4,6},{91,3,13,0,4,7},{91,3,13,0,4,8},{91,3,13,0,4,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{91,3,13,0,4,0},{91,3,13,0,4,1},{91,3,13,0,4,2},{91,3,13,0,4,3},{91,3,13,0,4,4},{91,3,13,0,4,5},{91,3,13,0,4,6},{91,3,13,0,4,7},{91,3,13,0,4,8},{91,3,13,0,4,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{91,3,21,0,6,-1},{91,3,21,0,6,-1},{91,3,21,0,6,-1},{91,3,21,0,6,-1},{91,3,21,0,6,-1},{91,3,21,0,6,-1},{91,3,21,0,6,-1},{91,3,6,0,4,-1},{91,3,21,0,6,-1},{91,3,21,0,6,-1},{91,3,21,0,6,-1},{91,3,21,0,6,-1},{91,3,21,0,6,-1},{91,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,11,17,6,-1},{61,0,2,0,9,-1}}, - {{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,10,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1}}, - {{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,12,17,4,-1},{62,3,10,0,4,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,10,0,4,-1},{62,3,12,17,4,-1},{62,3,10,0,4,-1},{62,3,10,0,4,-1},{62,3,10,0,4,-1}}, - {{62,3,10,0,4,-1},{62,3,10,0,4,-1},{62,3,12,17,4,-1},{62,3,10,0,4,-1},{62,3,10,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{62,3,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{62,3,13,0,4,0},{62,3,13,0,4,1},{62,3,13,0,4,2},{62,3,13,0,4,3},{62,3,13,0,4,4},{62,3,13,0,4,5},{62,3,13,0,4,6},{62,3,13,0,4,7},{62,3,13,0,4,8},{62,3,13,0,4,9},{62,3,21,0,6,-1},{62,3,21,0,6,-1},{62,3,21,0,6,-1},{62,3,21,0,6,-1},{62,3,21,0,6,-1},{62,3,21,0,6,-1}}, - {{62,3,21,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,12,17,4,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{62,3,26,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{70,3,12,17,4,-1},{70,3,12,17,4,-1},{70,3,10,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1}}, - {{70,3,7,0,4,-1},{70,3,10,0,4,-1},{70,3,12,17,4,-1},{70,3,12,17,4,-1},{70,3,12,17,4,-1},{70,3,12,17,4,-1},{70,3,10,0,4,-1},{70,3,10,0,4,-1},{70,3,12,17,4,-1},{70,3,12,17,4,-1},{70,3,10,0,4,-1},{70,3,12,17,4,-1},{70,3,12,17,4,-1},{70,3,12,17,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,13,0,4,0},{70,3,13,0,4,1},{70,3,13,0,4,2},{70,3,13,0,4,3},{70,3,13,0,4,4},{70,3,13,0,4,5},{70,3,13,0,4,6},{70,3,13,0,4,7},{70,3,13,0,4,8},{70,3,13,0,4,9},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1},{70,3,7,0,4,-1}}, - {{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1}}, - {{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,7,0,4,-1},{93,3,12,17,4,-1},{93,3,10,0,4,-1},{93,3,12,17,4,-1},{93,3,12,17,4,-1},{93,3,10,0,4,-1},{93,3,10,0,4,-1},{93,3,10,0,4,-1},{93,3,12,17,4,-1},{93,3,10,0,4,-1},{93,3,12,17,4,-1},{93,3,12,17,4,-1},{93,3,12,17,4,-1},{93,3,10,0,4,-1},{93,3,10,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{93,3,21,0,6,-1},{93,3,21,0,6,-1},{93,3,21,0,6,-1},{93,3,21,0,6,-1}}, - {{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1}}, - {{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,10,0,4,-1},{68,3,10,0,4,-1},{68,3,10,0,4,-1},{68,3,10,0,4,-1},{68,3,10,0,4,-1},{68,3,10,0,4,-1},{68,3,10,0,4,-1},{68,3,10,0,4,-1},{68,3,12,17,4,-1},{68,3,12,17,4,-1},{68,3,12,17,4,-1},{68,3,12,17,4,-1},{68,3,12,17,4,-1},{68,3,12,17,4,-1},{68,3,12,17,4,-1},{68,3,12,17,4,-1},{68,3,10,0,4,-1},{68,3,10,0,4,-1},{68,3,12,17,4,-1},{68,3,12,17,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{68,3,21,0,6,-1},{68,3,21,0,6,-1},{68,3,21,0,6,-1},{68,3,21,0,6,-1},{68,3,21,0,6,-1}}, - {{68,3,13,0,4,0},{68,3,13,0,4,1},{68,3,13,0,4,2},{68,3,13,0,4,3},{68,3,13,0,4,4},{68,3,13,0,4,5},{68,3,13,0,4,6},{68,3,13,0,4,7},{68,3,13,0,4,8},{68,3,13,0,4,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{68,3,7,0,4,-1},{73,3,13,0,4,0},{73,3,13,0,4,1},{73,3,13,0,4,2},{73,3,13,0,4,3},{73,3,13,0,4,4},{73,3,13,0,4,5},{73,3,13,0,4,6},{73,3,13,0,4,7},{73,3,13,0,4,8},{73,3,13,0,4,9},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1}}, - {{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,7,0,4,-1},{73,3,6,0,4,-1},{73,3,6,0,4,-1},{73,3,6,0,4,-1},{73,3,6,0,4,-1},{73,3,6,0,4,-1},{73,3,6,0,4,-1},{73,3,21,0,6,-1},{73,3,21,0,6,-1}}, - {{70,3,21,0,6,-1},{70,3,21,0,6,-1},{70,3,21,0,6,-1},{70,3,21,0,6,-1},{70,3,21,0,6,-1},{70,3,21,0,6,-1},{70,3,21,0,6,-1},{70,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{0,3,21,0,6,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1}}, - {{1,3,12,17,3,-1},{0,3,10,0,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{0,3,7,0,3,-1},{0,3,7,0,3,-1},{0,3,7,0,3,-1},{0,3,7,0,3,-1},{1,3,12,17,3,-1},{0,3,7,0,3,-1},{0,3,7,0,3,-1},{0,3,7,0,3,-1},{0,3,7,0,3,-1},{0,3,10,0,3,-1},{0,3,10,0,3,-1},{1,3,12,17,3,-1},{0,3,7,0,3,-1},{0,3,7,0,3,-1},{61,0,2,0,9,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1}}, - {{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{14,3,5,0,8,-1},{14,3,5,0,8,-1},{14,3,5,0,8,-1},{14,3,5,0,8,-1},{14,3,5,0,8,-1},{8,3,5,0,8,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,8,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,8,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1}}, - {{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,8,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{14,3,6,0,5,-1},{14,3,6,0,5,-1},{14,3,6,0,5,-1}}, - {{14,3,6,0,5,-1},{14,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{14,3,6,0,5,-1},{14,3,6,0,5,-1},{14,3,6,0,5,-1},{14,3,6,0,5,-1},{14,3,6,0,5,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{8,3,6,0,5,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1}}, - {{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1}}, - {{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{14,3,6,0,5,-1}}, - {{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1}}, - {{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1}}, - {{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1}}, - {{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,5,-1},{25,3,5,0,5,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1}}, - {{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,1,-1}}, - {{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1}}, - {{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1}}, - {{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{61,0,2,0,9,-1},{14,3,9,0,1,-1},{61,0,2,0,9,-1},{14,3,9,0,1,-1},{61,0,2,0,9,-1},{14,3,9,0,1,-1},{61,0,2,0,9,-1},{14,3,9,0,1,-1}}, - {{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,5,-1},{14,3,5,0,1,-1},{14,3,5,0,5,-1},{14,3,5,0,1,-1},{14,3,5,0,5,-1},{14,3,5,0,1,-1},{14,3,5,0,5,-1},{14,3,5,0,1,-1},{14,3,5,0,5,-1},{14,3,5,0,1,-1},{14,3,5,0,5,-1},{14,3,5,0,1,-1},{14,3,5,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1}}, - {{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,8,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{61,0,2,0,9,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,5,-1},{14,3,8,0,1,-1},{14,3,24,10,5,-1},{14,3,5,0,5,-1},{14,3,24,10,5,-1}}, - {{14,3,24,10,5,-1},{14,3,24,10,5,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{61,0,2,0,9,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,5,-1},{14,3,9,0,1,-1},{14,3,9,0,5,-1},{14,3,8,0,1,-1},{14,3,24,10,5,-1},{14,3,24,10,5,-1},{14,3,24,10,5,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,5,-1},{61,0,2,0,9,-1},{14,3,24,10,5,-1},{14,3,24,10,5,-1},{14,3,24,10,5,-1}}, - {{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,5,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,5,-1},{14,3,9,0,1,-1},{14,3,24,10,5,-1},{14,3,24,10,5,-1},{14,3,24,10,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{61,0,2,0,9,-1},{14,3,5,0,1,-1},{14,3,5,0,1,-1},{14,3,9,0,1,-1},{14,3,9,0,5,-1},{14,3,9,0,1,-1},{14,3,9,0,5,-1},{14,3,8,0,1,-1},{14,3,24,10,5,-1},{14,3,24,10,5,-1},{61,0,2,0,9,-1}}, - {{0,3,29,9,5,-1},{0,3,29,9,5,-1},{0,3,29,9,5,-1},{0,3,29,9,5,-1},{0,3,29,9,5,-1},{0,3,29,9,5,-1},{0,3,29,9,5,-1},{0,3,29,9,5,-1},{0,3,29,9,5,-1},{0,3,29,9,5,-1},{0,3,29,9,5,-1},{0,3,1,18,2,-1},{1,3,1,18,0,-1},{1,3,1,18,0,-1},{0,3,1,0,2,-1},{0,3,1,1,2,-1},{0,0,17,10,0,-1},{0,3,17,10,5,-1},{0,3,17,10,6,-1},{0,0,17,10,6,-1},{0,0,17,10,6,-1},{0,0,17,10,6,-1},{0,0,21,10,6,-1},{0,3,21,10,5,-1},{0,0,20,10,6,-1},{0,0,19,10,0,-1},{0,3,22,10,6,-1},{0,3,20,10,6,-1},{0,0,20,10,6,-1},{0,0,19,10,6,-1},{0,3,22,10,6,-1},{0,3,20,10,6,-1}}, - {{0,0,21,10,6,-1},{0,0,21,10,6,-1},{0,0,21,10,6,-1},{0,3,21,10,6,-1},{0,0,21,10,5,-1},{0,0,21,10,5,-1},{0,0,21,10,5,-1},{0,0,21,10,0,-1},{0,3,27,9,6,-1},{0,3,28,7,6,-1},{0,3,1,11,2,-1},{0,3,1,14,2,-1},{0,3,1,16,2,-1},{0,3,1,12,2,-1},{0,3,1,15,2,-1},{0,3,29,6,5,-1},{0,0,21,4,6,-1},{0,3,21,4,6,-1},{0,0,21,4,6,-1},{0,0,21,4,5,-1},{0,3,21,4,5,-1},{0,0,21,10,6,-1},{0,3,21,10,5,-1},{0,3,21,10,5,-1},{0,3,21,10,6,-1},{0,3,20,10,6,-1},{0,3,19,10,6,-1},{0,0,21,10,6,-1},{0,3,21,10,5,-1},{0,3,21,10,6,-1},{0,0,21,10,5,-1},{0,3,16,10,8,-1}}, - {{0,3,16,10,8,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,25,6,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,21,10,5,-1},{0,3,21,10,5,-1},{0,3,21,10,5,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,25,10,6,-1},{0,3,21,10,6,-1},{0,3,16,10,4,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,5,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,29,9,5,-1}}, - {{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{61,0,2,0,2,-1},{0,3,1,0,2,-1},{0,3,1,0,2,-1},{0,3,1,0,2,-1},{0,3,1,0,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,15,2,5,0},{25,3,6,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,0,15,2,5,4},{0,3,15,2,5,5},{0,3,15,2,5,6},{0,3,15,2,5,7},{0,3,15,2,5,8},{0,3,15,2,5,9},{0,3,25,3,5,-1},{0,3,25,3,5,-1},{0,3,25,10,5,-1},{0,3,22,10,5,-1},{0,3,18,10,5,-1},{25,0,6,0,5,-1}}, - {{0,3,15,2,5,0},{0,0,15,2,5,1},{0,0,15,2,5,2},{0,0,15,2,5,3},{0,0,15,2,5,4},{0,3,15,2,5,5},{0,3,15,2,5,6},{0,3,15,2,5,7},{0,3,15,2,5,8},{0,3,15,2,5,9},{0,3,25,3,5,-1},{0,3,25,3,5,-1},{0,3,25,10,5,-1},{0,3,22,10,5,-1},{0,3,18,10,5,-1},{61,0,2,0,9,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,5,-1},{0,2,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,0,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{0,3,23,4,6,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1}}, - {{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{61,0,2,4,9,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,11,17,6,-1},{1,3,11,17,6,-1},{1,3,11,17,6,-1}}, - {{1,3,11,17,6,-1},{1,3,12,17,3,-1},{1,3,11,17,6,-1},{1,3,11,17,6,-1},{1,3,11,17,6,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,10,5,-1},{0,3,26,10,5,-1},{0,3,9,0,5,-1},{0,0,26,10,5,-1},{0,3,26,10,6,-1},{0,0,26,10,5,-1},{0,3,26,10,5,-1},{0,3,9,0,5,-1},{0,3,26,10,6,-1},{0,0,26,10,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,0,5,0,5,-1},{0,3,26,10,6,-1},{0,3,9,0,5,-1},{0,0,26,10,5,-1},{0,3,26,10,6,-1},{0,3,25,10,8,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,5,-1},{0,0,26,10,5,-1},{0,0,26,10,5,-1},{0,3,26,10,6,-1},{0,3,9,0,5,-1},{0,3,26,10,6,-1},{14,0,9,0,5,-1},{0,3,26,10,6,-1},{0,3,9,0,5,-1},{0,3,26,10,6,-1},{25,3,9,0,5,-1},{25,0,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,26,4,8,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{25,3,9,0,3,-1},{0,3,9,0,5,-1},{0,3,5,0,5,-1},{0,3,7,0,5,-1},{0,3,7,0,5,-1},{0,3,7,0,5,-1},{0,3,7,0,5,-1},{0,3,5,0,5,-1},{0,3,26,10,6,-1},{0,3,26,10,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1}}, - {{0,3,25,10,5,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,9,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,26,10,6,-1},{0,3,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{25,3,5,0,3,-1},{0,3,26,0,6,-1},{0,3,15,10,5,-1},{0,3,15,10,5,-1},{0,3,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,3,15,10,5,-1},{0,3,15,10,5,-1},{0,3,15,10,5,-1},{0,3,15,10,5,-1},{0,3,15,10,5,-1},{0,3,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,3,15,10,5,-1}}, - {{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,3,14,0,5,-1},{25,3,14,0,5,-1},{25,3,14,0,5,-1},{25,3,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,0,14,0,5,-1},{25,3,14,0,5,-1},{25,3,14,0,5,-1},{25,3,14,0,5,-1},{25,3,14,0,5,-1},{25,3,14,0,5,-1},{25,3,14,0,5,-1}}, - {{25,3,14,0,3,-1},{25,3,14,0,3,-1},{25,3,14,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,14,0,3,-1},{25,3,14,0,3,-1},{25,3,14,0,3,-1},{25,3,14,0,3,-1},{0,0,15,10,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,25,10,6,-1},{0,3,26,10,6,-1},{0,0,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,3,6,-1},{0,3,25,4,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1}}, - {{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,5,-1},{0,3,25,10,5,-1},{0,0,25,10,6,-1},{0,3,25,10,5,-1},{0,3,25,10,5,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,0,25,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,5,22,10,5,-1},{0,5,18,10,5,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1}}, - {{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1}}, - {{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,10,6,-1},{0,3,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,0,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,0,15,10,5,1},{0,0,15,10,5,2},{0,0,15,10,5,3},{0,0,15,10,5,4},{0,0,15,10,5,5},{0,0,15,10,5,6},{0,0,15,10,5,7},{0,0,15,10,5,8},{0,0,15,10,5,9},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,1},{0,0,15,10,5,2},{0,0,15,10,5,3},{0,0,15,10,5,4},{0,0,15,10,5,5},{0,0,15,10,5,6},{0,0,15,10,5,7},{0,0,15,10,5,8},{0,0,15,10,5,9},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1}}, - {{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,10,5,-1},{0,0,15,2,5,1},{0,0,15,2,5,2},{0,0,15,2,5,3},{0,0,15,2,5,4},{0,0,15,2,5,5},{0,0,15,2,5,6},{0,0,15,2,5,7},{0,0,15,2,5,8},{0,0,15,2,5,9},{0,0,15,2,5,-1},{0,0,15,2,5,-1},{0,0,15,2,5,-1},{0,0,15,2,5,-1},{0,0,15,2,5,-1},{0,0,15,2,5,-1},{0,0,15,2,5,-1},{0,0,15,2,5,-1},{0,0,15,2,5,-1},{0,0,15,2,5,-1},{0,0,15,2,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1}}, - {{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1}}, - {{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,3,15,10,5,0},{0,0,15,10,6,-1},{0,0,15,10,6,-1},{0,0,15,10,6,-1},{0,0,15,10,6,-1},{0,0,15,10,6,-1},{0,0,15,10,6,-1},{0,0,15,10,6,-1},{0,0,15,10,6,-1},{0,0,15,10,6,-1},{0,0,15,10,6,-1},{0,0,15,10,6,1},{0,0,15,10,6,2},{0,0,15,10,6,3},{0,0,15,10,6,4},{0,0,15,10,6,5},{0,0,15,10,6,6},{0,0,15,10,6,7},{0,0,15,10,6,8},{0,0,15,10,6,9},{0,0,15,10,6,-1},{0,0,15,10,6,0}}, - {{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1}}, - {{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1}}, - {{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,0,26,10,6,-1},{0,0,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,0,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,0,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1}}, - {{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,0,15,10,6,1},{0,0,15,10,6,2},{0,0,15,10,6,3},{0,0,15,10,6,4},{0,0,15,10,6,5},{0,0,15,10,6,6},{0,0,15,10,6,7},{0,0,15,10,6,8},{0,0,15,10,6,9},{0,0,15,10,6,-1}}, - {{0,3,15,10,6,1},{0,3,15,10,6,2},{0,3,15,10,6,3},{0,3,15,10,6,4},{0,3,15,10,6,5},{0,3,15,10,6,6},{0,3,15,10,6,7},{0,3,15,10,6,8},{0,3,15,10,6,9},{0,3,15,10,6,-1},{0,3,15,10,6,1},{0,3,15,10,6,2},{0,3,15,10,6,3},{0,3,15,10,6,4},{0,3,15,10,6,5},{0,3,15,10,6,6},{0,3,15,10,6,7},{0,3,15,10,6,8},{0,3,15,10,6,9},{0,3,15,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,4,22,10,6,-1},{0,4,18,10,6,-1},{0,4,22,10,6,-1},{0,4,18,10,6,-1},{0,4,22,10,6,-1},{0,4,18,10,6,-1},{0,4,22,10,6,-1},{0,4,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1},{46,3,26,0,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,4,22,10,6,-1},{0,4,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,5,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,5,-1},{0,3,25,10,5,-1},{0,3,25,10,5,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,5,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1}}, - {{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,25,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,0,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1}}, - {{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{56,3,9,0,3,-1},{61,0,2,0,9,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1}}, - {{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{56,3,5,0,3,-1},{61,0,2,0,9,-1}}, - {{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,8,-1},{25,3,9,0,8,-1},{25,3,9,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,3,-1},{25,3,9,0,3,-1},{25,3,9,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,5,0,8,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,9,0,3,-1},{25,3,9,0,3,-1}}, - {{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1}}, - {{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,5,0,3,-1},{7,3,26,10,6,-1},{7,3,26,10,6,-1},{7,3,26,10,6,-1},{7,3,26,10,6,-1},{7,3,26,10,6,-1},{7,3,26,10,6,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{7,3,12,17,3,-1},{7,3,12,17,3,-1},{7,3,12,17,3,-1},{7,3,9,0,3,-1},{7,3,5,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{7,3,21,10,6,-1},{7,3,21,10,6,-1},{7,3,21,10,6,-1},{7,3,21,10,6,-1},{7,3,15,10,6,-1},{7,3,21,10,6,-1},{7,3,21,10,6,-1}}, - {{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1}}, - {{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{12,3,5,0,3,-1},{61,0,2,0,9,-1},{12,3,5,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{12,3,5,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1}}, - {{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1}}, - {{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{57,3,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{57,3,6,0,5,-1},{57,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{57,3,12,17,4,-1}}, - {{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1}}, - {{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1},{8,3,12,17,3,-1}}, - {{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,20,10,6,-1},{0,3,19,10,6,-1},{0,3,20,10,6,-1},{0,3,19,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,20,10,6,-1},{0,3,19,10,6,-1},{0,3,21,10,6,-1},{0,3,20,10,6,-1},{0,3,19,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,17,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,17,10,6,-1},{0,3,21,10,6,-1},{0,3,20,10,6,-1},{0,3,19,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1}}, - {{0,3,20,10,6,-1},{0,3,19,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1},{0,3,18,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,6,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,3,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,3,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,3,-1},{0,3,17,10,6,-1},{0,3,17,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1},{0,3,21,10,6,-1}}, - {{0,3,17,10,6,-1},{0,3,21,10,6,-1},{0,3,22,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{61,0,2,0,9,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,5,-1}}, - {{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1}}, - {{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,6,-1},{17,5,26,10,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1}}, - {{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{17,5,26,10,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,1,29,9,5,-1},{0,5,21,10,6,-1},{0,5,21,10,6,-1},{0,5,21,10,6,-1},{0,5,26,10,6,-1},{17,5,6,0,1,-1},{0,5,7,0,1,-1},{17,5,14,0,1,-1},{0,5,22,10,6,-1},{0,5,18,10,6,-1},{0,5,22,10,6,-1},{0,5,18,10,6,-1},{0,5,22,10,6,-1},{0,5,18,10,6,-1},{0,5,22,10,6,-1},{0,5,18,10,6,-1},{0,5,22,10,6,-1},{0,5,18,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,22,10,6,-1},{0,5,18,10,6,-1},{0,5,22,10,6,-1},{0,5,18,10,6,-1},{0,5,22,10,6,-1},{0,5,18,10,6,-1},{0,5,22,10,6,-1},{0,5,18,10,6,-1},{0,5,17,10,6,-1},{0,5,22,10,6,-1},{0,5,18,10,6,-1},{0,5,18,10,6,-1}}, - {{0,5,26,10,6,-1},{17,5,14,0,8,-1},{17,5,14,0,8,-1},{17,5,14,0,8,-1},{17,5,14,0,8,-1},{17,5,14,0,8,-1},{17,5,14,0,8,-1},{17,5,14,0,8,-1},{17,5,14,0,8,-1},{17,5,14,0,8,-1},{1,5,12,17,8,-1},{1,5,12,17,8,-1},{1,5,12,17,8,-1},{1,5,12,17,8,-1},{18,5,10,0,8,-1},{18,5,10,0,8,-1},{0,5,17,10,6,-1},{0,5,6,0,8,-1},{0,5,6,0,8,-1},{0,5,6,0,8,-1},{0,5,6,0,8,-1},{0,5,6,0,8,-1},{0,5,26,10,5,-1},{0,5,26,10,6,-1},{17,5,14,0,5,-1},{17,5,14,0,5,-1},{17,5,14,0,5,-1},{17,5,6,0,8,-1},{0,5,7,0,8,-1},{0,5,21,10,6,-1},{0,5,26,10,6,-1},{0,3,26,10,6,-1}}, - {{61,0,2,0,9,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1}}, - {{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1}}, - {{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{20,5,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{1,5,12,17,1,-1},{1,5,12,17,1,-1},{0,5,24,10,5,-1},{0,5,24,10,5,-1},{20,5,6,0,1,-1},{20,5,6,0,1,-1},{20,5,7,0,5,-1}}, - {{0,5,17,10,0,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1}}, - {{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1}}, - {{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{22,5,7,0,1,-1},{0,5,21,10,1,-1},{0,5,6,0,1,-1},{22,5,6,0,1,-1},{22,5,6,0,1,-1},{22,5,7,0,5,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1}}, - {{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1}}, - {{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1}}, - {{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,2,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1}}, - {{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{18,5,7,0,5,-1},{61,0,2,0,9,-1},{0,5,26,0,6,-1},{0,5,26,0,6,-1},{0,5,15,0,5,-1},{0,5,15,0,5,-1},{0,5,15,0,5,-1},{0,5,15,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1}}, - {{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{5,5,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1}}, - {{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{0,5,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1},{22,5,7,0,8,-1}}, - {{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,10,5,-1},{18,5,26,10,5,-1},{61,0,2,0,9,-1}}, - {{0,5,15,0,5,-1},{0,5,15,0,5,-1},{0,5,15,0,5,-1},{0,5,15,0,5,-1},{0,5,15,0,5,-1},{0,5,15,0,5,-1},{0,5,15,0,5,-1},{0,5,15,0,5,-1},{0,5,15,0,5,-1},{0,5,15,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1}}, - {{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,0,15,0,6,-1},{0,0,15,0,6,-1},{0,0,15,0,6,-1},{0,0,15,0,6,-1},{0,0,15,0,6,-1},{0,0,15,0,6,-1},{0,0,15,0,6,-1},{0,0,15,0,6,-1},{0,5,26,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1}}, - {{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,0,5,-1},{18,5,26,10,5,-1},{18,5,26,10,5,-1},{18,5,26,10,5,-1},{0,5,26,0,6,-1}}, - {{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1},{0,5,15,10,5,-1}}, - {{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,10,5,-1},{0,5,26,10,5,-1},{0,5,26,10,5,-1},{0,5,26,10,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1}}, - {{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{61,0,2,0,9,-1}}, - {{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1}}, - {{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{22,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1}}, - {{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,10,5,-1},{0,5,26,10,5,-1},{0,5,26,10,5,-1},{0,5,26,10,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1}}, - {{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1}}, - {{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,10,5,-1},{0,5,26,10,5,-1}}, - {{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,10,5,-1}}, - {{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1}}, - {{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1}}, - {{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1}}, - {{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1}}, - {{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,6,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1}}, - {{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1}}, - {{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{41,5,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1}}, - {{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1}}, - {{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{41,5,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1}}, - {{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,7,0,4,-1},{86,3,6,0,4,-1},{86,3,6,0,4,-1},{86,3,6,0,4,-1},{86,3,6,0,4,-1},{86,3,6,0,4,-1},{86,3,6,0,4,-1},{86,3,21,0,6,-1},{86,3,21,0,6,-1}}, - {{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1}}, - {{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,6,0,4,-1},{74,3,21,10,6,-1},{74,3,21,10,6,-1},{74,3,21,10,6,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{74,3,7,0,4,-1}}, - {{74,3,13,0,4,0},{74,3,13,0,4,1},{74,3,13,0,4,2},{74,3,13,0,4,3},{74,3,13,0,4,4},{74,3,13,0,4,5},{74,3,13,0,4,6},{74,3,13,0,4,7},{74,3,13,0,4,8},{74,3,13,0,4,9},{74,3,7,0,4,-1},{74,3,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{8,3,9,0,1,-1},{8,3,5,0,1,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,7,0,3,-1},{8,3,12,17,4,-1},{8,3,11,17,6,-1},{8,3,11,17,6,-1},{8,3,11,17,6,-1},{8,3,21,10,6,-1},{8,3,12,17,1,-1},{8,3,12,17,1,-1},{8,3,12,17,1,-1},{8,3,12,17,1,-1},{8,3,12,17,1,-1},{8,3,12,17,1,-1},{8,3,12,17,1,-1},{8,3,12,17,1,-1},{8,3,12,17,4,-1},{8,3,12,17,4,-1},{8,3,21,10,6,-1},{8,3,6,10,1,-1}}, - {{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,9,0,3,-1},{8,3,5,0,3,-1},{8,3,6,0,5,-1},{8,3,6,0,5,-1},{61,0,2,0,9,-1},{8,3,12,17,1,-1}}, - {{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1}}, - {{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,14,0,4,-1},{79,3,14,0,4,-1},{79,3,14,0,4,-1},{79,3,14,0,4,-1},{79,3,14,0,4,-1},{79,3,14,0,4,-1},{79,3,14,0,4,-1},{79,3,14,0,4,-1},{79,3,14,0,4,-1},{79,3,14,0,4,-1},{79,3,12,17,4,-1},{79,3,12,17,4,-1},{79,3,21,0,6,-1},{79,3,21,0,6,-1},{79,3,21,0,6,-1},{79,3,21,0,6,-1},{79,3,21,0,6,-1},{79,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,24,10,6,-1},{0,3,6,10,1,-1},{0,3,6,10,1,-1},{0,3,6,10,1,-1},{0,3,6,10,1,-1},{0,3,6,10,1,-1},{0,3,6,10,1,-1},{0,3,6,10,1,-1},{0,3,6,10,1,-1},{0,3,6,10,1,-1}}, - {{0,3,24,10,6,-1},{0,3,24,10,6,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1}}, - {{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1}}, - {{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,6,0,5,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1}}, - {{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{0,3,6,10,1,-1},{0,3,24,0,6,-1},{0,3,24,0,6,-1},{25,3,9,0,4,-1},{25,3,5,0,4,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{61,0,2,0,9,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1},{25,3,9,0,3,-1},{25,3,5,0,3,-1}}, - {{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,5,0,1,-1},{25,3,9,0,1,-1},{25,3,9,0,3,-1},{25,3,9,0,3,-1},{25,3,9,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{25,3,9,0,3,-1},{25,3,9,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{25,3,7,0,3,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,5,0,1,-1},{25,3,7,0,3,-1},{25,3,7,0,3,-1},{25,3,7,0,3,-1},{25,3,7,0,3,-1},{25,3,7,0,3,-1}}, - {{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,12,17,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,12,17,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,12,17,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1}}, - {{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,7,0,4,-1},{58,3,10,0,4,-1},{58,3,10,0,4,-1},{58,3,12,17,4,-1},{58,3,12,17,4,-1},{58,3,10,0,4,-1},{58,3,26,10,6,-1},{58,3,26,10,6,-1},{58,3,26,10,6,-1},{58,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,23,4,6,-1},{0,3,26,4,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1}}, - {{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,7,0,3,-1},{65,3,21,10,6,-1},{65,3,21,10,6,-1},{65,3,21,10,6,-1},{65,3,21,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1}}, - {{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,7,0,4,-1},{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,10,0,4,-1}}, - {{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,10,0,4,-1},{71,3,12,17,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{71,3,21,0,6,-1},{71,3,21,0,6,-1},{71,3,13,0,4,0},{71,3,13,0,4,1},{71,3,13,0,4,2},{71,3,13,0,4,3},{71,3,13,0,4,4},{71,3,13,0,4,5},{71,3,13,0,4,6},{71,3,13,0,4,7},{71,3,13,0,4,8},{71,3,13,0,4,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,12,17,3,-1},{10,3,7,0,3,-1},{10,3,7,0,3,-1},{10,3,7,0,3,-1},{10,3,7,0,3,-1},{10,3,7,0,3,-1},{10,3,7,0,3,-1},{10,3,21,0,6,-1},{10,3,21,0,6,-1},{10,3,21,0,6,-1},{10,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{67,3,13,0,4,0},{67,3,13,0,4,1},{67,3,13,0,4,2},{67,3,13,0,4,3},{67,3,13,0,4,4},{67,3,13,0,4,5},{67,3,13,0,4,6},{67,3,13,0,4,7},{67,3,13,0,4,8},{67,3,13,0,4,9},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1}}, - {{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,7,0,4,-1},{67,3,12,17,4,-1},{67,3,12,17,4,-1},{67,3,12,17,4,-1},{67,3,12,17,4,-1},{67,3,12,17,4,-1},{67,3,12,17,4,-1},{67,3,12,17,4,-1},{67,3,12,17,4,-1},{0,3,21,0,6,-1},{67,3,21,0,6,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1}}, - {{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,7,0,3,-1},{69,3,12,17,3,-1},{69,3,12,17,3,-1},{69,3,12,17,3,-1},{69,3,12,17,3,-1},{69,3,12,17,3,-1},{69,3,12,17,3,-1},{69,3,12,17,3,-1},{69,3,12,17,3,-1},{69,3,12,17,3,-1},{69,3,12,17,3,-1},{69,3,12,17,3,-1},{69,3,10,0,3,-1},{69,3,10,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{69,3,21,0,6,-1}}, - {{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{18,5,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{84,3,12,17,4,-1},{84,3,12,17,4,-1},{84,3,12,17,4,-1},{84,3,10,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1}}, - {{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,7,0,4,-1},{84,3,12,17,4,-1},{84,3,10,0,4,-1},{84,3,10,0,4,-1},{84,3,12,17,4,-1},{84,3,12,17,4,-1},{84,3,12,17,4,-1},{84,3,12,17,4,-1},{84,3,10,0,4,-1},{84,3,10,0,4,-1},{84,3,12,17,4,-1},{84,3,10,0,4,-1},{84,3,10,0,4,-1},{84,3,10,0,4,-1}}, - {{84,3,10,0,4,-1},{84,3,21,0,6,-1},{84,3,21,0,6,-1},{84,3,21,0,6,-1},{84,3,21,0,6,-1},{84,3,21,0,6,-1},{84,3,21,0,6,-1},{84,3,21,0,6,-1},{84,3,21,0,6,-1},{84,3,21,0,6,-1},{84,3,21,0,6,-1},{84,3,21,0,6,-1},{84,3,21,0,6,-1},{84,3,21,0,6,-1},{61,0,2,0,9,-1},{0,3,6,0,3,-1},{84,3,13,0,4,0},{84,3,13,0,4,1},{84,3,13,0,4,2},{84,3,13,0,4,3},{84,3,13,0,4,4},{84,3,13,0,4,5},{84,3,13,0,4,6},{84,3,13,0,4,7},{84,3,13,0,4,8},{84,3,13,0,4,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{84,3,21,0,6,-1},{84,3,21,0,6,-1}}, - {{28,3,7,0,3,-1},{28,3,7,0,3,-1},{28,3,7,0,3,-1},{28,3,7,0,3,-1},{28,3,7,0,3,-1},{28,3,12,17,3,-1},{28,3,6,0,3,-1},{28,3,7,0,4,-1},{28,3,7,0,4,-1},{28,3,7,0,4,-1},{28,3,7,0,4,-1},{28,3,7,0,4,-1},{28,3,7,0,4,-1},{28,3,7,0,4,-1},{28,3,7,0,4,-1},{28,3,7,0,4,-1},{28,3,13,0,4,0},{28,3,13,0,4,1},{28,3,13,0,4,2},{28,3,13,0,4,3},{28,3,13,0,4,4},{28,3,13,0,4,5},{28,3,13,0,4,6},{28,3,13,0,4,7},{28,3,13,0,4,8},{28,3,13,0,4,9},{28,3,7,0,4,-1},{28,3,7,0,4,-1},{28,3,7,0,4,-1},{28,3,7,0,4,-1},{28,3,7,0,4,-1},{61,0,2,0,9,-1}}, - {{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1}}, - {{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,12,17,4,-1},{72,3,12,17,4,-1},{72,3,12,17,4,-1},{72,3,12,17,4,-1},{72,3,12,17,4,-1},{72,3,12,17,4,-1},{72,3,10,0,4,-1},{72,3,10,0,4,-1},{72,3,12,17,4,-1},{72,3,12,17,4,-1},{72,3,10,0,4,-1},{72,3,10,0,4,-1},{72,3,12,17,4,-1},{72,3,12,17,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,12,17,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,7,0,4,-1},{72,3,12,17,4,-1},{72,3,10,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{72,3,13,0,4,0},{72,3,13,0,4,1},{72,3,13,0,4,2},{72,3,13,0,4,3},{72,3,13,0,4,4},{72,3,13,0,4,5},{72,3,13,0,4,6},{72,3,13,0,4,7},{72,3,13,0,4,8},{72,3,13,0,4,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{72,3,21,0,6,-1},{72,3,21,0,6,-1},{72,3,21,0,6,-1},{72,3,21,0,6,-1}}, - {{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,6,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,7,0,1,-1},{28,3,26,0,6,-1},{28,3,26,0,6,-1},{28,3,26,0,6,-1},{28,3,7,0,1,-1},{28,3,10,0,1,-1},{28,3,12,17,4,-1},{28,3,10,0,4,-1},{28,3,7,0,4,-1},{28,3,7,0,4,-1}}, - {{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1}}, - {{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,12,17,4,-1},{92,3,7,0,4,-1},{92,3,12,17,4,-1},{92,3,12,17,4,-1},{92,3,12,17,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,12,17,4,-1},{92,3,12,17,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,12,17,4,-1},{92,3,12,17,4,-1}}, - {{92,3,7,0,4,-1},{92,3,12,17,4,-1},{92,3,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{92,3,7,0,4,-1},{92,3,7,0,4,-1},{92,3,6,0,4,-1},{92,3,21,0,6,-1},{92,3,21,0,6,-1}}, - {{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,10,0,4,-1},{87,3,12,17,4,-1},{87,3,12,17,4,-1},{87,3,10,0,4,-1},{87,3,10,0,4,-1},{87,3,21,0,6,-1},{87,3,21,0,6,-1},{87,3,7,0,4,-1},{87,3,6,0,4,-1},{87,3,6,0,4,-1},{87,3,10,0,4,-1},{87,3,12,17,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{11,3,7,0,1,-1},{61,0,2,0,9,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1}}, - {{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{25,3,5,0,3,-1},{0,3,24,0,6,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1},{25,3,6,0,5,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{25,3,5,0,3,-1},{14,3,5,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1}}, - {{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,7,0,4,-1},{87,3,10,0,4,-1},{87,3,10,0,4,-1},{87,3,12,17,4,-1},{87,3,10,0,4,-1},{87,3,10,0,4,-1},{87,3,12,17,4,-1},{87,3,10,0,4,-1},{87,3,10,0,4,-1},{87,3,21,0,6,-1},{87,3,10,0,4,-1},{87,3,12,17,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{87,3,13,0,4,0},{87,3,13,0,4,1},{87,3,13,0,4,2},{87,3,13,0,4,3},{87,3,13,0,4,4},{87,3,13,0,4,5},{87,3,13,0,4,6},{87,3,13,0,4,7},{87,3,13,0,4,8},{87,3,13,0,4,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1}}, - {{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{18,5,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1}}, - {{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1}}, - {{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{18,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1},{61,3,4,0,9,-1}}, - {{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1}}, - {{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1}}, - {{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,5,-1},{17,5,7,0,1,-1},{17,5,7,0,5,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,1,-1}}, - {{17,5,7,0,5,-1},{17,5,7,0,1,-1},{17,5,7,0,5,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1}}, - {{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1}}, - {{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1}}, - {{25,3,5,0,5,-1},{25,3,5,0,5,-1},{25,3,5,0,5,-1},{25,3,5,0,5,-1},{25,3,5,0,5,-1},{25,3,5,0,5,-1},{25,3,5,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{3,3,5,0,5,-1},{3,3,5,0,5,-1},{3,3,5,0,5,-1},{3,3,5,0,5,-1},{3,3,5,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{19,3,7,1,5,-1},{19,3,12,17,4,-1},{19,3,7,1,5,-1}}, - {{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,25,3,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{61,0,2,1,9,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{61,0,2,1,9,-1},{19,3,7,1,5,-1},{61,0,2,1,9,-1}}, - {{19,3,7,1,5,-1},{19,3,7,1,5,-1},{61,0,2,1,9,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{61,0,2,1,9,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{19,3,7,1,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1}}, - {{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1}}, - {{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,24,13,6,-1},{2,3,24,13,6,-1},{2,3,24,13,6,-1},{2,3,24,13,6,-1},{2,3,24,13,6,-1},{2,3,24,13,6,-1},{2,3,24,13,6,-1},{2,3,24,13,6,-1},{2,3,24,13,6,-1},{2,3,24,13,6,-1},{2,3,24,13,6,-1},{2,3,24,13,6,-1},{2,3,24,13,6,-1},{2,3,24,13,6,-1}}, - {{2,3,24,13,6,-1},{2,3,24,13,6,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1}}, - {{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{0,3,18,10,6,-1},{0,3,22,10,6,-1}}, - {{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1}}, - {{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1}}, - {{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,23,13,5,-1},{2,3,26,10,6,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1}}, - {{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{0,5,21,10,5,-1},{0,5,21,10,5,-1},{0,5,21,10,5,-1},{0,5,21,10,5,-1},{0,5,21,10,5,-1},{0,5,21,10,5,-1},{0,5,21,10,5,-1},{0,5,22,10,5,-1},{0,5,18,10,5,-1},{0,5,21,10,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{1,3,12,17,8,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,5,21,10,5,-1},{0,5,17,10,5,-1},{0,5,17,10,5,-1},{0,5,16,10,5,-1},{0,5,16,10,5,-1},{0,5,22,10,5,-1},{0,5,18,10,5,-1},{0,5,22,10,5,-1},{0,5,18,10,5,-1},{0,5,22,10,5,-1},{0,5,18,10,5,-1},{0,5,22,10,5,-1},{0,5,18,10,5,-1},{0,5,22,10,5,-1},{0,5,18,10,5,-1},{0,5,22,10,5,-1}}, - {{0,5,18,10,5,-1},{0,5,22,10,5,-1},{0,5,18,10,5,-1},{0,5,22,10,5,-1},{0,5,18,10,5,-1},{0,5,21,10,6,-1},{0,5,21,10,6,-1},{0,5,22,10,5,-1},{0,5,18,10,5,-1},{0,5,21,10,5,-1},{0,5,21,10,5,-1},{0,5,21,10,5,-1},{0,5,21,10,5,-1},{0,5,16,10,5,-1},{0,5,16,10,5,-1},{0,5,16,10,5,-1},{0,5,21,6,5,-1},{0,5,21,10,5,-1},{0,5,21,6,5,-1},{61,0,2,0,9,-1},{0,5,21,10,5,-1},{0,5,21,6,5,-1},{0,5,21,10,5,-1},{0,5,21,10,5,-1},{0,5,17,10,5,-1},{0,5,22,10,5,-1},{0,5,18,10,5,-1},{0,5,22,10,5,-1},{0,5,18,10,5,-1},{0,5,22,10,5,-1},{0,5,18,10,5,-1},{0,5,21,4,5,-1}}, - {{0,5,21,10,5,-1},{0,5,21,10,5,-1},{0,5,25,3,5,-1},{0,5,17,3,5,-1},{0,5,25,10,5,-1},{0,5,25,10,5,-1},{0,5,25,10,5,-1},{61,0,2,0,9,-1},{0,5,21,10,5,-1},{0,5,23,4,5,-1},{0,5,21,4,5,-1},{0,5,21,10,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,8,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1}}, - {{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{0,3,1,18,2,-1}}, - {{61,0,2,0,9,-1},{0,1,21,10,5,-1},{0,1,21,10,5,-1},{0,1,21,4,5,-1},{0,1,23,4,5,-1},{0,1,21,4,5,-1},{0,1,21,10,5,-1},{0,1,21,10,5,-1},{0,1,22,10,5,-1},{0,1,18,10,5,-1},{0,1,21,10,5,-1},{0,1,25,3,5,-1},{0,1,21,6,5,-1},{0,1,17,3,5,-1},{0,1,21,6,5,-1},{0,1,21,6,5,-1},{0,1,13,2,5,0},{0,1,13,2,5,1},{0,1,13,2,5,2},{0,1,13,2,5,3},{0,1,13,2,5,4},{0,1,13,2,5,5},{0,1,13,2,5,6},{0,1,13,2,5,7},{0,1,13,2,5,8},{0,1,13,2,5,9},{0,1,21,6,5,-1},{0,1,21,10,5,-1},{0,1,25,10,5,-1},{0,1,25,10,5,-1},{0,1,25,10,5,-1},{0,1,21,10,5,-1}}, - {{0,1,21,10,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{25,1,9,0,5,-1},{0,1,22,10,5,-1},{0,1,21,10,5,-1},{0,1,18,10,5,-1},{0,1,24,10,5,-1},{0,1,16,10,5,-1}}, - {{0,1,24,10,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{25,1,5,0,5,-1},{0,1,22,10,5,-1},{0,1,25,10,5,-1},{0,1,18,10,5,-1},{0,1,25,10,5,-1},{0,1,22,10,5,-1}}, - {{0,1,18,10,5,-1},{0,2,21,10,5,-1},{0,2,22,10,5,-1},{0,2,18,10,5,-1},{0,2,21,10,5,-1},{0,2,21,10,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{0,2,6,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1}}, - {{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{22,2,7,0,5,-1},{0,2,6,0,5,-1},{0,2,6,0,5,-1}}, - {{18,2,7,0,2,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{18,2,7,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,1,23,4,5,-1},{0,1,23,4,5,-1},{0,1,25,10,5,-1},{0,1,24,10,5,-1},{0,1,26,10,5,-1},{0,1,23,4,5,-1},{0,1,23,4,5,-1},{61,0,2,0,9,-1},{0,2,26,10,5,-1},{0,2,25,10,5,-1},{0,2,25,10,5,-1},{0,2,25,10,5,-1},{0,2,25,10,5,-1},{0,2,26,10,5,-1},{0,2,26,10,5,-1},{61,0,2,0,9,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{0,3,1,10,6,-1},{0,3,1,10,6,-1},{0,3,1,10,6,-1},{0,3,26,10,6,-1},{0,0,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{61,0,2,0,9,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1}}, - {{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{61,0,2,0,9,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{61,0,2,0,9,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{61,0,2,0,9,-1},{51,3,7,0,3,-1}}, - {{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1}}, - {{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{51,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,21,0,6,-1},{0,3,21,10,6,-1},{0,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1}}, - {{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1}}, - {{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1}}, - {{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,14,10,3,-1},{14,3,15,10,6,-1},{14,3,15,10,6,-1},{14,3,15,10,6,-1},{14,3,15,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1}}, - {{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,15,10,6,-1},{14,3,15,10,6,-1},{14,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{14,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1}}, - {{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{1,3,12,17,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{76,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1}}, - {{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{75,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{1,3,12,17,3,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{0,3,15,2,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1},{30,3,7,0,3,-1}}, - {{30,3,15,0,6,-1},{30,3,15,0,6,-1},{30,3,15,0,6,-1},{30,3,15,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1}}, - {{13,3,7,0,3,-1},{13,3,14,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,7,0,3,-1},{13,3,14,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1}}, - {{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,7,0,3,-1},{118,3,12,17,3,-1},{118,3,12,17,3,-1},{118,3,12,17,3,-1},{118,3,12,17,3,-1},{118,3,12,17,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{53,3,7,0,3,-1},{61,0,2,0,9,-1},{53,3,21,0,6,-1}}, - {{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1}}, - {{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,7,0,3,-1},{59,3,21,0,6,-1},{59,3,14,0,3,-1},{59,3,14,0,3,-1},{59,3,14,0,3,-1},{59,3,14,0,3,-1},{59,3,14,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1}}, - {{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,9,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1}}, - {{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{9,3,5,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1}}, - {{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1},{50,3,7,0,3,-1}}, - {{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{49,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{49,3,13,0,3,0},{49,3,13,0,3,1},{49,3,13,0,3,2},{49,3,13,0,3,3},{49,3,13,0,3,4},{49,3,13,0,3,5},{49,3,13,0,3,6},{49,3,13,0,3,7},{49,3,13,0,3,8},{49,3,13,0,3,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1}}, - {{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{106,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1}}, - {{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1}}, - {{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{104,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{104,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1}}, - {{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{110,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{47,3,7,1,3,-1},{61,0,2,1,9,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1}}, - {{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{61,0,2,1,9,-1},{47,3,7,1,3,-1},{47,3,7,1,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{47,3,7,1,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{47,3,7,1,3,-1}}, - {{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{81,3,7,1,3,-1},{61,0,2,1,9,-1},{81,3,21,1,6,-1},{81,3,15,1,6,-1},{81,3,15,1,6,-1},{81,3,15,1,6,-1},{81,3,15,1,6,-1},{81,3,15,1,6,-1},{81,3,15,1,6,-1},{81,3,15,1,6,-1},{81,3,15,1,6,-1}}, - {{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,7,1,3,-1},{120,3,26,1,6,-1},{120,3,26,1,6,-1},{120,3,15,1,6,-1},{120,3,15,1,6,-1},{120,3,15,1,6,-1},{120,3,15,1,6,-1},{120,3,15,1,6,-1},{120,3,15,1,6,-1},{120,3,15,1,6,-1}}, - {{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{116,3,7,1,3,-1},{61,0,2,1,9,-1}}, - {{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{116,3,15,1,6,-1},{116,3,15,1,6,-1},{116,3,15,1,6,-1},{116,3,15,1,6,-1},{116,3,15,1,6,-1},{116,3,15,1,6,-1},{116,3,15,1,6,-1},{116,3,15,1,6,-1},{116,3,15,1,6,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1}}, - {{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,7,1,3,-1},{64,3,15,1,6,-1},{64,3,15,1,6,-1},{64,3,15,1,6,-1},{64,3,15,1,6,-1},{64,3,15,1,6,-1},{64,3,15,1,6,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{64,3,21,10,6,-1}}, - {{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{77,3,7,1,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{77,3,21,1,6,-1}}, - {{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1},{98,3,7,1,3,-1}}, - {{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{97,3,7,1,3,-1},{97,3,7,1,3,-1}}, - {{60,3,7,1,3,-1},{60,3,12,17,3,-1},{60,3,12,17,3,-1},{60,3,12,17,3,-1},{61,0,2,1,9,-1},{60,3,12,17,3,-1},{60,3,12,17,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{60,3,12,17,3,-1},{60,3,12,17,3,-1},{60,3,12,17,3,-1},{60,3,12,17,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{61,0,2,1,9,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{61,0,2,1,9,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1}}, - {{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{60,3,7,1,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{60,3,12,17,3,-1},{60,3,12,17,3,-1},{60,3,12,17,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{60,3,12,17,3,-1}}, - {{60,3,15,1,6,1},{60,3,15,1,6,2},{60,3,15,1,6,3},{60,3,15,1,6,4},{60,3,15,1,6,-1},{60,3,15,1,6,-1},{60,3,15,1,6,-1},{60,3,15,1,6,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{60,3,21,1,6,-1},{60,3,21,1,6,-1},{60,3,21,1,6,-1},{60,3,21,1,6,-1},{60,3,21,1,6,-1},{60,3,21,1,6,-1},{60,3,21,1,6,-1},{60,3,21,1,6,-1},{60,3,21,1,6,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1}}, - {{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,7,1,3,-1},{88,3,15,1,6,-1},{88,3,15,1,6,-1},{88,3,21,1,6,-1}}, - {{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,7,1,3,-1},{117,3,15,1,6,-1},{117,3,15,1,6,-1},{117,3,15,1,6,-1}}, - {{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,26,1,6,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1}}, - {{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,7,1,3,-1},{112,3,12,17,3,-1},{112,3,12,17,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{112,3,15,1,6,-1},{112,3,15,1,6,-1},{112,3,15,1,6,-1},{112,3,15,1,6,-1},{112,3,15,1,6,-1},{112,3,21,1,6,-1},{112,3,21,1,6,-1},{112,3,21,1,6,-1},{112,3,21,1,6,-1},{112,3,21,1,6,-1},{112,3,21,1,6,-1},{112,3,21,1,6,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1}}, - {{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1}}, - {{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{78,3,7,1,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{78,3,21,10,6,-1},{78,3,21,10,6,-1},{78,3,21,10,6,-1},{78,3,21,10,6,-1},{78,3,21,10,6,-1},{78,3,21,10,6,-1},{78,3,21,10,6,-1}}, - {{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{83,3,7,1,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{83,3,15,1,6,-1},{83,3,15,1,6,-1},{83,3,15,1,6,-1},{83,3,15,1,6,-1},{83,3,15,1,6,-1},{83,3,15,1,6,-1},{83,3,15,1,6,-1},{83,3,15,1,6,-1}}, - {{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{82,3,7,1,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{82,3,15,1,6,-1},{82,3,15,1,6,-1},{82,3,15,1,6,-1},{82,3,15,1,6,-1},{82,3,15,1,6,-1},{82,3,15,1,6,-1},{82,3,15,1,6,-1},{82,3,15,1,6,-1}}, - {{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{122,3,7,1,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{122,3,21,1,6,-1},{122,3,21,1,6,-1},{122,3,21,1,6,-1},{122,3,21,1,6,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1}}, - {{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{122,3,15,1,6,-1},{122,3,15,1,6,-1},{122,3,15,1,6,-1},{122,3,15,1,6,-1},{122,3,15,1,6,-1},{122,3,15,1,6,-1},{122,3,15,1,6,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1}}, - {{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1}}, - {{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{89,3,7,1,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1}}, - {{2,3,15,5,6,1},{2,3,15,5,6,2},{2,3,15,5,6,3},{2,3,15,5,6,4},{2,3,15,5,6,5},{2,3,15,5,6,6},{2,3,15,5,6,7},{2,3,15,5,6,8},{2,3,15,5,6,9},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{2,3,15,5,6,-1},{61,0,2,1,9,-1}}, - {{94,3,10,0,3,-1},{94,3,12,17,3,-1},{94,3,10,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1}}, - {{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,7,0,3,-1},{94,3,12,17,3,-1},{94,3,12,17,3,-1},{94,3,12,17,3,-1},{94,3,12,17,3,-1},{94,3,12,17,3,-1},{94,3,12,17,3,-1},{94,3,12,17,3,-1},{94,3,12,17,3,-1}}, - {{94,3,12,17,3,-1},{94,3,12,17,3,-1},{94,3,12,17,3,-1},{94,3,12,17,3,-1},{94,3,12,17,3,-1},{94,3,12,17,3,-1},{94,3,12,17,3,-1},{94,3,21,0,6,-1},{94,3,21,0,6,-1},{94,3,21,0,6,-1},{94,3,21,0,6,-1},{94,3,21,0,6,-1},{94,3,21,0,6,-1},{94,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{94,3,15,10,6,1},{94,3,15,10,6,2},{94,3,15,10,6,3},{94,3,15,10,6,4},{94,3,15,10,6,5},{94,3,15,10,6,6},{94,3,15,10,6,7},{94,3,15,10,6,8},{94,3,15,10,6,9},{94,3,15,10,6,-1},{94,3,15,10,6,-1},{94,3,15,10,6,-1},{94,3,15,10,6,-1},{94,3,15,10,6,-1}}, - {{94,3,15,10,6,-1},{94,3,15,10,6,-1},{94,3,15,10,6,-1},{94,3,15,10,6,-1},{94,3,15,10,6,-1},{94,3,15,10,6,-1},{94,3,13,0,3,0},{94,3,13,0,3,1},{94,3,13,0,3,2},{94,3,13,0,3,3},{94,3,13,0,3,4},{94,3,13,0,3,5},{94,3,13,0,3,6},{94,3,13,0,3,7},{94,3,13,0,3,8},{94,3,13,0,3,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{94,3,12,17,3,-1}}, - {{85,3,12,17,3,-1},{85,3,12,17,3,-1},{85,3,10,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1}}, - {{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,7,0,3,-1},{85,3,10,0,3,-1},{85,3,10,0,3,-1},{85,3,10,0,3,-1},{85,3,12,17,3,-1},{85,3,12,17,3,-1},{85,3,12,17,3,-1},{85,3,12,17,3,-1},{85,3,10,0,3,-1},{85,3,10,0,3,-1},{85,3,12,17,3,-1},{85,3,12,17,3,-1},{85,3,21,0,6,-1},{85,3,21,0,6,-1},{85,3,1,0,6,-1},{85,3,21,0,6,-1},{85,3,21,0,6,-1}}, - {{85,3,21,0,6,-1},{85,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1}}, - {{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{101,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{101,3,13,0,3,0},{101,3,13,0,3,1},{101,3,13,0,3,2},{101,3,13,0,3,3},{101,3,13,0,3,4},{101,3,13,0,3,5},{101,3,13,0,3,6},{101,3,13,0,3,7},{101,3,13,0,3,8},{101,3,13,0,3,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{96,3,12,17,4,-1},{96,3,12,17,4,-1},{96,3,12,17,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1}}, - {{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,7,0,4,-1},{96,3,12,17,4,-1},{96,3,12,17,4,-1},{96,3,12,17,4,-1},{96,3,12,17,4,-1},{96,3,12,17,4,-1},{96,3,10,0,4,-1},{96,3,12,17,4,-1},{96,3,12,17,4,-1},{96,3,12,17,4,-1},{96,3,12,17,4,-1},{96,3,12,17,4,-1},{96,3,12,17,4,-1},{96,3,12,17,4,-1},{96,3,12,17,4,-1},{61,0,2,0,9,-1},{96,3,13,0,4,0},{96,3,13,0,4,1},{96,3,13,0,4,2},{96,3,13,0,4,3},{96,3,13,0,4,4},{96,3,13,0,4,5},{96,3,13,0,4,6},{96,3,13,0,4,7},{96,3,13,0,4,8},{96,3,13,0,4,9}}, - {{96,3,21,0,6,-1},{96,3,21,0,6,-1},{96,3,21,0,6,-1},{96,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1}}, - {{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,7,0,3,-1},{111,3,12,17,3,-1},{111,3,21,0,6,-1},{111,3,21,0,6,-1},{111,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{100,3,12,17,3,-1},{100,3,12,17,3,-1},{100,3,10,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1}}, - {{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,10,0,3,-1},{100,3,10,0,3,-1},{100,3,10,0,3,-1},{100,3,12,17,3,-1},{100,3,12,17,3,-1},{100,3,12,17,3,-1},{100,3,12,17,3,-1},{100,3,12,17,3,-1},{100,3,12,17,3,-1},{100,3,12,17,3,-1},{100,3,12,17,3,-1},{100,3,12,17,3,-1},{100,3,10,0,3,-1}}, - {{100,3,10,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,7,0,3,-1},{100,3,21,0,6,-1},{100,3,21,0,6,-1},{100,3,21,0,6,-1},{100,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{100,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{100,3,13,0,3,0},{100,3,13,0,3,1},{100,3,13,0,3,2},{100,3,13,0,3,3},{100,3,13,0,3,4},{100,3,13,0,3,5},{100,3,13,0,3,6},{100,3,13,0,3,7},{100,3,13,0,3,8},{100,3,13,0,3,9},{100,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{33,3,15,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{61,0,2,0,9,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1}}, - {{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,7,0,3,-1},{108,3,10,0,3,-1},{108,3,10,0,3,-1},{108,3,10,0,3,-1},{108,3,12,17,3,-1},{108,3,12,17,3,-1},{108,3,12,17,3,-1},{108,3,10,0,3,-1},{108,3,10,0,3,-1},{108,3,12,17,3,-1},{108,3,10,0,3,-1},{108,3,12,17,3,-1},{108,3,12,17,3,-1},{108,3,21,0,6,-1},{108,3,21,0,6,-1},{108,3,21,0,6,-1},{108,3,21,0,6,-1},{108,3,21,0,6,-1},{108,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1}}, - {{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,7,0,3,-1},{109,3,12,17,3,-1}}, - {{109,3,10,0,3,-1},{109,3,10,0,3,-1},{109,3,10,0,3,-1},{109,3,12,17,3,-1},{109,3,12,17,3,-1},{109,3,12,17,3,-1},{109,3,12,17,3,-1},{109,3,12,17,3,-1},{109,3,12,17,3,-1},{109,3,12,17,3,-1},{109,3,12,17,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{109,3,13,0,3,0},{109,3,13,0,3,1},{109,3,13,0,3,2},{109,3,13,0,3,3},{109,3,13,0,3,4},{109,3,13,0,3,5},{109,3,13,0,3,6},{109,3,13,0,3,7},{109,3,13,0,3,8},{109,3,13,0,3,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{107,3,12,17,3,-1},{107,3,10,0,3,-1},{107,3,10,0,3,-1},{61,0,2,0,9,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1}}, - {{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{61,0,2,0,9,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{61,0,2,0,9,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{61,0,2,0,9,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{107,3,12,17,3,-1},{107,3,7,0,3,-1},{107,3,10,0,3,-1},{107,3,10,0,3,-1}}, - {{107,3,12,17,3,-1},{107,3,10,0,3,-1},{107,3,10,0,3,-1},{107,3,10,0,3,-1},{107,3,10,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{107,3,10,0,3,-1},{107,3,10,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{107,3,10,0,3,-1},{107,3,10,0,3,-1},{107,3,10,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{107,3,10,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,7,0,3,-1}}, - {{107,3,7,0,3,-1},{107,3,7,0,3,-1},{107,3,10,0,3,-1},{107,3,10,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{107,3,12,17,3,-1},{107,3,12,17,3,-1},{107,3,12,17,3,-1},{107,3,12,17,3,-1},{107,3,12,17,3,-1},{107,3,12,17,3,-1},{107,3,12,17,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{107,3,12,17,3,-1},{107,3,12,17,3,-1},{107,3,12,17,3,-1},{107,3,12,17,3,-1},{107,3,12,17,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1}}, - {{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,10,0,3,-1},{124,3,10,0,3,-1},{124,3,10,0,3,-1},{124,3,12,17,3,-1},{124,3,12,17,3,-1},{124,3,12,17,3,-1},{124,3,12,17,3,-1},{124,3,12,17,3,-1},{124,3,12,17,3,-1},{124,3,10,0,3,-1},{124,3,12,17,3,-1},{124,3,10,0,3,-1},{124,3,10,0,3,-1},{124,3,10,0,3,-1},{124,3,10,0,3,-1},{124,3,12,17,3,-1}}, - {{124,3,12,17,3,-1},{124,3,10,0,3,-1},{124,3,12,17,3,-1},{124,3,12,17,3,-1},{124,3,7,0,3,-1},{124,3,7,0,3,-1},{124,3,21,0,6,-1},{124,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{124,3,13,0,3,0},{124,3,13,0,3,1},{124,3,13,0,3,2},{124,3,13,0,3,3},{124,3,13,0,3,4},{124,3,13,0,3,5},{124,3,13,0,3,6},{124,3,13,0,3,7},{124,3,13,0,3,8},{124,3,13,0,3,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1}}, - {{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,7,0,3,-1},{123,3,10,0,3,-1},{123,3,10,0,3,-1},{123,3,10,0,3,-1},{123,3,12,17,3,-1},{123,3,12,17,3,-1},{123,3,12,17,3,-1},{123,3,12,17,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{123,3,10,0,3,-1},{123,3,10,0,3,-1},{123,3,10,0,3,-1},{123,3,10,0,3,-1},{123,3,12,17,3,-1},{123,3,12,17,3,-1},{123,3,10,0,3,-1},{123,3,12,17,3,-1}}, - {{123,3,12,17,3,-1},{123,3,21,0,6,-1},{123,3,21,0,6,-1},{123,3,21,0,6,-1},{123,3,21,0,6,-1},{123,3,21,0,6,-1},{123,3,21,0,6,-1},{123,3,21,0,6,-1},{123,3,21,0,6,-1},{123,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1}}, - {{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,7,0,3,-1},{114,3,10,0,3,-1},{114,3,10,0,3,-1},{114,3,10,0,3,-1},{114,3,12,17,3,-1},{114,3,12,17,3,-1},{114,3,12,17,3,-1},{114,3,12,17,3,-1},{114,3,12,17,3,-1},{114,3,12,17,3,-1},{114,3,12,17,3,-1},{114,3,12,17,3,-1},{114,3,10,0,3,-1},{114,3,10,0,3,-1},{114,3,12,17,3,-1},{114,3,10,0,3,-1},{114,3,12,17,3,-1}}, - {{114,3,12,17,3,-1},{114,3,21,0,6,-1},{114,3,21,0,6,-1},{114,3,21,0,6,-1},{114,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{114,3,13,0,3,0},{114,3,13,0,3,1},{114,3,13,0,3,2},{114,3,13,0,3,3},{114,3,13,0,3,4},{114,3,13,0,3,5},{114,3,13,0,3,6},{114,3,13,0,3,7},{114,3,13,0,3,8},{114,3,13,0,3,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1}}, - {{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,7,0,3,-1},{102,3,12,17,3,-1},{102,3,10,0,3,-1},{102,3,12,17,3,-1},{102,3,10,0,3,-1},{102,3,10,0,3,-1},{102,3,12,17,3,-1},{102,3,12,17,3,-1},{102,3,12,17,3,-1},{102,3,12,17,3,-1},{102,3,12,17,3,-1},{102,3,12,17,3,-1},{102,3,10,0,3,-1},{102,3,12,17,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{102,3,13,0,3,0},{102,3,13,0,3,1},{102,3,13,0,3,2},{102,3,13,0,3,3},{102,3,13,0,3,4},{102,3,13,0,3,5},{102,3,13,0,3,6},{102,3,13,0,3,7},{102,3,13,0,3,8},{102,3,13,0,3,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1},{125,3,9,0,3,-1}}, - {{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1},{125,3,5,0,3,-1}}, - {{125,3,13,0,3,0},{125,3,13,0,3,1},{125,3,13,0,3,2},{125,3,13,0,3,3},{125,3,13,0,3,4},{125,3,13,0,3,5},{125,3,13,0,3,6},{125,3,13,0,3,7},{125,3,13,0,3,8},{125,3,13,0,3,9},{125,3,15,0,6,-1},{125,3,15,0,6,-1},{125,3,15,0,6,-1},{125,3,15,0,6,-1},{125,3,15,0,6,-1},{125,3,15,0,6,-1},{125,3,15,0,6,-1},{125,3,15,0,6,-1},{125,3,15,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{125,3,7,0,3,-1}}, - {{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1}}, - {{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{121,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1}}, - {{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{63,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1}}, - {{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{63,3,14,0,3,-1},{61,0,2,0,9,-1},{63,3,21,0,6,-1},{63,3,21,0,6,-1},{63,3,21,0,6,-1},{63,3,21,0,6,-1},{63,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1}}, - {{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{80,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{79,3,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{115,3,7,0,3,-1},{61,0,2,0,9,-1}}, - {{115,3,13,0,3,0},{115,3,13,0,3,1},{115,3,13,0,3,2},{115,3,13,0,3,3},{115,3,13,0,3,4},{115,3,13,0,3,5},{115,3,13,0,3,6},{115,3,13,0,3,7},{115,3,13,0,3,8},{115,3,13,0,3,9},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{115,3,21,0,6,-1},{115,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1}}, - {{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{103,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{103,3,12,17,3,-1},{103,3,12,17,3,-1},{103,3,12,17,3,-1},{103,3,12,17,3,-1},{103,3,12,17,3,-1},{103,3,21,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1}}, - {{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,12,17,3,-1},{119,3,12,17,3,-1},{119,3,12,17,3,-1},{119,3,12,17,3,-1},{119,3,12,17,3,-1},{119,3,12,17,3,-1},{119,3,12,17,3,-1},{119,3,21,0,6,-1},{119,3,21,0,6,-1},{119,3,21,0,6,-1},{119,3,21,0,6,-1},{119,3,21,0,6,-1},{119,3,26,0,6,-1},{119,3,26,0,6,-1},{119,3,26,0,6,-1},{119,3,26,0,6,-1}}, - {{119,3,6,0,3,-1},{119,3,6,0,3,-1},{119,3,6,0,3,-1},{119,3,6,0,3,-1},{119,3,21,0,6,-1},{119,3,26,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{119,3,13,0,3,0},{119,3,13,0,3,1},{119,3,13,0,3,2},{119,3,13,0,3,3},{119,3,13,0,3,4},{119,3,13,0,3,5},{119,3,13,0,3,6},{119,3,13,0,3,7},{119,3,13,0,3,8},{119,3,13,0,3,9},{61,0,2,0,9,-1},{119,3,15,0,6,-1},{119,3,15,0,6,-1},{119,3,15,0,6,-1},{119,3,15,0,6,-1},{119,3,15,0,6,-1}}, - {{119,3,15,0,6,-1},{119,3,15,0,6,-1},{61,0,2,0,9,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1}}, - {{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{119,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1}}, - {{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{99,3,7,0,4,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{99,3,7,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1}}, - {{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{99,3,10,0,4,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{99,3,12,17,4,-1},{99,3,12,17,4,-1},{99,3,12,17,4,-1},{99,3,12,17,4,-1},{99,3,6,0,4,-1},{99,3,6,0,4,-1},{99,3,6,0,4,-1},{99,3,6,0,4,-1},{99,3,6,0,4,-1},{99,3,6,0,4,-1},{99,3,6,0,4,-1},{99,3,6,0,4,-1},{99,3,6,0,4,-1},{99,3,6,0,4,-1},{99,3,6,0,4,-1},{99,3,6,0,4,-1},{99,3,6,0,4,-1}}, - {{22,5,7,0,1,-1},{20,5,7,0,1,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1}}, - {{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{105,3,7,0,3,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{105,3,26,0,6,-1},{105,3,12,17,3,-1},{105,3,12,17,3,-1},{105,3,21,0,6,-1}}, - {{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1}}, - {{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,5,-1},{0,3,26,0,5,-1}}, - {{0,3,26,0,5,-1},{0,3,26,0,5,-1},{0,3,26,0,5,-1},{0,3,26,0,5,-1},{0,3,26,0,5,-1},{0,3,10,0,3,-1},{0,3,10,0,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,10,0,3,-1},{0,3,10,0,3,-1},{0,3,10,0,3,-1},{0,3,10,0,3,-1},{0,3,10,0,3,-1},{0,3,10,0,3,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1}}, - {{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1}}, - {{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{1,3,12,17,3,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,5,-1},{0,3,26,0,5,-1},{0,3,26,0,5,-1},{0,3,26,0,5,-1},{0,3,26,0,5,-1}}, - {{0,3,26,0,5,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,26,10,6,-1}}, - {{14,3,26,10,6,-1},{14,3,26,10,6,-1},{14,3,12,17,3,-1},{14,3,12,17,3,-1},{14,3,12,17,3,-1},{14,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{0,3,15,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1}}, - {{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{61,0,2,0,9,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1}}, - {{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{61,0,2,0,9,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,9,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{61,0,2,0,9,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{61,0,2,0,9,-1},{0,3,5,0,5,-1},{61,0,2,0,9,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{61,0,2,0,9,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1}}, - {{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{61,0,2,0,9,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{61,0,2,0,9,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{61,0,2,0,9,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{61,0,2,0,9,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{61,0,2,0,9,-1}}, - {{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{61,0,2,0,9,-1},{0,3,9,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{61,0,2,0,9,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1}}, - {{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1}}, - {{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1}}, - {{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1}}, - {{0,3,9,0,5,-1},{0,3,25,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,25,10,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,25,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,25,10,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1}}, - {{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,25,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,25,10,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1}}, - {{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,25,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,25,10,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1}}, - {{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,9,0,5,-1},{0,3,25,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1}}, - {{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,25,10,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,5,0,5,-1},{0,3,9,0,5,-1},{0,3,5,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,13,2,5,0},{0,3,13,2,5,1},{0,3,13,2,5,2},{0,3,13,2,5,3},{0,3,13,2,5,4},{0,3,13,2,5,5},{0,3,13,2,5,6},{0,3,13,2,5,7},{0,3,13,2,5,8},{0,3,13,2,5,9},{0,3,13,2,5,0},{0,3,13,2,5,1},{0,3,13,2,5,2},{0,3,13,2,5,3},{0,3,13,2,5,4},{0,3,13,2,5,5},{0,3,13,2,5,6},{0,3,13,2,5,7}}, - {{0,3,13,2,5,8},{0,3,13,2,5,9},{0,3,13,2,5,0},{0,3,13,2,5,1},{0,3,13,2,5,2},{0,3,13,2,5,3},{0,3,13,2,5,4},{0,3,13,2,5,5},{0,3,13,2,5,6},{0,3,13,2,5,7},{0,3,13,2,5,8},{0,3,13,2,5,9},{0,3,13,2,5,0},{0,3,13,2,5,1},{0,3,13,2,5,2},{0,3,13,2,5,3},{0,3,13,2,5,4},{0,3,13,2,5,5},{0,3,13,2,5,6},{0,3,13,2,5,7},{0,3,13,2,5,8},{0,3,13,2,5,9},{0,3,13,2,5,0},{0,3,13,2,5,1},{0,3,13,2,5,2},{0,3,13,2,5,3},{0,3,13,2,5,4},{0,3,13,2,5,5},{0,3,13,2,5,6},{0,3,13,2,5,7},{0,3,13,2,5,8},{0,3,13,2,5,9}}, - {{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1}}, - {{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{113,3,7,1,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{113,3,15,1,6,-1},{113,3,15,1,6,-1},{113,3,15,1,6,-1},{113,3,15,1,6,-1},{113,3,15,1,6,-1},{113,3,15,1,6,-1},{113,3,15,1,6,-1},{113,3,15,1,6,-1},{113,3,15,1,6,-1},{113,3,12,17,3,-1},{113,3,12,17,3,-1},{113,3,12,17,3,-1},{113,3,12,17,3,-1},{113,3,12,17,3,-1},{113,3,12,17,3,-1},{113,3,12,17,3,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1},{61,0,2,1,9,-1}}, - {{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1}}, - {{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1}}, - {{61,0,2,13,9,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1}}, - {{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1}}, - {{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1}}, - {{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{2,3,7,13,5,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1}}, - {{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{2,3,25,10,6,-1},{2,3,25,10,6,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1},{61,0,2,13,9,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,0,15,2,5,0},{0,0,15,2,5,0},{0,0,15,2,5,1},{0,0,15,2,5,2},{0,0,15,2,5,3},{0,0,15,2,5,4},{0,0,15,2,5,5},{0,0,15,2,5,6},{0,0,15,2,5,7},{0,0,15,2,5,8},{0,0,15,2,5,9},{0,3,15,10,6,-1},{0,3,15,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1}}, - {{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,3,26,0,5,-1},{61,0,2,0,9,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1}}, - {{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,5,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1}}, - {{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,3,26,10,5,-1},{0,3,26,10,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1}}, - {{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,5,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{0,0,26,0,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1},{0,3,26,0,6,-1}}, - {{20,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1}}, - {{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,5,26,0,5,-1},{0,5,26,0,5,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1}}, - {{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{0,3,26,10,6,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1}}, - {{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1}}, - {{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{17,5,7,0,1,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1}}, - {{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{17,5,7,0,5,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1}}, - {{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,5,2,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}}, - {{61,0,2,0,2,-1},{0,3,1,18,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1}}, - {{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1},{0,3,1,18,2,-1}}, - {{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1}}, - {{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1}}, - {{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{1,0,12,17,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1},{61,0,2,0,2,-1}}, - {{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,3,0,9,-1},{61,0,2,0,9,-1},{61,0,2,0,9,-1}} +static const nsCharProps2 sCharProp2Values[647][32] = { + {{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,8,6,-1,1},{0,3,0,7,6,-1,1},{0,3,0,8,6,-1,1},{0,3,0,9,6,-1,1},{0,3,0,7,6,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,7,9,-1,1},{0,3,0,7,9,-1,1},{0,3,0,7,9,-1,1},{0,3,0,8,9,-1,1}}, + {{0,4,29,9,6,-1,1},{0,4,21,10,6,-1,1},{0,4,21,10,6,-1,1},{0,4,21,4,6,-1,1},{0,4,23,4,6,-1,1},{0,4,21,4,6,-1,1},{0,4,21,10,6,-1,1},{0,4,21,10,0,-1,1},{0,4,22,10,6,-1,1},{0,4,18,10,6,-1,1},{0,4,21,10,6,-1,1},{0,4,25,3,6,-1,1},{0,4,21,6,6,-1,1},{0,4,17,3,0,-1,1},{0,4,21,6,0,-1,1},{0,4,21,6,6,-1,1},{0,4,13,2,1,0,1},{0,4,13,2,1,1,1},{0,4,13,2,1,2,1},{0,4,13,2,1,3,1},{0,4,13,2,1,4,1},{0,4,13,2,1,5,1},{0,4,13,2,1,6,1},{0,4,13,2,1,7,1},{0,4,13,2,1,8,1},{0,4,13,2,1,9,1},{0,4,21,6,0,-1,1},{0,4,21,10,6,-1,1},{0,4,25,10,6,-1,1},{0,4,25,10,6,-1,1},{0,4,25,10,6,-1,1},{0,4,21,10,6,-1,1}}, + {{0,4,21,10,6,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{25,4,9,0,1,-1,1},{0,4,22,10,6,-1,1},{0,4,21,10,6,-1,1},{0,4,18,10,6,-1,1},{0,4,24,10,6,-1,1},{0,4,16,10,1,-1,1}}, + {{0,4,24,10,6,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{25,4,5,0,1,-1,1},{0,4,22,10,6,-1,1},{0,4,25,10,6,-1,1},{0,4,18,10,6,-1,1},{0,4,25,10,6,-1,1},{0,3,0,18,9,-1,1}}, + {{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,7,6,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1},{0,3,0,18,9,-1,1}}, + {{0,3,29,6,5,-1,1},{0,0,21,10,6,-1,1},{0,4,23,4,6,-1,1},{0,4,23,4,6,-1,1},{0,0,23,4,6,-1,1},{0,4,23,4,6,-1,1},{0,4,26,10,6,-1,1},{0,0,21,10,6,-1,0},{0,0,24,10,5,-1,1},{0,3,26,10,6,-1,0},{25,0,7,0,5,-1,1},{0,3,20,10,6,-1,1},{0,4,25,10,6,-1,1},{0,0,1,18,2,-1,1},{0,0,26,10,6,-1,0},{0,4,24,10,5,-1,1},{0,0,26,4,6,-1,1},{0,0,25,4,6,-1,0},{0,0,15,2,5,2,1},{0,0,15,2,5,3,1},{0,0,24,10,5,-1,1},{0,3,5,0,5,-1,1},{0,0,21,10,6,-1,1},{0,0,21,10,0,-1,1},{0,0,24,10,5,-1,1},{0,0,15,2,5,1,1},{25,0,7,0,5,-1,1},{0,3,19,10,6,-1,1},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,21,10,6,-1,1}}, + {{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{0,0,25,10,6,-1,0},{25,0,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,9,0,1,-1,1},{25,0,5,0,1,-1,1}}, + {{25,0,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,1,-1,1},{0,0,25,10,6,-1,0},{25,0,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,5,0,1,-1,1}}, + {{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1}}, + {{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,0,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,0,9,0,5,-1,1},{25,0,5,0,5,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,0,9,0,5,-1,1}}, + {{25,0,5,0,5,-1,1},{25,0,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,0,5,0,5,-1,1},{25,0,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,0,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1}}, + {{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,0,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,5,-1,1}}, + {{25,3,5,0,8,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,7,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1}}, + {{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,7,-1,1},{25,3,5,0,7,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,7,-1,1},{25,3,5,0,7,-1,1},{25,3,7,0,7,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,7,-1,1},{25,3,5,0,3,-1,1}}, + {{25,3,7,0,8,-1,1},{25,3,7,0,8,-1,1},{25,3,7,0,8,-1,1},{25,3,7,0,8,-1,1},{25,3,9,0,5,-1,1},{25,3,8,0,5,-1,1},{25,3,5,0,5,-1,1},{25,3,9,0,5,-1,1},{25,3,8,0,5,-1,1},{25,3,5,0,5,-1,1},{25,3,9,0,5,-1,1},{25,3,8,0,5,-1,1},{25,3,5,0,5,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,0,5,0,1,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1}}, + {{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,5,-1,1},{25,3,8,0,5,-1,1},{25,3,5,0,5,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1}}, + {{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1}}, + {{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1}}, + {{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,8,-1,1},{25,0,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,7,-1,1}}, + {{25,3,5,0,4,-1,1},{25,0,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,7,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,7,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1}}, + {{25,3,5,0,4,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,4,-1,1},{25,3,5,0,8,-1,1},{25,3,7,0,4,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,7,-1,1},{25,3,5,0,8,-1,1}}, + {{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{0,3,6,10,8,-1,1},{0,3,6,10,8,-1,1},{0,3,6,0,1,-1,1},{0,3,6,0,1,-1,1},{0,3,6,0,8,-1,1},{0,3,6,0,8,-1,1},{0,3,6,0,8,-1,1}}, + {{0,3,6,0,8,-1,1},{0,3,6,0,8,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,0,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,6,10,8,-1,1},{0,0,6,10,8,-1,1},{0,3,6,10,8,-1,1},{0,0,6,10,8,-1,1},{0,0,6,10,8,-1,1},{0,0,6,10,8,-1,1},{0,3,6,10,8,-1,1},{0,0,6,10,8,-1,1},{0,3,6,10,8,-1,1},{0,3,6,10,8,-1,1},{0,0,6,0,8,-1,1},{0,3,6,0,8,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,0,24,10,5,-1,1},{0,0,24,10,5,-1,1},{0,0,24,10,5,-1,1},{0,0,24,10,5,-1,1},{0,3,24,10,5,-1,1},{0,0,24,10,5,-1,1},{0,3,24,10,6,-1,1},{0,0,24,10,6,-1,1}}, + {{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{5,3,24,10,6,-1,0},{5,3,24,10,6,-1,0},{0,3,6,10,1,-1,1},{0,3,24,10,6,-1,1},{0,3,6,0,8,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1}}, + {{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,4,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,4,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,4,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1}}, + {{1,0,12,17,8,-1,1},{1,0,12,17,4,-1,1},{1,0,12,17,4,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,4,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,4,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,4,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1}}, + {{1,0,12,17,5,-1,1},{1,0,12,17,5,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,5,-1,1},{1,0,12,17,5,-1,1},{1,0,12,17,1,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,4,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1}}, + {{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,8,-1,1},{1,0,12,17,3,-1,1},{1,0,12,17,3,-1,1},{1,0,12,17,3,-1,1},{1,0,12,17,3,-1,1},{1,0,12,17,3,-1,1},{1,0,12,17,3,-1,1},{1,0,12,17,3,-1,1},{1,0,12,17,3,-1,1},{1,0,12,17,3,-1,1},{1,0,12,17,3,-1,1},{1,0,12,17,3,-1,1},{1,0,12,17,3,-1,1},{1,0,12,17,3,-1,1},{14,3,9,0,3,-1,1},{14,3,5,0,3,-1,1},{14,3,9,0,3,-1,1},{14,3,5,0,3,-1,1},{0,3,6,10,5,-1,1},{14,3,24,10,0,-1,1},{14,3,9,0,3,-1,1},{14,3,5,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{14,3,6,0,5,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{0,3,21,10,5,-1,1},{14,3,9,0,3,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{14,3,24,10,5,-1,1},{0,3,24,10,5,-1,1},{14,3,9,0,1,-1,1},{0,3,21,10,5,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{61,0,2,0,9,-1,1},{14,3,9,0,1,-1,1},{61,0,2,0,9,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,5,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1}}, + {{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{61,0,2,0,9,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,0,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1}}, + {{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,0,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,9,0,8,-1,1},{14,3,5,0,5,-1,1},{14,3,5,0,5,-1,1},{14,3,9,0,5,-1,1},{14,3,9,0,5,-1,1},{14,3,9,0,5,-1,1},{14,3,5,0,5,-1,1},{14,3,5,0,5,-1,1},{14,3,5,0,8,-1,1},{14,3,9,0,3,-1,1},{14,3,5,0,3,-1,1},{14,3,9,0,3,-1,1},{14,3,5,0,3,-1,1},{14,3,9,0,3,-1,1},{14,3,5,0,3,-1,1},{14,3,9,0,3,-1,1},{14,3,5,0,3,-1,1}}, + {{14,3,9,0,3,-1,1},{14,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{14,3,5,0,5,-1,1},{14,3,5,0,5,-1,1},{14,3,5,0,5,-1,1},{14,3,5,0,8,-1,1},{14,3,9,0,5,-1,1},{14,3,5,0,5,-1,1},{14,3,25,10,6,-1,1},{14,3,9,0,3,-1,1},{14,3,5,0,3,-1,1},{14,3,9,0,5,-1,1},{14,3,9,0,3,-1,1},{14,3,5,0,3,-1,1},{14,3,5,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1}}, + {{8,3,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1}}, + {{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,9,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1}}, + {{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,0,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1}}, + {{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1}}, + {{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,26,0,6,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,11,17,6,-1,1},{8,3,11,17,6,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1}}, + {{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1}}, + {{8,3,9,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1}}, + {{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,4,-1,1},{8,3,5,0,4,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,4,-1,1},{8,3,5,0,4,-1,1},{61,0,2,0,9,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1}}, + {{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{3,3,9,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{3,3,6,0,1,-1,1},{3,3,21,0,6,-1,1},{3,3,21,0,6,-1,1},{3,3,21,0,6,-1,1},{3,3,21,0,6,-1,1},{3,3,21,0,6,-1,1},{3,3,21,0,6,-1,1}}, + {{61,0,2,0,9,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1}}, + {{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,1,-1,1},{3,3,5,0,5,-1,1},{61,0,2,0,9,-1,1},{0,3,21,0,6,-1,1},{3,3,17,10,0,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{3,3,26,10,6,-1,1},{3,3,26,10,6,-1,1},{3,3,23,4,6,-1,1},{61,0,2,1,9,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1}}, + {{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,1,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,17,1,6,-1,1},{19,3,12,17,4,-1,1}}, + {{19,3,21,1,6,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,21,1,6,-1,1},{19,3,12,17,4,-1,1},{19,3,12,17,4,-1,1},{19,3,21,1,6,-1,1},{19,3,12,17,4,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1}}, + {{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,7,1,1,-1,1},{19,3,21,1,0,-1,1},{19,3,21,1,0,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1}}, + {{2,3,1,5,6,-1,1},{2,3,1,5,6,-1,1},{2,3,1,5,6,-1,1},{2,3,1,5,6,-1,1},{2,3,1,5,6,-1,1},{0,3,1,5,6,-1,1},{2,3,25,10,6,-1,1},{2,3,25,10,6,-1,1},{2,3,25,13,6,-1,1},{2,3,21,4,6,-1,1},{2,3,21,4,6,-1,1},{2,3,23,13,6,-1,1},{0,3,21,6,6,-1,1},{2,3,21,13,6,-1,1},{2,3,26,10,6,-1,1},{2,3,26,10,6,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{0,3,21,13,6,-1,1},{0,3,1,13,2,-1,1},{61,0,2,13,9,-1,1},{2,3,21,13,6,-1,1},{0,3,21,13,6,-1,1}}, + {{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1}}, + {{0,3,6,13,3,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{1,3,12,17,1,-1,1},{1,3,12,17,1,-1,1},{1,3,12,17,1,-1,1},{1,3,12,17,1,-1,1},{1,3,12,17,1,-1,1},{1,3,12,17,1,-1,1},{1,3,12,17,1,-1,1},{1,3,12,17,1,-1,1},{1,3,12,17,1,-1,1},{1,3,12,17,1,-1,1},{1,3,12,17,1,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1}}, + {{0,3,13,5,1,0,1},{0,3,13,5,1,1,1},{0,3,13,5,1,2,1},{0,3,13,5,1,3,1},{0,3,13,5,1,4,1},{0,3,13,5,1,5,1},{0,3,13,5,1,6,1},{0,3,13,5,1,7,1},{0,3,13,5,1,8,1},{0,3,13,5,1,9,1},{2,3,21,4,6,-1,1},{2,3,21,5,6,-1,1},{2,3,21,5,6,-1,1},{2,3,21,13,6,-1,1},{2,3,7,13,3,-1,1},{2,3,7,13,3,-1,1},{1,3,12,17,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,7,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1}}, + {{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,3,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1}}, + {{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,21,13,6,-1,1},{2,3,7,13,1,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{0,3,1,5,6,-1,1},{2,3,26,10,6,-1,1},{2,3,12,17,4,-1,1}}, + {{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,6,13,1,-1,1},{2,3,6,13,1,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,26,10,6,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,13,2,1,0,1},{2,3,13,2,1,1,1},{2,3,13,2,1,2,1},{2,3,13,2,1,3,1},{2,3,13,2,1,4,1},{2,3,13,2,1,5,1},{2,3,13,2,1,6,1},{2,3,13,2,1,7,1},{2,3,13,2,1,8,1},{2,3,13,2,1,9,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,26,13,0,-1,1},{2,3,26,13,0,-1,1},{2,3,7,13,1,-1,1}}, + {{34,3,21,13,6,-1,1},{34,3,21,13,6,-1,1},{34,3,21,13,6,-1,1},{34,3,21,13,6,-1,1},{34,3,21,13,6,-1,1},{34,3,21,13,6,-1,1},{34,3,21,13,6,-1,1},{34,3,21,13,6,-1,1},{34,3,21,13,6,-1,1},{34,3,21,13,6,-1,1},{34,3,21,13,6,-1,1},{34,3,21,13,6,-1,1},{34,3,21,13,6,-1,1},{34,3,21,13,6,-1,1},{61,0,2,13,9,-1,1},{34,3,1,13,6,-1,1},{34,3,7,13,4,-1,1},{34,3,12,17,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1}}, + {{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1}}, + {{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{34,3,12,17,4,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{34,3,7,13,4,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1}}, + {{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1}}, + {{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,7,13,1,-1,1},{37,3,12,17,1,-1,1},{37,3,12,17,1,-1,1},{37,3,12,17,1,-1,1},{37,3,12,17,1,-1,1},{37,3,12,17,1,-1,1},{37,3,12,17,1,-1,1},{37,3,12,17,1,-1,1},{37,3,12,17,1,-1,1},{37,3,12,17,1,-1,1},{37,3,12,17,1,-1,1},{37,3,12,17,1,-1,1},{37,3,7,13,1,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1}}, + {{66,3,13,1,4,0,1},{66,3,13,1,4,1,1},{66,3,13,1,4,2,1},{66,3,13,1,4,3,1},{66,3,13,1,4,4,1},{66,3,13,1,4,5,1},{66,3,13,1,4,6,1},{66,3,13,1,4,7,1},{66,3,13,1,4,8,1},{66,3,13,1,4,9,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1}}, + {{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,7,1,4,-1,1},{66,3,12,17,4,-1,1},{66,3,12,17,4,-1,1},{66,3,12,17,4,-1,1},{66,3,12,17,4,-1,1},{66,3,12,17,4,-1,1},{66,3,12,17,4,-1,1},{66,3,12,17,4,-1,1},{66,3,12,17,4,-1,1},{66,3,12,17,4,-1,1},{66,3,6,1,4,-1,1},{66,3,6,1,4,-1,1},{66,3,26,10,6,-1,1},{66,3,21,10,6,-1,1},{66,3,21,10,6,-1,1},{66,3,21,10,6,-1,1},{66,3,6,1,4,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1}}, + {{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,7,1,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,6,1,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1}}, + {{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,6,1,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,6,1,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{90,3,12,17,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{90,3,21,1,6,-1,1},{61,0,2,1,9,-1,1}}, + {{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,7,1,4,-1,1},{95,3,12,17,4,-1,1},{95,3,12,17,4,-1,1},{95,3,12,17,4,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{95,3,21,1,6,-1,1},{61,0,2,1,9,-1,1}}, + {{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1}}, + {{2,3,7,13,1,-1,1},{2,3,7,13,4,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,1,-1,1},{2,3,7,13,3,-1,1},{2,3,7,13,3,-1,1},{2,3,7,13,3,-1,1},{2,3,7,13,3,-1,1},{2,3,7,13,3,-1,1},{2,3,7,13,4,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1}}, + {{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1}}, + {{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1},{2,3,12,17,4,-1,1}}, + {{10,3,12,17,4,-1,1},{10,3,12,17,1,-1,1},{10,3,12,17,1,-1,1},{10,3,10,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1}}, + {{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,12,17,1,-1,1},{10,3,10,0,1,-1,1},{10,3,12,17,1,-1,1},{10,3,7,0,1,-1,1},{10,3,10,0,1,-1,1},{10,3,10,0,1,-1,1}}, + {{10,3,10,0,1,-1,1},{10,3,12,17,1,-1,1},{10,3,12,17,1,-1,1},{10,3,12,17,1,-1,1},{10,3,12,17,1,-1,1},{10,3,12,17,1,-1,1},{10,3,12,17,1,-1,1},{10,3,12,17,1,-1,1},{10,3,12,17,1,-1,1},{10,3,10,0,1,-1,1},{10,3,10,0,1,-1,1},{10,3,10,0,1,-1,1},{10,3,10,0,1,-1,1},{10,3,12,17,1,-1,1},{10,3,10,0,3,-1,1},{10,3,10,0,1,-1,1},{10,3,7,0,1,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{10,3,12,17,8,-1,1},{10,3,12,17,8,-1,1},{10,3,12,17,4,-1,1},{10,3,12,17,1,-1,1},{10,3,12,17,1,-1,1},{10,3,7,0,5,-1,1},{10,3,7,0,5,-1,1},{10,3,7,0,5,-1,1},{10,3,7,0,5,-1,1},{10,3,7,0,5,-1,1},{10,3,7,0,5,-1,1},{10,3,7,0,5,-1,1},{10,3,7,0,5,-1,1}}, + {{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,12,17,1,-1,1},{10,3,12,17,1,-1,1},{0,3,21,0,6,-1,1},{0,3,21,0,6,-1,1},{10,3,13,0,1,0,1},{10,3,13,0,1,1,1},{10,3,13,0,1,2,1},{10,3,13,0,1,3,1},{10,3,13,0,1,4,1},{10,3,13,0,1,5,1},{10,3,13,0,1,6,1},{10,3,13,0,1,7,1},{10,3,13,0,1,8,1},{10,3,13,0,1,9,1},{10,3,21,0,6,-1,1},{10,3,6,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,3,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1},{10,3,7,0,1,-1,1}}, + {{4,3,7,0,3,-1,1},{4,3,12,17,1,-1,1},{4,3,10,0,1,-1,1},{4,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1}}, + {{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{4,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{4,3,12,17,1,-1,1},{4,3,7,0,1,-1,1},{4,3,10,0,1,-1,1},{4,3,10,0,1,-1,1}}, + {{4,3,10,0,1,-1,1},{4,3,12,17,1,-1,1},{4,3,12,17,1,-1,1},{4,3,12,17,1,-1,1},{4,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{4,3,10,0,1,-1,1},{4,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{4,3,10,0,1,-1,1},{4,3,10,0,1,-1,1},{4,3,12,17,1,-1,1},{4,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{4,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{4,3,7,0,5,-1,1},{4,3,7,0,5,-1,1},{61,0,2,0,9,-1,1},{4,3,7,0,5,-1,1}}, + {{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,12,17,1,-1,1},{4,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{4,3,13,0,1,0,1},{4,3,13,0,1,1,1},{4,3,13,0,1,2,1},{4,3,13,0,1,3,1},{4,3,13,0,1,4,1},{4,3,13,0,1,5,1},{4,3,13,0,1,6,1},{4,3,13,0,1,7,1},{4,3,13,0,1,8,1},{4,3,13,0,1,9,1},{4,3,7,0,1,-1,1},{4,3,7,0,1,-1,1},{4,3,23,4,6,-1,1},{4,3,23,4,6,-1,1},{4,3,15,0,6,-1,1},{4,3,15,0,6,-1,1},{4,3,15,0,6,-1,1},{4,3,15,0,6,-1,1},{4,3,15,0,6,-1,1},{4,3,15,0,6,-1,1},{4,3,26,0,6,-1,1},{4,3,23,4,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{16,3,12,17,1,-1,1},{16,3,12,17,1,-1,1},{16,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1}}, + {{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,5,-1,1},{61,0,2,0,9,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,5,-1,1},{61,0,2,0,9,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{16,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{16,3,10,0,1,-1,1},{16,3,10,0,1,-1,1}}, + {{16,3,10,0,1,-1,1},{16,3,12,17,1,-1,1},{16,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{16,3,12,17,1,-1,1},{16,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{16,3,12,17,1,-1,1},{16,3,12,17,1,-1,1},{16,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{16,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{16,3,7,0,5,-1,1},{16,3,7,0,5,-1,1},{16,3,7,0,5,-1,1},{16,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{16,3,7,0,5,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{16,3,13,0,1,0,1},{16,3,13,0,1,1,1},{16,3,13,0,1,2,1},{16,3,13,0,1,3,1},{16,3,13,0,1,4,1},{16,3,13,0,1,5,1},{16,3,13,0,1,6,1},{16,3,13,0,1,7,1},{16,3,13,0,1,8,1},{16,3,13,0,1,9,1},{16,3,12,17,1,-1,1},{16,3,12,17,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,7,0,1,-1,1},{16,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{15,3,12,17,1,-1,1},{15,3,12,17,1,-1,1},{15,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1}}, + {{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{15,3,12,17,1,-1,1},{15,3,7,0,1,-1,1},{15,3,10,0,1,-1,1},{15,3,10,0,1,-1,1}}, + {{15,3,10,0,1,-1,1},{15,3,12,17,1,-1,1},{15,3,12,17,1,-1,1},{15,3,12,17,1,-1,1},{15,3,12,17,1,-1,1},{15,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{15,3,12,17,1,-1,1},{15,3,12,17,1,-1,1},{15,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{15,3,10,0,1,-1,1},{15,3,10,0,1,-1,1},{15,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{15,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{15,3,7,0,1,-1,1},{15,3,7,0,1,-1,1},{15,3,12,17,1,-1,1},{15,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{15,3,13,0,1,0,1},{15,3,13,0,1,1,1},{15,3,13,0,1,2,1},{15,3,13,0,1,3,1},{15,3,13,0,1,4,1},{15,3,13,0,1,5,1},{15,3,13,0,1,6,1},{15,3,13,0,1,7,1},{15,3,13,0,1,8,1},{15,3,13,0,1,9,1},{15,3,21,0,6,-1,1},{15,3,23,4,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{31,3,12,17,1,-1,1},{31,3,10,0,1,-1,1},{31,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1}}, + {{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{31,3,12,17,1,-1,1},{31,3,7,0,1,-1,1},{31,3,10,0,1,-1,1},{31,3,12,17,1,-1,1}}, + {{31,3,10,0,1,-1,1},{31,3,12,17,1,-1,1},{31,3,12,17,1,-1,1},{31,3,12,17,1,-1,1},{31,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{31,3,10,0,1,-1,1},{31,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{31,3,10,0,1,-1,1},{31,3,10,0,1,-1,1},{31,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{31,3,12,17,1,-1,1},{31,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{31,3,7,0,5,-1,1},{31,3,7,0,5,-1,1},{61,0,2,0,9,-1,1},{31,3,7,0,1,-1,1}}, + {{31,3,7,0,1,-1,1},{31,3,7,0,1,-1,1},{31,3,12,17,4,-1,1},{31,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{31,3,13,0,1,0,1},{31,3,13,0,1,1,1},{31,3,13,0,1,2,1},{31,3,13,0,1,3,1},{31,3,13,0,1,4,1},{31,3,13,0,1,5,1},{31,3,13,0,1,6,1},{31,3,13,0,1,7,1},{31,3,13,0,1,8,1},{31,3,13,0,1,9,1},{31,3,26,0,6,-1,1},{31,3,7,0,1,-1,1},{31,3,15,0,6,-1,1},{31,3,15,0,6,-1,1},{31,3,15,0,6,-1,1},{31,3,15,0,6,-1,1},{31,3,15,0,6,-1,1},{31,3,15,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{35,3,12,17,1,-1,1},{35,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{35,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{35,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{35,3,10,0,1,-1,1},{35,3,10,0,1,-1,1}}, + {{35,3,12,17,1,-1,1},{35,3,10,0,1,-1,1},{35,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{35,3,10,0,1,-1,1},{35,3,10,0,1,-1,1},{35,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{35,3,10,0,1,-1,1},{35,3,10,0,1,-1,1},{35,3,10,0,1,-1,1},{35,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{35,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{35,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{35,3,13,0,1,0,1},{35,3,13,0,1,1,1},{35,3,13,0,1,2,1},{35,3,13,0,1,3,1},{35,3,13,0,1,4,1},{35,3,13,0,1,5,1},{35,3,13,0,1,6,1},{35,3,13,0,1,7,1},{35,3,13,0,1,8,1},{35,3,13,0,1,9,1},{35,3,15,0,6,-1,1},{35,3,15,0,6,-1,1},{35,3,15,0,6,-1,1},{35,3,26,10,6,-1,1},{35,3,26,10,6,-1,1},{35,3,26,10,6,-1,1},{35,3,26,10,6,-1,1},{35,3,26,10,6,-1,1},{35,3,26,10,6,-1,1},{35,3,23,4,6,-1,1},{35,3,26,10,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{36,3,12,17,3,-1,1},{36,3,10,0,1,-1,1},{36,3,10,0,1,-1,1},{36,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1}}, + {{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,3,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{36,3,7,0,1,-1,1},{36,3,12,17,1,-1,1},{36,3,12,17,1,-1,1}}, + {{36,3,12,17,1,-1,1},{36,3,10,0,1,-1,1},{36,3,10,0,1,-1,1},{36,3,10,0,1,-1,1},{36,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{36,3,12,17,1,-1,1},{36,3,12,17,1,-1,1},{36,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{36,3,12,17,1,-1,1},{36,3,12,17,1,-1,1},{36,3,12,17,1,-1,1},{36,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{36,3,12,17,1,-1,1},{36,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{36,3,7,0,3,-1,1},{36,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{36,3,7,0,1,-1,1},{36,3,7,0,1,-1,1},{36,3,12,17,4,-1,1},{36,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{36,3,13,0,1,0,1},{36,3,13,0,1,1,1},{36,3,13,0,1,2,1},{36,3,13,0,1,3,1},{36,3,13,0,1,4,1},{36,3,13,0,1,5,1},{36,3,13,0,1,6,1},{36,3,13,0,1,7,1},{36,3,13,0,1,8,1},{36,3,13,0,1,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{36,3,15,10,6,-1,1},{36,3,15,10,6,-1,1},{36,3,15,10,6,-1,1},{36,3,15,10,6,-1,1},{36,3,15,10,6,-1,1},{36,3,15,10,6,-1,1},{36,3,15,10,6,-1,1},{36,3,26,0,6,-1,1}}, + {{61,0,2,0,9,-1,1},{21,3,12,17,3,-1,1},{21,3,10,0,1,-1,1},{21,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1}}, + {{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{21,3,12,17,1,-1,1},{21,3,7,0,1,-1,1},{21,3,10,0,1,-1,1},{21,3,12,0,1,-1,1}}, + {{21,3,10,0,1,-1,1},{21,3,10,0,1,-1,1},{21,3,10,0,1,-1,1},{21,3,10,0,1,-1,1},{21,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{21,3,12,0,1,-1,1},{21,3,10,0,1,-1,1},{21,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{21,3,10,0,1,-1,1},{21,3,10,0,1,-1,1},{21,3,12,17,1,-1,1},{21,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{21,3,10,0,1,-1,1},{21,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{21,3,7,0,3,-1,1},{61,0,2,0,9,-1,1}}, + {{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{21,3,12,17,1,-1,1},{21,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{21,3,13,0,1,0,1},{21,3,13,0,1,1,1},{21,3,13,0,1,2,1},{21,3,13,0,1,3,1},{21,3,13,0,1,4,1},{21,3,13,0,1,5,1},{21,3,13,0,1,6,1},{21,3,13,0,1,7,1},{21,3,13,0,1,8,1},{21,3,13,0,1,9,1},{61,0,2,0,9,-1,1},{21,3,7,0,1,-1,1},{21,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{26,3,12,17,3,-1,1},{26,3,10,0,1,-1,1},{26,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1}}, + {{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{26,3,7,0,1,-1,1},{26,3,10,0,1,-1,1},{26,3,10,0,1,-1,1}}, + {{26,3,10,0,1,-1,1},{26,3,12,17,1,-1,1},{26,3,12,17,1,-1,1},{26,3,12,17,1,-1,1},{26,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{26,3,10,0,1,-1,1},{26,3,10,0,1,-1,1},{26,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{26,3,10,0,1,-1,1},{26,3,10,0,1,-1,1},{26,3,10,0,1,-1,1},{26,3,12,17,1,-1,1},{26,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{26,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,12,17,4,-1,1},{26,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{26,3,13,0,1,0,1},{26,3,13,0,1,1,1},{26,3,13,0,1,2,1},{26,3,13,0,1,3,1},{26,3,13,0,1,4,1},{26,3,13,0,1,5,1},{26,3,13,0,1,6,1},{26,3,13,0,1,7,1},{26,3,13,0,1,8,1},{26,3,13,0,1,9,1},{26,3,15,0,6,-1,1},{26,3,15,0,6,-1,1},{26,3,15,0,6,-1,1},{26,3,15,0,6,-1,1},{26,3,15,0,6,-1,1},{26,3,15,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{26,3,26,0,6,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1},{26,3,7,0,1,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{33,3,10,0,1,-1,1},{33,3,10,0,1,-1,1},{61,0,2,0,9,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,4,-1,1},{33,3,7,0,4,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1}}, + {{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,4,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{33,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{33,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{33,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{33,3,10,0,1,-1,1},{33,3,10,0,1,-1,1},{33,3,10,0,1,-1,1},{33,3,12,17,1,-1,1},{33,3,12,17,1,-1,1},{33,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{33,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{33,3,10,0,1,-1,1},{33,3,10,0,1,-1,1},{33,3,10,0,1,-1,1},{33,3,10,0,1,-1,1},{33,3,10,0,1,-1,1},{33,3,10,0,1,-1,1},{33,3,10,0,1,-1,1},{33,3,10,0,4,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{33,3,13,0,3,0,1},{33,3,13,0,3,1,1},{33,3,13,0,3,2,1},{33,3,13,0,3,3,1},{33,3,13,0,3,4,1},{33,3,13,0,3,5,1},{33,3,13,0,3,6,1},{33,3,13,0,3,7,1},{33,3,13,0,3,8,1},{33,3,13,0,3,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{33,3,10,0,1,-1,1},{33,3,10,0,4,-1,1},{33,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1}}, + {{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,12,17,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,5,-1,1},{38,3,12,17,1,-1,1},{38,3,12,17,1,-1,1},{38,3,12,17,1,-1,1},{38,3,12,17,1,-1,1},{38,3,12,17,1,-1,1},{38,3,12,17,1,-1,1},{38,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{0,3,23,4,6,-1,1}}, + {{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,7,0,1,-1,1},{38,3,6,0,1,-1,1},{38,3,12,17,1,-1,1},{38,3,12,17,1,-1,1},{38,3,12,17,1,-1,1},{38,3,12,17,1,-1,1},{38,3,12,17,1,-1,1},{38,3,12,17,1,-1,1},{38,3,12,17,1,-1,1},{38,3,12,17,1,-1,1},{38,3,21,0,6,-1,1},{38,3,13,0,1,0,1},{38,3,13,0,1,1,1},{38,3,13,0,1,2,1},{38,3,13,0,1,3,1},{38,3,13,0,1,4,1},{38,3,13,0,1,5,1},{38,3,13,0,1,6,1},{38,3,13,0,1,7,1},{38,3,13,0,1,8,1},{38,3,13,0,1,9,1},{38,3,21,0,6,-1,1},{38,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{24,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{24,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{24,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1}}, + {{61,0,2,0,9,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{24,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{24,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,12,17,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,5,-1,1},{24,3,12,17,1,-1,1},{24,3,12,17,1,-1,1},{24,3,12,17,1,-1,1},{24,3,12,17,1,-1,1},{24,3,12,17,1,-1,1},{24,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{24,3,12,17,1,-1,1},{24,3,12,17,1,-1,1},{24,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{24,3,6,0,1,-1,1},{61,0,2,0,9,-1,1},{24,3,12,17,1,-1,1},{24,3,12,17,1,-1,1},{24,3,12,17,1,-1,1},{24,3,12,17,1,-1,1},{24,3,12,17,1,-1,1},{24,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{24,3,13,0,1,0,1},{24,3,13,0,1,1,1},{24,3,13,0,1,2,1},{24,3,13,0,1,3,1},{24,3,13,0,1,4,1},{24,3,13,0,1,5,1},{24,3,13,0,1,6,1},{24,3,13,0,1,7,1},{24,3,13,0,1,8,1},{24,3,13,0,1,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{24,3,7,0,5,-1,1},{24,3,7,0,5,-1,1},{24,3,7,0,1,-1,1},{24,3,7,0,1,-1,1}}, + {{39,3,7,0,1,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,0,-1,1},{39,3,21,0,5,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,12,17,8,-1,1},{39,3,12,17,8,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1}}, + {{39,3,13,0,1,0,1},{39,3,13,0,1,1,1},{39,3,13,0,1,2,1},{39,3,13,0,1,3,1},{39,3,13,0,1,4,1},{39,3,13,0,1,5,1},{39,3,13,0,1,6,1},{39,3,13,0,1,7,1},{39,3,13,0,1,8,1},{39,3,13,0,1,9,1},{39,3,15,0,6,-1,1},{39,3,15,0,6,-1,1},{39,3,15,0,6,-1,1},{39,3,15,0,6,-1,1},{39,3,15,0,6,-1,1},{39,3,15,0,6,-1,1},{39,3,15,0,6,-1,1},{39,3,15,0,6,-1,1},{39,3,15,0,6,-1,1},{39,3,15,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,12,17,1,-1,1},{39,3,26,0,6,-1,1},{39,3,12,17,1,-1,1},{39,3,26,0,6,-1,1},{39,3,12,17,4,-1,1},{39,3,22,10,6,-1,1},{39,3,18,10,6,-1,1},{39,3,22,10,6,-1,1},{39,3,18,10,6,-1,1},{39,3,10,0,1,-1,1},{39,3,10,0,1,-1,1}}, + {{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,5,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,5,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,5,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,5,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,5,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1}}, + {{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,5,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,5,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,5,-1,1},{39,3,12,17,5,-1,1},{39,3,12,17,5,-1,1},{39,3,12,17,5,-1,1},{39,3,12,17,5,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,10,0,1,-1,1}}, + {{39,3,12,17,1,-1,1},{39,3,12,17,5,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,21,0,6,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,7,0,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,5,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,5,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1}}, + {{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,5,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,5,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,5,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,5,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{39,3,12,17,1,-1,1},{61,0,2,0,9,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1}}, + {{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,12,17,1,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{61,0,2,0,9,-1,1},{39,3,26,0,6,-1,1},{39,3,26,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{39,3,21,0,6,-1,1},{39,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1}}, + {{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,10,0,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,10,0,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,7,0,1,-1,1}}, + {{28,3,13,0,1,0,1},{28,3,13,0,1,1,1},{28,3,13,0,1,2,1},{28,3,13,0,1,3,1},{28,3,13,0,1,4,1},{28,3,13,0,1,5,1},{28,3,13,0,1,6,1},{28,3,13,0,1,7,1},{28,3,13,0,1,8,1},{28,3,13,0,1,9,1},{28,3,21,0,6,-1,1},{28,3,21,0,6,-1,1},{28,3,21,0,6,-1,1},{28,3,21,0,6,-1,1},{28,3,21,0,6,-1,1},{28,3,21,0,6,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1}}, + {{28,3,12,17,1,-1,1},{28,3,7,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1}}, + {{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,12,17,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,12,17,1,-1,1},{28,3,12,17,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,12,17,1,-1,1},{28,3,7,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,13,0,1,0,1},{28,3,13,0,1,1,1},{28,3,13,0,1,2,1},{28,3,13,0,1,3,1},{28,3,13,0,1,4,1},{28,3,13,0,1,5,1},{28,3,13,0,1,6,1},{28,3,13,0,1,7,1},{28,3,13,0,1,8,1},{28,3,13,0,1,9,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,12,17,1,-1,1},{28,3,26,0,6,-1,1},{28,3,26,0,6,-1,1}}, + {{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1}}, + {{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{12,3,9,0,3,-1,1},{61,0,2,0,9,-1,1},{12,3,9,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{12,3,9,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1}}, + {{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,3,-1,1},{12,3,7,0,3,-1,1},{12,3,7,0,3,-1,1},{12,3,7,0,3,-1,1},{12,3,7,0,3,-1,1},{12,3,7,0,3,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{0,3,21,0,6,-1,1},{12,3,6,0,5,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1},{12,3,7,0,1,-1,1}}, + {{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0}}, + {{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,2,-1,0}}, + {{18,3,7,0,2,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0}}, + {{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0}}, + {{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1}}, + {{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1}}, + {{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1}}, + {{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1}}, + {{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1}}, + {{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{11,3,12,17,1,-1,1},{11,3,12,17,1,-1,1},{11,3,12,17,1,-1,1}}, + {{11,3,21,0,6,-1,1},{11,3,21,0,6,-1,1},{11,3,21,0,6,-1,1},{11,3,21,0,6,-1,1},{11,3,21,0,6,-1,1},{11,3,21,0,6,-1,1},{11,3,21,0,6,-1,1},{11,3,21,0,6,-1,1},{11,3,21,0,6,-1,1},{11,3,15,0,7,1,1},{11,3,15,0,7,2,1},{11,3,15,0,7,3,1},{11,3,15,0,7,4,1},{11,3,15,0,7,5,1},{11,3,15,0,7,6,1},{11,3,15,0,7,7,1},{11,3,15,0,7,8,1},{11,3,15,0,7,9,1},{11,3,15,0,6,-1,1},{11,3,15,0,6,-1,1},{11,3,15,0,6,-1,1},{11,3,15,0,6,-1,1},{11,3,15,0,6,-1,1},{11,3,15,0,6,-1,1},{11,3,15,0,6,-1,1},{11,3,15,0,6,-1,1},{11,3,15,0,6,-1,1},{11,3,15,0,6,-1,1},{11,3,15,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,26,10,6,-1,1},{11,3,26,10,6,-1,1},{11,3,26,10,6,-1,1},{11,3,26,10,6,-1,1},{11,3,26,10,6,-1,1},{11,3,26,10,6,-1,1},{11,3,26,10,6,-1,1},{11,3,26,10,6,-1,1},{11,3,26,10,6,-1,1},{11,3,26,10,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1}}, + {{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{6,3,7,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{40,3,17,10,6,-1,1},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0}}, + {{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0}}, + {{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,21,0,6,-1,0},{40,3,21,0,6,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0}}, + {{29,3,29,9,6,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,7,0,3,-1,1},{29,3,22,10,6,-1,1},{29,3,18,10,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1}}, + {{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{0,3,21,0,6,-1,1},{0,3,21,0,6,-1,1},{0,3,21,0,6,-1,1},{32,3,14,0,3,-1,1},{32,3,14,0,3,-1,1},{32,3,14,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{32,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,7,0,3,-1,1},{42,3,12,17,3,-1,1},{42,3,12,17,3,-1,1},{42,3,12,17,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,7,0,3,-1,1},{43,3,12,17,3,-1,1},{43,3,12,17,3,-1,1},{43,3,12,17,3,-1,1},{0,3,21,0,6,-1,1},{0,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,7,0,3,-1,1},{44,3,12,17,3,-1,1},{44,3,12,17,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{45,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{45,3,12,17,3,-1,1},{45,3,12,17,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1}}, + {{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,7,-1,1},{23,3,7,0,7,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,3,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,7,0,1,-1,1},{23,3,12,17,2,-1,1},{23,3,12,17,2,-1,1},{23,3,10,0,1,-1,1},{23,3,12,17,1,-1,1},{23,3,12,17,1,-1,1},{23,3,12,17,1,-1,1},{23,3,12,17,1,-1,1},{23,3,12,17,1,-1,1},{23,3,12,17,1,-1,1},{23,3,12,17,1,-1,1},{23,3,10,0,1,-1,1},{23,3,10,0,1,-1,1}}, + {{23,3,10,0,1,-1,1},{23,3,10,0,1,-1,1},{23,3,10,0,1,-1,1},{23,3,10,0,1,-1,1},{23,3,10,0,1,-1,1},{23,3,10,0,1,-1,1},{23,3,12,17,1,-1,1},{23,3,10,0,1,-1,1},{23,3,10,0,1,-1,1},{23,3,12,17,1,-1,1},{23,3,12,17,1,-1,1},{23,3,12,17,8,-1,1},{23,3,12,17,8,-1,1},{23,3,12,17,8,-1,1},{23,3,12,17,8,-1,1},{23,3,12,17,8,-1,1},{23,3,12,17,8,-1,1},{23,3,12,17,7,-1,1},{23,3,12,17,1,-1,1},{23,3,12,17,7,-1,1},{23,3,21,0,6,-1,1},{23,3,21,0,6,-1,1},{23,3,21,0,6,-1,1},{23,3,6,0,1,-1,1},{23,3,21,0,6,-1,1},{23,3,21,0,6,-1,1},{23,3,21,0,6,-1,1},{23,3,23,4,6,-1,1},{23,3,7,0,1,-1,1},{23,3,12,17,7,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{23,3,13,0,1,0,1},{23,3,13,0,1,1,1},{23,3,13,0,1,2,1},{23,3,13,0,1,3,1},{23,3,13,0,1,4,1},{23,3,13,0,1,5,1},{23,3,13,0,1,6,1},{23,3,13,0,1,7,1},{23,3,13,0,1,8,1},{23,3,13,0,1,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{23,3,15,10,6,-1,1},{23,3,15,10,6,-1,1},{23,3,15,10,6,-1,1},{23,3,15,10,6,-1,1},{23,3,15,10,6,-1,1},{23,3,15,10,6,-1,1},{23,3,15,10,6,-1,1},{23,3,15,10,6,-1,1},{23,3,15,10,6,-1,1},{23,3,15,10,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{27,3,21,10,6,-1,1},{27,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{27,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{27,3,17,10,6,-1,1},{27,3,21,10,6,-1,1},{27,3,21,10,6,-1,1},{27,3,21,10,6,-1,1},{27,3,21,10,6,-1,1},{27,3,12,17,2,-1,1},{27,3,12,17,2,-1,1},{27,3,12,17,2,-1,1},{27,3,1,18,2,-1,1},{61,0,2,0,9,-1,1},{27,3,13,0,4,0,1},{27,3,13,0,4,1,1},{27,3,13,0,4,2,1},{27,3,13,0,4,3,1},{27,3,13,0,4,4,1},{27,3,13,0,4,5,1},{27,3,13,0,4,6,1},{27,3,13,0,4,7,1},{27,3,13,0,4,8,1},{27,3,13,0,4,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1}}, + {{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,6,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1}}, + {{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,7,0,4,-1,1},{27,3,12,17,4,-1,1},{27,3,7,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0}}, + {{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{40,3,7,0,4,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{48,3,7,0,4,-1,1},{61,0,2,0,9,-1,1}}, + {{48,3,12,17,4,-1,1},{48,3,12,17,4,-1,1},{48,3,12,17,4,-1,1},{48,3,10,0,4,-1,1},{48,3,10,0,4,-1,1},{48,3,10,0,4,-1,1},{48,3,10,0,4,-1,1},{48,3,12,17,4,-1,1},{48,3,12,17,4,-1,1},{48,3,10,0,4,-1,1},{48,3,10,0,4,-1,1},{48,3,10,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{48,3,10,0,4,-1,1},{48,3,10,0,4,-1,1},{48,3,12,17,4,-1,1},{48,3,10,0,4,-1,1},{48,3,10,0,4,-1,1},{48,3,10,0,4,-1,1},{48,3,10,0,4,-1,1},{48,3,10,0,4,-1,1},{48,3,10,0,4,-1,1},{48,3,12,17,4,-1,1},{48,3,12,17,4,-1,1},{48,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{48,3,26,10,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{48,3,21,10,6,-1,1},{48,3,21,10,6,-1,1},{48,3,13,0,4,0,1},{48,3,13,0,4,1,1},{48,3,13,0,4,2,1},{48,3,13,0,4,3,1},{48,3,13,0,4,4,1},{48,3,13,0,4,5,1},{48,3,13,0,4,6,1},{48,3,13,0,4,7,1},{48,3,13,0,4,8,1},{48,3,13,0,4,9,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1}}, + {{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{52,3,7,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1}}, + {{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1}}, + {{54,3,10,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,7,0,4,-1,1},{54,3,10,0,4,-1,1},{54,3,10,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{54,3,13,0,4,0,1},{54,3,13,0,4,1,1},{54,3,13,0,4,2,1},{54,3,13,0,4,3,1},{54,3,13,0,4,4,1},{54,3,13,0,4,5,1},{54,3,13,0,4,6,1},{54,3,13,0,4,7,1},{54,3,13,0,4,8,1},{54,3,13,0,4,9,1},{54,3,15,0,4,1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{54,3,26,10,6,-1,1},{54,3,26,10,6,-1,1}}, + {{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1},{23,3,26,10,6,-1,1}}, + {{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,7,0,3,-1,1},{55,3,12,17,3,-1,1},{55,3,12,17,3,-1,1},{55,3,10,0,3,-1,1},{55,3,10,0,3,-1,1},{55,3,12,17,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{55,3,21,0,6,-1,1},{55,3,21,0,6,-1,1}}, + {{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1}}, + {{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,7,0,4,-1,1},{91,3,10,0,4,-1,1},{91,3,12,17,4,-1,1},{91,3,10,0,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{61,0,2,0,9,-1,1}}, + {{91,3,12,17,4,-1,1},{91,3,10,0,4,-1,1},{91,3,12,17,4,-1,1},{91,3,10,0,4,-1,1},{91,3,10,0,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,10,0,4,-1,1},{91,3,10,0,4,-1,1},{91,3,10,0,4,-1,1},{91,3,10,0,4,-1,1},{91,3,10,0,4,-1,1},{91,3,10,0,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{91,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{91,3,12,17,4,-1,1}}, + {{91,3,13,0,4,0,1},{91,3,13,0,4,1,1},{91,3,13,0,4,2,1},{91,3,13,0,4,3,1},{91,3,13,0,4,4,1},{91,3,13,0,4,5,1},{91,3,13,0,4,6,1},{91,3,13,0,4,7,1},{91,3,13,0,4,8,1},{91,3,13,0,4,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{91,3,13,0,4,0,1},{91,3,13,0,4,1,1},{91,3,13,0,4,2,1},{91,3,13,0,4,3,1},{91,3,13,0,4,4,1},{91,3,13,0,4,5,1},{91,3,13,0,4,6,1},{91,3,13,0,4,7,1},{91,3,13,0,4,8,1},{91,3,13,0,4,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{91,3,21,0,6,-1,1},{91,3,21,0,6,-1,1},{91,3,21,0,6,-1,1},{91,3,21,0,6,-1,1},{91,3,21,0,6,-1,1},{91,3,21,0,6,-1,1},{91,3,21,0,6,-1,1},{91,3,6,0,4,-1,1},{91,3,21,0,6,-1,1},{91,3,21,0,6,-1,1},{91,3,21,0,6,-1,1},{91,3,21,0,6,-1,1},{91,3,21,0,6,-1,1},{91,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,11,17,6,-1,1},{61,0,2,0,9,-1,1}}, + {{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,10,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1}}, + {{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,12,17,4,-1,1},{62,3,10,0,4,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,10,0,4,-1,1},{62,3,12,17,4,-1,1},{62,3,10,0,4,-1,1},{62,3,10,0,4,-1,1},{62,3,10,0,4,-1,1}}, + {{62,3,10,0,4,-1,1},{62,3,10,0,4,-1,1},{62,3,12,17,4,-1,1},{62,3,10,0,4,-1,1},{62,3,10,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{62,3,7,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{62,3,13,0,4,0,1},{62,3,13,0,4,1,1},{62,3,13,0,4,2,1},{62,3,13,0,4,3,1},{62,3,13,0,4,4,1},{62,3,13,0,4,5,1},{62,3,13,0,4,6,1},{62,3,13,0,4,7,1},{62,3,13,0,4,8,1},{62,3,13,0,4,9,1},{62,3,21,0,6,-1,1},{62,3,21,0,6,-1,1},{62,3,21,0,6,-1,1},{62,3,21,0,6,-1,1},{62,3,21,0,6,-1,1},{62,3,21,0,6,-1,1}}, + {{62,3,21,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,12,17,4,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{62,3,26,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{70,3,12,17,4,-1,1},{70,3,12,17,4,-1,1},{70,3,10,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1}}, + {{70,3,7,0,4,-1,1},{70,3,10,0,4,-1,1},{70,3,12,17,4,-1,1},{70,3,12,17,4,-1,1},{70,3,12,17,4,-1,1},{70,3,12,17,4,-1,1},{70,3,10,0,4,-1,1},{70,3,10,0,4,-1,1},{70,3,12,17,4,-1,1},{70,3,12,17,4,-1,1},{70,3,10,0,4,-1,1},{70,3,12,17,4,-1,1},{70,3,12,17,4,-1,1},{70,3,12,17,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,13,0,4,0,1},{70,3,13,0,4,1,1},{70,3,13,0,4,2,1},{70,3,13,0,4,3,1},{70,3,13,0,4,4,1},{70,3,13,0,4,5,1},{70,3,13,0,4,6,1},{70,3,13,0,4,7,1},{70,3,13,0,4,8,1},{70,3,13,0,4,9,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1},{70,3,7,0,4,-1,1}}, + {{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1}}, + {{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,7,0,4,-1,1},{93,3,12,17,4,-1,1},{93,3,10,0,4,-1,1},{93,3,12,17,4,-1,1},{93,3,12,17,4,-1,1},{93,3,10,0,4,-1,1},{93,3,10,0,4,-1,1},{93,3,10,0,4,-1,1},{93,3,12,17,4,-1,1},{93,3,10,0,4,-1,1},{93,3,12,17,4,-1,1},{93,3,12,17,4,-1,1},{93,3,12,17,4,-1,1},{93,3,10,0,4,-1,1},{93,3,10,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{93,3,21,0,6,-1,1},{93,3,21,0,6,-1,1},{93,3,21,0,6,-1,1},{93,3,21,0,6,-1,1}}, + {{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1}}, + {{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,10,0,4,-1,1},{68,3,10,0,4,-1,1},{68,3,10,0,4,-1,1},{68,3,10,0,4,-1,1},{68,3,10,0,4,-1,1},{68,3,10,0,4,-1,1},{68,3,10,0,4,-1,1},{68,3,10,0,4,-1,1},{68,3,12,17,4,-1,1},{68,3,12,17,4,-1,1},{68,3,12,17,4,-1,1},{68,3,12,17,4,-1,1},{68,3,12,17,4,-1,1},{68,3,12,17,4,-1,1},{68,3,12,17,4,-1,1},{68,3,12,17,4,-1,1},{68,3,10,0,4,-1,1},{68,3,10,0,4,-1,1},{68,3,12,17,4,-1,1},{68,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{68,3,21,0,6,-1,1},{68,3,21,0,6,-1,1},{68,3,21,0,6,-1,1},{68,3,21,0,6,-1,1},{68,3,21,0,6,-1,1}}, + {{68,3,13,0,4,0,1},{68,3,13,0,4,1,1},{68,3,13,0,4,2,1},{68,3,13,0,4,3,1},{68,3,13,0,4,4,1},{68,3,13,0,4,5,1},{68,3,13,0,4,6,1},{68,3,13,0,4,7,1},{68,3,13,0,4,8,1},{68,3,13,0,4,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{68,3,7,0,4,-1,1},{73,3,13,0,4,0,1},{73,3,13,0,4,1,1},{73,3,13,0,4,2,1},{73,3,13,0,4,3,1},{73,3,13,0,4,4,1},{73,3,13,0,4,5,1},{73,3,13,0,4,6,1},{73,3,13,0,4,7,1},{73,3,13,0,4,8,1},{73,3,13,0,4,9,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1}}, + {{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,7,0,4,-1,1},{73,3,6,0,4,-1,1},{73,3,6,0,4,-1,1},{73,3,6,0,4,-1,1},{73,3,6,0,4,-1,1},{73,3,6,0,4,-1,1},{73,3,6,0,4,-1,1},{73,3,21,0,6,-1,1},{73,3,21,0,6,-1,1}}, + {{70,3,21,0,6,-1,1},{70,3,21,0,6,-1,1},{70,3,21,0,6,-1,1},{70,3,21,0,6,-1,1},{70,3,21,0,6,-1,1},{70,3,21,0,6,-1,1},{70,3,21,0,6,-1,1},{70,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{0,3,21,0,6,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1}}, + {{1,3,12,17,3,-1,1},{0,3,10,0,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{0,3,7,0,3,-1,1},{0,3,7,0,3,-1,1},{0,3,7,0,3,-1,1},{0,3,7,0,3,-1,1},{1,3,12,17,3,-1,1},{0,3,7,0,3,-1,1},{0,3,7,0,3,-1,1},{0,3,7,0,3,-1,1},{0,3,7,0,3,-1,1},{0,3,10,0,3,-1,1},{0,3,10,0,3,-1,1},{1,3,12,17,3,-1,1},{0,3,7,0,3,-1,1},{0,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1}}, + {{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{14,3,5,0,8,-1,1},{14,3,5,0,8,-1,1},{14,3,5,0,8,-1,1},{14,3,5,0,8,-1,1},{14,3,5,0,8,-1,1},{8,3,5,0,8,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,8,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,8,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1}}, + {{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,8,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{14,3,6,0,5,-1,1},{14,3,6,0,5,-1,1},{14,3,6,0,5,-1,1}}, + {{14,3,6,0,5,-1,1},{14,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{14,3,6,0,5,-1,1},{14,3,6,0,5,-1,1},{14,3,6,0,5,-1,1},{14,3,6,0,5,-1,1},{14,3,6,0,5,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{8,3,6,0,5,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1}}, + {{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1}}, + {{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{14,3,6,0,5,-1,1}}, + {{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1}}, + {{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1}}, + {{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1}}, + {{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,5,-1,1},{25,3,5,0,5,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1}}, + {{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,1,-1,1}}, + {{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1}}, + {{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1}}, + {{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{61,0,2,0,9,-1,1},{14,3,9,0,1,-1,1},{61,0,2,0,9,-1,1},{14,3,9,0,1,-1,1},{61,0,2,0,9,-1,1},{14,3,9,0,1,-1,1},{61,0,2,0,9,-1,1},{14,3,9,0,1,-1,1}}, + {{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,5,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,5,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,5,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,5,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,5,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,5,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,5,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1}}, + {{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,8,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{61,0,2,0,9,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,5,-1,1},{14,3,8,0,1,-1,1},{14,3,24,10,5,-1,1},{14,3,5,0,5,-1,1},{14,3,24,10,5,-1,1}}, + {{14,3,24,10,5,-1,1},{14,3,24,10,5,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{61,0,2,0,9,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,5,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,5,-1,1},{14,3,8,0,1,-1,1},{14,3,24,10,5,-1,1},{14,3,24,10,5,-1,1},{14,3,24,10,5,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,5,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,5,-1,1},{61,0,2,0,9,-1,1},{14,3,24,10,5,-1,1},{14,3,24,10,5,-1,1},{14,3,24,10,5,-1,1}}, + {{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,5,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,5,-1,1},{14,3,9,0,1,-1,1},{14,3,24,10,5,-1,1},{14,3,24,10,5,-1,1},{14,3,24,10,5,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{61,0,2,0,9,-1,1},{14,3,5,0,1,-1,1},{14,3,5,0,1,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,5,-1,1},{14,3,9,0,1,-1,1},{14,3,9,0,5,-1,1},{14,3,8,0,1,-1,1},{14,3,24,10,5,-1,1},{14,3,24,10,5,-1,1},{61,0,2,0,9,-1,1}}, + {{0,3,29,9,5,-1,1},{0,3,29,9,5,-1,1},{0,3,29,9,5,-1,1},{0,3,29,9,5,-1,1},{0,3,29,9,5,-1,1},{0,3,29,9,5,-1,1},{0,3,29,9,5,-1,1},{0,3,29,9,5,-1,1},{0,3,29,9,5,-1,1},{0,3,29,9,5,-1,1},{0,3,29,9,5,-1,1},{0,3,1,18,2,-1,1},{1,3,1,18,0,-1,1},{1,3,1,18,0,-1,1},{0,3,1,0,2,-1,1},{0,3,1,1,2,-1,1},{0,0,17,10,0,-1,1},{0,3,17,10,5,-1,1},{0,3,17,10,6,-1,1},{0,0,17,10,6,-1,1},{0,0,17,10,6,-1,1},{0,0,17,10,6,-1,1},{0,0,21,10,6,-1,0},{0,3,21,10,5,-1,1},{0,0,20,10,6,-1,1},{0,0,19,10,0,-1,1},{0,3,22,10,6,-1,1},{0,3,20,10,6,-1,1},{0,0,20,10,6,-1,1},{0,0,19,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,20,10,6,-1,1}}, + {{0,0,21,10,6,-1,0},{0,0,21,10,6,-1,0},{0,0,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,0,21,10,5,-1,1},{0,0,21,10,5,-1,1},{0,0,21,10,5,-1,1},{0,0,21,10,0,-1,1},{0,3,27,9,6,-1,1},{0,3,28,7,6,-1,1},{0,3,1,11,2,-1,1},{0,3,1,14,2,-1,1},{0,3,1,16,2,-1,1},{0,3,1,12,2,-1,1},{0,3,1,15,2,-1,1},{0,3,29,6,5,-1,1},{0,0,21,4,6,-1,0},{0,3,21,4,6,-1,0},{0,0,21,4,6,-1,1},{0,0,21,4,5,-1,1},{0,3,21,4,5,-1,1},{0,0,21,10,6,-1,1},{0,3,21,10,5,-1,1},{0,3,21,10,5,-1,1},{0,3,21,10,6,-1,1},{0,3,20,10,6,-1,1},{0,3,19,10,6,-1,1},{0,0,21,10,6,-1,0},{0,3,21,10,5,-1,0},{0,3,21,10,6,-1,1},{0,0,21,10,5,-1,1},{0,3,16,10,8,-1,1}}, + {{0,3,16,10,8,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,0},{0,3,21,10,6,-1,1},{0,3,25,6,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,21,10,5,-1,0},{0,3,21,10,5,-1,0},{0,3,21,10,5,-1,0},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,0},{0,3,25,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,16,10,4,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,5,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,29,9,5,-1,1}}, + {{0,3,1,18,2,-1,1},{0,3,1,18,2,-1,1},{0,3,1,18,2,-1,1},{0,3,1,18,2,-1,1},{0,3,1,18,2,-1,1},{61,0,2,0,2,-1,0},{0,3,1,0,2,-1,1},{0,3,1,0,2,-1,1},{0,3,1,0,2,-1,1},{0,3,1,0,2,-1,1},{0,3,1,18,2,-1,1},{0,3,1,18,2,-1,1},{0,3,1,18,2,-1,1},{0,3,1,18,2,-1,1},{0,3,1,18,2,-1,1},{0,3,1,18,2,-1,1},{0,3,15,2,5,0,1},{25,3,6,0,5,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{0,0,15,2,5,4,1},{0,3,15,2,5,5,1},{0,3,15,2,5,6,1},{0,3,15,2,5,7,1},{0,3,15,2,5,8,1},{0,3,15,2,5,9,1},{0,3,25,3,5,-1,1},{0,3,25,3,5,-1,1},{0,3,25,10,5,-1,1},{0,3,22,10,5,-1,1},{0,3,18,10,5,-1,1},{25,0,6,0,5,-1,1}}, + {{0,3,15,2,5,0,1},{0,0,15,2,5,1,1},{0,0,15,2,5,2,1},{0,0,15,2,5,3,1},{0,0,15,2,5,4,1},{0,3,15,2,5,5,1},{0,3,15,2,5,6,1},{0,3,15,2,5,7,1},{0,3,15,2,5,8,1},{0,3,15,2,5,9,1},{0,3,25,3,5,-1,1},{0,3,25,3,5,-1,1},{0,3,25,10,5,-1,1},{0,3,22,10,5,-1,1},{0,3,18,10,5,-1,1},{61,0,2,0,9,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,5,-1,1},{0,2,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,0,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{0,3,23,4,6,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1}}, + {{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{61,0,2,4,9,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,11,17,6,-1,0},{1,3,11,17,6,-1,0},{1,3,11,17,6,-1,0}}, + {{1,3,11,17,6,-1,0},{1,3,12,17,3,-1,1},{1,3,11,17,6,-1,0},{1,3,11,17,6,-1,0},{1,3,11,17,6,-1,0},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{1,3,12,17,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{0,3,26,10,5,-1,0},{0,3,26,10,5,-1,0},{0,3,9,0,5,-1,1},{0,0,26,10,5,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,5,-1,0},{0,3,26,10,5,-1,0},{0,3,9,0,5,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,5,-1,0},{0,3,5,0,5,-1,1},{0,3,9,0,5,-1,1},{0,3,9,0,5,-1,1},{0,3,9,0,5,-1,1},{0,3,5,0,5,-1,1},{0,3,5,0,5,-1,0},{0,3,9,0,5,-1,1},{0,3,9,0,5,-1,1},{0,3,9,0,5,-1,1},{0,0,5,0,5,-1,0},{0,3,26,10,6,-1,0},{0,3,9,0,5,-1,1},{0,0,26,10,5,-1,0},{0,3,26,10,6,-1,0},{0,3,25,10,8,-1,1},{0,3,9,0,5,-1,1},{0,3,9,0,5,-1,1},{0,3,9,0,5,-1,1},{0,3,9,0,5,-1,1},{0,3,9,0,5,-1,1},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{0,3,26,10,5,-1,0},{0,0,26,10,5,-1,0},{0,0,26,10,5,-1,0},{0,3,26,10,6,-1,0},{0,3,9,0,5,-1,1},{0,3,26,10,6,-1,0},{14,0,9,0,5,-1,1},{0,3,26,10,6,-1,0},{0,3,9,0,5,-1,1},{0,3,26,10,6,-1,0},{25,3,9,0,5,-1,1},{25,0,9,0,5,-1,1},{0,3,9,0,5,-1,1},{0,3,9,0,5,-1,1},{0,3,26,4,8,-1,0},{0,3,5,0,5,-1,1},{0,3,9,0,5,-1,1},{0,3,9,0,5,-1,1},{25,3,9,0,3,-1,1},{0,3,9,0,5,-1,1},{0,3,5,0,5,-1,1},{0,3,7,0,5,-1,0},{0,3,7,0,5,-1,0},{0,3,7,0,5,-1,0},{0,3,7,0,5,-1,0},{0,3,5,0,5,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,5,-1,0},{0,3,5,0,5,-1,0},{0,3,5,0,5,-1,0},{0,3,9,0,5,-1,0},{0,3,9,0,5,-1,0}}, + {{0,3,25,10,5,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,9,0,5,-1,0},{0,3,5,0,5,-1,0},{0,3,5,0,5,-1,0},{0,3,5,0,5,-1,0},{0,3,5,0,5,-1,0},{0,3,26,10,6,-1,0},{0,3,25,10,6,-1,1},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{25,3,5,0,3,-1,1},{0,3,26,0,6,-1,0},{0,3,15,10,5,-1,0},{0,3,15,10,5,-1,0},{0,3,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,3,15,10,5,-1,0},{0,3,15,10,5,-1,0},{0,3,15,10,5,-1,0},{0,3,15,10,5,-1,0},{0,3,15,10,5,-1,0},{0,3,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,3,15,10,5,-1,0}}, + {{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,3,14,0,5,-1,0},{25,3,14,0,5,-1,0},{25,3,14,0,5,-1,0},{25,3,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,0,14,0,5,-1,0},{25,3,14,0,5,-1,0},{25,3,14,0,5,-1,0},{25,3,14,0,5,-1,0},{25,3,14,0,5,-1,0},{25,3,14,0,5,-1,0},{25,3,14,0,5,-1,0}}, + {{25,3,14,0,3,-1,0},{25,3,14,0,3,-1,0},{25,3,14,0,3,-1,0},{25,3,9,0,3,-1,0},{25,3,5,0,3,-1,0},{25,3,14,0,3,-1,0},{25,3,14,0,3,-1,0},{25,3,14,0,3,-1,0},{25,3,14,0,3,-1,0},{0,0,15,10,5,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1}}, + {{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,26,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1}}, + {{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,3,6,-1,1},{0,3,25,4,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,0},{0,0,25,10,6,-1,1}}, + {{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,5,-1,1},{0,3,25,10,5,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,5,-1,1},{0,3,25,10,5,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,0},{0,0,25,10,6,-1,0},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,0,25,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,5,22,10,5,-1,3},{0,5,18,10,5,-1,3},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1}}, + {{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1}}, + {{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,0,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{0,0,15,10,5,1,0},{0,0,15,10,5,2,0},{0,0,15,10,5,3,0},{0,0,15,10,5,4,0},{0,0,15,10,5,5,0},{0,0,15,10,5,6,0},{0,0,15,10,5,7,0},{0,0,15,10,5,8,0},{0,0,15,10,5,9,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,1,0},{0,0,15,10,5,2,0},{0,0,15,10,5,3,0},{0,0,15,10,5,4,0},{0,0,15,10,5,5,0},{0,0,15,10,5,6,0},{0,0,15,10,5,7,0},{0,0,15,10,5,8,0},{0,0,15,10,5,9,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0}}, + {{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,10,5,-1,0},{0,0,15,2,5,1,0},{0,0,15,2,5,2,0},{0,0,15,2,5,3,0},{0,0,15,2,5,4,0},{0,0,15,2,5,5,0},{0,0,15,2,5,6,0},{0,0,15,2,5,7,0},{0,0,15,2,5,8,0},{0,0,15,2,5,9,0},{0,0,15,2,5,-1,0},{0,0,15,2,5,-1,0},{0,0,15,2,5,-1,0},{0,0,15,2,5,-1,0},{0,0,15,2,5,-1,0},{0,0,15,2,5,-1,0},{0,0,15,2,5,-1,0},{0,0,15,2,5,-1,0},{0,0,15,2,5,-1,0},{0,0,15,2,5,-1,0},{0,0,15,2,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0}}, + {{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0}}, + {{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,0,26,0,5,-1,0},{0,3,15,10,5,0,0},{0,0,15,10,6,-1,0},{0,0,15,10,6,-1,0},{0,0,15,10,6,-1,0},{0,0,15,10,6,-1,0},{0,0,15,10,6,-1,0},{0,0,15,10,6,-1,0},{0,0,15,10,6,-1,0},{0,0,15,10,6,-1,0},{0,0,15,10,6,-1,0},{0,0,15,10,6,-1,0},{0,0,15,10,6,1,0},{0,0,15,10,6,2,0},{0,0,15,10,6,3,0},{0,0,15,10,6,4,0},{0,0,15,10,6,5,0},{0,0,15,10,6,6,0},{0,0,15,10,6,7,0},{0,0,15,10,6,8,0},{0,0,15,10,6,9,0},{0,0,15,10,6,-1,0},{0,0,15,10,6,0,0}}, + {{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1}}, + {{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1}}, + {{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1}}, + {{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1}}, + {{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,25,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{0,0,26,10,6,-1,0},{0,0,25,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,25,10,6,-1,0},{0,3,25,10,6,-1,0},{0,3,25,10,6,-1,0},{0,3,25,10,6,-1,0},{0,3,25,10,6,-1,0},{0,3,25,10,6,-1,0},{0,3,25,10,6,-1,0},{0,3,25,10,6,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,0,26,10,6,-1,1},{0,3,26,10,6,-1,1}}, + {{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,25,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,0,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0}}, + {{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,0,15,10,6,1,0},{0,0,15,10,6,2,0},{0,0,15,10,6,3,0},{0,0,15,10,6,4,0},{0,0,15,10,6,5,0},{0,0,15,10,6,6,0},{0,0,15,10,6,7,0},{0,0,15,10,6,8,0},{0,0,15,10,6,9,0},{0,0,15,10,6,-1,0}}, + {{0,3,15,10,6,1,0},{0,3,15,10,6,2,0},{0,3,15,10,6,3,0},{0,3,15,10,6,4,0},{0,3,15,10,6,5,0},{0,3,15,10,6,6,0},{0,3,15,10,6,7,0},{0,3,15,10,6,8,0},{0,3,15,10,6,9,0},{0,3,15,10,6,-1,0},{0,3,15,10,6,1,0},{0,3,15,10,6,2,0},{0,3,15,10,6,3,0},{0,3,15,10,6,4,0},{0,3,15,10,6,5,0},{0,3,15,10,6,6,0},{0,3,15,10,6,7,0},{0,3,15,10,6,8,0},{0,3,15,10,6,9,0},{0,3,15,10,6,-1,0},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1}}, + {{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,4,22,10,6,-1,1},{0,4,18,10,6,-1,1},{0,4,22,10,6,-1,1},{0,4,18,10,6,-1,1},{0,4,22,10,6,-1,1},{0,4,18,10,6,-1,1},{0,4,22,10,6,-1,1},{0,4,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1},{46,3,26,0,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,4,22,10,6,-1,1},{0,4,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,5,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,5,-1,1},{0,3,25,10,5,-1,1},{0,3,25,10,5,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,5,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1}}, + {{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,25,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,0,26,10,6,-1,0},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1}}, + {{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1}}, + {{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1}}, + {{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{61,0,2,0,9,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{0,3,26,10,6,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1}}, + {{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{56,3,9,0,3,-1,1},{61,0,2,0,9,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1}}, + {{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{56,3,5,0,3,-1,1},{61,0,2,0,9,-1,1}}, + {{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,9,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,5,0,8,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,9,0,3,-1,1},{25,3,9,0,3,-1,1}}, + {{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1}}, + {{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,26,10,6,-1,1},{7,3,26,10,6,-1,1},{7,3,26,10,6,-1,1},{7,3,26,10,6,-1,1},{7,3,26,10,6,-1,1},{7,3,26,10,6,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{7,3,12,17,3,-1,1},{7,3,12,17,3,-1,1},{7,3,12,17,3,-1,1},{7,3,9,0,3,-1,1},{7,3,5,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{7,3,21,10,6,-1,1},{7,3,21,10,6,-1,1},{7,3,21,10,6,-1,1},{7,3,21,10,6,-1,1},{7,3,15,10,6,-1,1},{7,3,21,10,6,-1,1},{7,3,21,10,6,-1,1}}, + {{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1}}, + {{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{12,3,5,0,3,-1,1},{61,0,2,0,9,-1,1},{12,3,5,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{12,3,5,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1}}, + {{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1}}, + {{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{57,3,7,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{57,3,6,0,5,-1,1},{57,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{57,3,12,17,4,-1,1}}, + {{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1}}, + {{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1},{8,3,12,17,3,-1,1}}, + {{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,20,10,6,-1,1},{0,3,19,10,6,-1,1},{0,3,20,10,6,-1,1},{0,3,19,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,20,10,6,-1,1},{0,3,19,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,20,10,6,-1,1},{0,3,19,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,17,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,17,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,20,10,6,-1,1},{0,3,19,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1}}, + {{0,3,20,10,6,-1,1},{0,3,19,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1},{0,3,18,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,6,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,3,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,3,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,3,-1,1},{0,3,17,10,6,-1,1},{0,3,17,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,10,6,-1,1}}, + {{0,3,17,10,6,-1,1},{0,3,21,10,6,-1,1},{0,3,22,10,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{61,0,2,0,9,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,5,-1,0}}, + {{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0}}, + {{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,6,-1,0},{17,5,26,10,5,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0}}, + {{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{17,5,26,10,5,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{0,1,29,9,5,-1,0},{0,5,21,10,6,-1,2},{0,5,21,10,6,-1,2},{0,5,21,10,6,-1,0},{0,5,26,10,6,-1,0},{17,5,6,0,1,-1,0},{0,5,7,0,1,-1,0},{17,5,14,0,1,-1,0},{0,5,22,10,6,-1,3},{0,5,18,10,6,-1,3},{0,5,22,10,6,-1,3},{0,5,18,10,6,-1,3},{0,5,22,10,6,-1,3},{0,5,18,10,6,-1,3},{0,5,22,10,6,-1,3},{0,5,18,10,6,-1,3},{0,5,22,10,6,-1,3},{0,5,18,10,6,-1,3},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,22,10,6,-1,3},{0,5,18,10,6,-1,3},{0,5,22,10,6,-1,3},{0,5,18,10,6,-1,3},{0,5,22,10,6,-1,3},{0,5,18,10,6,-1,3},{0,5,22,10,6,-1,3},{0,5,18,10,6,-1,3},{0,5,17,10,6,-1,3},{0,5,22,10,6,-1,3},{0,5,18,10,6,-1,3},{0,5,18,10,6,-1,3}}, + {{0,5,26,10,6,-1,0},{17,5,14,0,8,-1,0},{17,5,14,0,8,-1,0},{17,5,14,0,8,-1,0},{17,5,14,0,8,-1,0},{17,5,14,0,8,-1,0},{17,5,14,0,8,-1,0},{17,5,14,0,8,-1,0},{17,5,14,0,8,-1,0},{17,5,14,0,8,-1,0},{1,5,12,17,8,-1,0},{1,5,12,17,8,-1,0},{1,5,12,17,8,-1,0},{1,5,12,17,8,-1,0},{18,5,10,0,8,-1,0},{18,5,10,0,8,-1,0},{0,5,17,10,6,-1,3},{0,5,6,0,8,-1,0},{0,5,6,0,8,-1,0},{0,5,6,0,8,-1,0},{0,5,6,0,8,-1,0},{0,5,6,0,8,-1,0},{0,5,26,10,5,-1,0},{0,5,26,10,6,-1,0},{17,5,14,0,5,-1,0},{17,5,14,0,5,-1,0},{17,5,14,0,5,-1,0},{17,5,6,0,8,-1,0},{0,5,7,0,8,-1,0},{0,5,21,10,6,-1,0},{0,5,26,10,6,-1,0},{0,3,26,10,6,-1,0}}, + {{61,0,2,0,9,-1,0},{20,5,7,0,1,-1,2},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,2},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,2},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,2},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,2},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0}}, + {{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,2},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0}}, + {{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,2},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,2},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,2},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,2},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,0},{20,5,7,0,1,-1,2},{20,5,7,0,1,-1,2},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{1,5,12,17,1,-1,0},{1,5,12,17,1,-1,0},{0,5,24,10,5,-1,2},{0,5,24,10,5,-1,2},{20,5,6,0,1,-1,0},{20,5,6,0,1,-1,0},{20,5,7,0,5,-1,0}}, + {{0,5,17,10,0,-1,3},{22,5,7,0,1,-1,2},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,2},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,2},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,2},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,2},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0}}, + {{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,2},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0}}, + {{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,2},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,2},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,2},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,2},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,2},{22,5,7,0,1,-1,2},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{22,5,7,0,1,-1,0},{0,5,21,10,1,-1,0},{0,5,6,0,1,-1,3},{22,5,6,0,1,-1,0},{22,5,6,0,1,-1,0},{22,5,7,0,5,-1,0}}, + {{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0}}, + {{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,3},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0}}, + {{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0}}, + {{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,2,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0}}, + {{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{18,5,7,0,5,-1,0},{61,0,2,0,9,-1,0},{0,5,26,0,6,-1,0},{0,5,26,0,6,-1,0},{0,5,15,0,5,-1,0},{0,5,15,0,5,-1,0},{0,5,15,0,5,-1,0},{0,5,15,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0}}, + {{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{5,5,7,0,1,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0}}, + {{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{0,5,26,10,6,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2},{22,5,7,0,8,-1,2}}, + {{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,10,5,-1,0},{18,5,26,10,5,-1,0},{61,0,2,0,9,-1,0}}, + {{0,5,15,0,5,-1,0},{0,5,15,0,5,-1,0},{0,5,15,0,5,-1,0},{0,5,15,0,5,-1,0},{0,5,15,0,5,-1,0},{0,5,15,0,5,-1,0},{0,5,15,0,5,-1,0},{0,5,15,0,5,-1,0},{0,5,15,0,5,-1,0},{0,5,15,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0}}, + {{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,0,15,0,6,-1,0},{0,0,15,0,6,-1,0},{0,0,15,0,6,-1,0},{0,0,15,0,6,-1,0},{0,0,15,0,6,-1,0},{0,0,15,0,6,-1,0},{0,0,15,0,6,-1,0},{0,0,15,0,6,-1,0},{0,5,26,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0}}, + {{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,0,5,-1,0},{18,5,26,10,5,-1,0},{18,5,26,10,5,-1,0},{18,5,26,10,5,-1,0},{0,5,26,0,6,-1,0}}, + {{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0},{0,5,15,10,5,-1,0}}, + {{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,10,5,-1,0},{0,5,26,10,5,-1,0},{0,5,26,10,5,-1,0},{0,5,26,10,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0}}, + {{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{22,5,26,0,5,-1,0},{61,0,2,0,9,-1,0}}, + {{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2}}, + {{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{22,5,26,0,5,-1,2},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0}}, + {{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,10,5,-1,0},{0,5,26,10,5,-1,0},{0,5,26,10,5,-1,0},{0,5,26,10,5,-1,0},{0,5,26,0,5,-1,2},{0,5,26,0,5,-1,2},{0,5,26,0,5,-1,2},{0,5,26,0,5,-1,2},{0,5,26,0,5,-1,2}}, + {{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0}}, + {{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,10,5,-1,0},{0,5,26,10,5,-1,0}}, + {{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,0,5,-1,0},{0,5,26,10,5,-1,0}}, + {{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0}}, + {{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0}}, + {{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0}}, + {{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0}}, + {{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,6,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0}}, + {{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0}}, + {{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{41,5,7,0,4,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0}}, + {{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0}}, + {{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{41,5,26,10,6,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1}}, + {{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,7,0,4,-1,1},{86,3,6,0,4,-1,1},{86,3,6,0,4,-1,1},{86,3,6,0,4,-1,1},{86,3,6,0,4,-1,1},{86,3,6,0,4,-1,1},{86,3,6,0,4,-1,1},{86,3,21,0,6,-1,1},{86,3,21,0,6,-1,1}}, + {{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1}}, + {{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,6,0,4,-1,1},{74,3,21,10,6,-1,1},{74,3,21,10,6,-1,1},{74,3,21,10,6,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1}}, + {{74,3,13,0,4,0,1},{74,3,13,0,4,1,1},{74,3,13,0,4,2,1},{74,3,13,0,4,3,1},{74,3,13,0,4,4,1},{74,3,13,0,4,5,1},{74,3,13,0,4,6,1},{74,3,13,0,4,7,1},{74,3,13,0,4,8,1},{74,3,13,0,4,9,1},{74,3,7,0,4,-1,1},{74,3,7,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{8,3,9,0,1,-1,1},{8,3,5,0,1,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,7,0,3,-1,1},{8,3,12,17,4,-1,1},{8,3,11,17,6,-1,1},{8,3,11,17,6,-1,1},{8,3,11,17,6,-1,1},{8,3,21,10,6,-1,1},{8,3,12,17,1,-1,1},{8,3,12,17,1,-1,1},{8,3,12,17,1,-1,1},{8,3,12,17,1,-1,1},{8,3,12,17,1,-1,1},{8,3,12,17,1,-1,1},{8,3,12,17,1,-1,1},{8,3,12,17,1,-1,1},{8,3,12,17,4,-1,1},{8,3,12,17,4,-1,1},{8,3,21,10,6,-1,1},{8,3,6,10,1,-1,1}}, + {{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,9,0,3,-1,1},{8,3,5,0,3,-1,1},{8,3,6,0,5,-1,1},{8,3,6,0,5,-1,1},{61,0,2,0,9,-1,1},{8,3,12,17,1,-1,1}}, + {{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1}}, + {{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,7,0,4,-1,1},{79,3,14,0,4,-1,1},{79,3,14,0,4,-1,1},{79,3,14,0,4,-1,1},{79,3,14,0,4,-1,1},{79,3,14,0,4,-1,1},{79,3,14,0,4,-1,1},{79,3,14,0,4,-1,1},{79,3,14,0,4,-1,1},{79,3,14,0,4,-1,1},{79,3,14,0,4,-1,1},{79,3,12,17,4,-1,1},{79,3,12,17,4,-1,1},{79,3,21,0,6,-1,1},{79,3,21,0,6,-1,1},{79,3,21,0,6,-1,1},{79,3,21,0,6,-1,1},{79,3,21,0,6,-1,1},{79,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{0,3,6,10,1,-1,1},{0,3,6,10,1,-1,1},{0,3,6,10,1,-1,1},{0,3,6,10,1,-1,1},{0,3,6,10,1,-1,1},{0,3,6,10,1,-1,1},{0,3,6,10,1,-1,1},{0,3,6,10,1,-1,1},{0,3,6,10,1,-1,1}}, + {{0,3,24,10,6,-1,1},{0,3,24,10,6,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1}}, + {{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1}}, + {{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,6,0,5,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1}}, + {{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{0,3,6,10,1,-1,1},{0,3,24,0,6,-1,1},{0,3,24,0,6,-1,1},{25,3,9,0,4,-1,1},{25,3,5,0,4,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{61,0,2,0,9,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,5,0,3,-1,1}}, + {{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,5,0,1,-1,1},{25,3,9,0,1,-1,1},{25,3,9,0,3,-1,1},{25,3,9,0,3,-1,1},{25,3,9,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{25,3,9,0,3,-1,1},{25,3,9,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{25,3,7,0,3,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,5,0,1,-1,1},{25,3,7,0,3,-1,1},{25,3,7,0,3,-1,1},{25,3,7,0,3,-1,1},{25,3,7,0,3,-1,1},{25,3,7,0,3,-1,1}}, + {{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,12,17,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,12,17,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,12,17,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1}}, + {{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,7,0,4,-1,1},{58,3,10,0,4,-1,1},{58,3,10,0,4,-1,1},{58,3,12,17,4,-1,1},{58,3,12,17,4,-1,1},{58,3,10,0,4,-1,1},{58,3,26,10,6,-1,1},{58,3,26,10,6,-1,1},{58,3,26,10,6,-1,1},{58,3,26,10,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,23,4,6,-1,1},{0,3,26,4,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1}}, + {{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,7,0,3,-1,1},{65,3,21,10,6,-1,1},{65,3,21,10,6,-1,1},{65,3,21,10,6,-1,1},{65,3,21,10,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1}}, + {{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,7,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1}}, + {{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,10,0,4,-1,1},{71,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{71,3,21,0,6,-1,1},{71,3,21,0,6,-1,1},{71,3,13,0,4,0,1},{71,3,13,0,4,1,1},{71,3,13,0,4,2,1},{71,3,13,0,4,3,1},{71,3,13,0,4,4,1},{71,3,13,0,4,5,1},{71,3,13,0,4,6,1},{71,3,13,0,4,7,1},{71,3,13,0,4,8,1},{71,3,13,0,4,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,12,17,3,-1,1},{10,3,7,0,3,-1,1},{10,3,7,0,3,-1,1},{10,3,7,0,3,-1,1},{10,3,7,0,3,-1,1},{10,3,7,0,3,-1,1},{10,3,7,0,3,-1,1},{10,3,21,0,6,-1,1},{10,3,21,0,6,-1,1},{10,3,21,0,6,-1,1},{10,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{67,3,13,0,4,0,1},{67,3,13,0,4,1,1},{67,3,13,0,4,2,1},{67,3,13,0,4,3,1},{67,3,13,0,4,4,1},{67,3,13,0,4,5,1},{67,3,13,0,4,6,1},{67,3,13,0,4,7,1},{67,3,13,0,4,8,1},{67,3,13,0,4,9,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1}}, + {{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,7,0,4,-1,1},{67,3,12,17,4,-1,1},{67,3,12,17,4,-1,1},{67,3,12,17,4,-1,1},{67,3,12,17,4,-1,1},{67,3,12,17,4,-1,1},{67,3,12,17,4,-1,1},{67,3,12,17,4,-1,1},{67,3,12,17,4,-1,1},{0,3,21,0,6,-1,1},{67,3,21,0,6,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1}}, + {{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,7,0,3,-1,1},{69,3,12,17,3,-1,1},{69,3,12,17,3,-1,1},{69,3,12,17,3,-1,1},{69,3,12,17,3,-1,1},{69,3,12,17,3,-1,1},{69,3,12,17,3,-1,1},{69,3,12,17,3,-1,1},{69,3,12,17,3,-1,1},{69,3,12,17,3,-1,1},{69,3,12,17,3,-1,1},{69,3,12,17,3,-1,1},{69,3,10,0,3,-1,1},{69,3,10,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{69,3,21,0,6,-1,1}}, + {{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{18,5,7,0,3,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{84,3,12,17,4,-1,1},{84,3,12,17,4,-1,1},{84,3,12,17,4,-1,1},{84,3,10,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1}}, + {{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,7,0,4,-1,1},{84,3,12,17,4,-1,1},{84,3,10,0,4,-1,1},{84,3,10,0,4,-1,1},{84,3,12,17,4,-1,1},{84,3,12,17,4,-1,1},{84,3,12,17,4,-1,1},{84,3,12,17,4,-1,1},{84,3,10,0,4,-1,1},{84,3,10,0,4,-1,1},{84,3,12,17,4,-1,1},{84,3,10,0,4,-1,1},{84,3,10,0,4,-1,1},{84,3,10,0,4,-1,1}}, + {{84,3,10,0,4,-1,1},{84,3,21,0,6,-1,1},{84,3,21,0,6,-1,1},{84,3,21,0,6,-1,1},{84,3,21,0,6,-1,1},{84,3,21,0,6,-1,1},{84,3,21,0,6,-1,1},{84,3,21,0,6,-1,1},{84,3,21,0,6,-1,1},{84,3,21,0,6,-1,1},{84,3,21,0,6,-1,1},{84,3,21,0,6,-1,1},{84,3,21,0,6,-1,1},{84,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{0,3,6,0,3,-1,1},{84,3,13,0,4,0,1},{84,3,13,0,4,1,1},{84,3,13,0,4,2,1},{84,3,13,0,4,3,1},{84,3,13,0,4,4,1},{84,3,13,0,4,5,1},{84,3,13,0,4,6,1},{84,3,13,0,4,7,1},{84,3,13,0,4,8,1},{84,3,13,0,4,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{84,3,21,0,6,-1,1},{84,3,21,0,6,-1,1}}, + {{28,3,7,0,3,-1,1},{28,3,7,0,3,-1,1},{28,3,7,0,3,-1,1},{28,3,7,0,3,-1,1},{28,3,7,0,3,-1,1},{28,3,12,17,3,-1,1},{28,3,6,0,3,-1,1},{28,3,7,0,4,-1,1},{28,3,7,0,4,-1,1},{28,3,7,0,4,-1,1},{28,3,7,0,4,-1,1},{28,3,7,0,4,-1,1},{28,3,7,0,4,-1,1},{28,3,7,0,4,-1,1},{28,3,7,0,4,-1,1},{28,3,7,0,4,-1,1},{28,3,13,0,4,0,1},{28,3,13,0,4,1,1},{28,3,13,0,4,2,1},{28,3,13,0,4,3,1},{28,3,13,0,4,4,1},{28,3,13,0,4,5,1},{28,3,13,0,4,6,1},{28,3,13,0,4,7,1},{28,3,13,0,4,8,1},{28,3,13,0,4,9,1},{28,3,7,0,4,-1,1},{28,3,7,0,4,-1,1},{28,3,7,0,4,-1,1},{28,3,7,0,4,-1,1},{28,3,7,0,4,-1,1},{61,0,2,0,9,-1,1}}, + {{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1}}, + {{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,12,17,4,-1,1},{72,3,12,17,4,-1,1},{72,3,12,17,4,-1,1},{72,3,12,17,4,-1,1},{72,3,12,17,4,-1,1},{72,3,12,17,4,-1,1},{72,3,10,0,4,-1,1},{72,3,10,0,4,-1,1},{72,3,12,17,4,-1,1},{72,3,12,17,4,-1,1},{72,3,10,0,4,-1,1},{72,3,10,0,4,-1,1},{72,3,12,17,4,-1,1},{72,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,12,17,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,7,0,4,-1,1},{72,3,12,17,4,-1,1},{72,3,10,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{72,3,13,0,4,0,1},{72,3,13,0,4,1,1},{72,3,13,0,4,2,1},{72,3,13,0,4,3,1},{72,3,13,0,4,4,1},{72,3,13,0,4,5,1},{72,3,13,0,4,6,1},{72,3,13,0,4,7,1},{72,3,13,0,4,8,1},{72,3,13,0,4,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{72,3,21,0,6,-1,1},{72,3,21,0,6,-1,1},{72,3,21,0,6,-1,1},{72,3,21,0,6,-1,1}}, + {{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,6,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,7,0,1,-1,1},{28,3,26,0,6,-1,1},{28,3,26,0,6,-1,1},{28,3,26,0,6,-1,1},{28,3,7,0,1,-1,1},{28,3,10,0,1,-1,1},{28,3,12,17,4,-1,1},{28,3,10,0,4,-1,1},{28,3,7,0,4,-1,1},{28,3,7,0,4,-1,1}}, + {{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1}}, + {{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,12,17,4,-1,1},{92,3,7,0,4,-1,1},{92,3,12,17,4,-1,1},{92,3,12,17,4,-1,1},{92,3,12,17,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,12,17,4,-1,1},{92,3,12,17,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,12,17,4,-1,1},{92,3,12,17,4,-1,1}}, + {{92,3,7,0,4,-1,1},{92,3,12,17,4,-1,1},{92,3,7,0,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{92,3,7,0,4,-1,1},{92,3,7,0,4,-1,1},{92,3,6,0,4,-1,1},{92,3,21,0,6,-1,1},{92,3,21,0,6,-1,1}}, + {{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,10,0,4,-1,1},{87,3,12,17,4,-1,1},{87,3,12,17,4,-1,1},{87,3,10,0,4,-1,1},{87,3,10,0,4,-1,1},{87,3,21,0,6,-1,1},{87,3,21,0,6,-1,1},{87,3,7,0,4,-1,1},{87,3,6,0,4,-1,1},{87,3,6,0,4,-1,1},{87,3,10,0,4,-1,1},{87,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{11,3,7,0,1,-1,1},{61,0,2,0,9,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1}}, + {{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{25,3,5,0,3,-1,1},{0,3,24,0,6,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1},{25,3,6,0,5,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{25,3,5,0,3,-1,1},{14,3,5,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1}}, + {{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,7,0,4,-1,1},{87,3,10,0,4,-1,1},{87,3,10,0,4,-1,1},{87,3,12,17,4,-1,1},{87,3,10,0,4,-1,1},{87,3,10,0,4,-1,1},{87,3,12,17,4,-1,1},{87,3,10,0,4,-1,1},{87,3,10,0,4,-1,1},{87,3,21,0,6,-1,1},{87,3,10,0,4,-1,1},{87,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{87,3,13,0,4,0,1},{87,3,13,0,4,1,1},{87,3,13,0,4,2,1},{87,3,13,0,4,3,1},{87,3,13,0,4,4,1},{87,3,13,0,4,5,1},{87,3,13,0,4,6,1},{87,3,13,0,4,7,1},{87,3,13,0,4,8,1},{87,3,13,0,4,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0}}, + {{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{18,5,7,0,1,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0}}, + {{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0}}, + {{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{18,3,7,0,3,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1},{61,3,4,0,9,-1,1}}, + {{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0},{61,0,3,0,9,-1,0}}, + {{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0}}, + {{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,1,-1,0}}, + {{17,5,7,0,5,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,1,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0}}, + {{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0}}, + {{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{17,5,7,0,5,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0},{61,5,2,0,9,-1,0}}, + {{25,3,5,0,5,-1,1},{25,3,5,0,5,-1,1},{25,3,5,0,5,-1,1},{25,3,5,0,5,-1,1},{25,3,5,0,5,-1,1},{25,3,5,0,5,-1,1},{25,3,5,0,5,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{3,3,5,0,5,-1,1},{3,3,5,0,5,-1,1},{3,3,5,0,5,-1,1},{3,3,5,0,5,-1,1},{3,3,5,0,5,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{19,3,7,1,5,-1,1},{19,3,12,17,4,-1,1},{19,3,7,1,5,-1,1}}, + {{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,25,3,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{61,0,2,1,9,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{61,0,2,1,9,-1,1},{19,3,7,1,5,-1,1},{61,0,2,1,9,-1,1}}, + {{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{61,0,2,1,9,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{61,0,2,1,9,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{19,3,7,1,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1}}, + {{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1}}, + {{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1}}, + {{2,3,24,13,6,-1,1},{2,3,24,13,6,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1}}, + {{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{0,3,18,10,6,-1,1},{0,3,22,10,6,-1,1}}, + {{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1}}, + {{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1}}, + {{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,23,13,5,-1,1},{2,3,26,10,6,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1}}, + {{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{1,0,12,17,2,-1,1},{0,5,21,10,5,-1,0},{0,5,21,10,5,-1,0},{0,5,21,10,5,-1,0},{0,5,21,10,5,-1,0},{0,5,21,10,5,-1,0},{0,5,21,10,5,-1,0},{0,5,21,10,5,-1,0},{0,5,22,10,5,-1,0},{0,5,18,10,5,-1,0},{0,5,21,10,5,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{1,3,12,17,8,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{0,5,21,10,5,-1,0},{0,5,17,10,5,-1,0},{0,5,17,10,5,-1,0},{0,5,16,10,5,-1,0},{0,5,16,10,5,-1,0},{0,5,22,10,5,-1,0},{0,5,18,10,5,-1,0},{0,5,22,10,5,-1,0},{0,5,18,10,5,-1,0},{0,5,22,10,5,-1,0},{0,5,18,10,5,-1,0},{0,5,22,10,5,-1,0},{0,5,18,10,5,-1,0},{0,5,22,10,5,-1,0},{0,5,18,10,5,-1,0},{0,5,22,10,5,-1,0}}, + {{0,5,18,10,5,-1,0},{0,5,22,10,5,-1,0},{0,5,18,10,5,-1,0},{0,5,22,10,5,-1,0},{0,5,18,10,5,-1,0},{0,5,21,10,6,-1,0},{0,5,21,10,6,-1,0},{0,5,22,10,5,-1,0},{0,5,18,10,5,-1,0},{0,5,21,10,5,-1,1},{0,5,21,10,5,-1,1},{0,5,21,10,5,-1,1},{0,5,21,10,5,-1,1},{0,5,16,10,5,-1,1},{0,5,16,10,5,-1,1},{0,5,16,10,5,-1,1},{0,5,21,6,5,-1,2},{0,5,21,10,5,-1,2},{0,5,21,6,5,-1,2},{61,0,2,0,9,-1,0},{0,5,21,10,5,-1,0},{0,5,21,6,5,-1,0},{0,5,21,10,5,-1,0},{0,5,21,10,5,-1,0},{0,5,17,10,5,-1,1},{0,5,22,10,5,-1,3},{0,5,18,10,5,-1,3},{0,5,22,10,5,-1,3},{0,5,18,10,5,-1,3},{0,5,22,10,5,-1,3},{0,5,18,10,5,-1,3},{0,5,21,4,5,-1,0}}, + {{0,5,21,10,5,-1,0},{0,5,21,10,5,-1,0},{0,5,25,3,5,-1,0},{0,5,17,3,5,-1,1},{0,5,25,10,5,-1,1},{0,5,25,10,5,-1,1},{0,5,25,10,5,-1,1},{61,0,2,0,9,-1,0},{0,5,21,10,5,-1,0},{0,5,23,4,5,-1,0},{0,5,21,4,5,-1,0},{0,5,21,10,5,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,8,-1,1},{2,3,7,13,5,-1,1},{61,0,2,13,9,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1}}, + {{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{2,3,7,13,5,-1,1},{61,0,2,13,9,-1,1},{61,0,2,13,9,-1,1},{0,3,1,18,2,-1,1}}, + {{61,0,2,0,9,-1,1},{0,1,21,10,5,-1,2},{0,1,21,10,5,-1,0},{0,1,21,4,5,-1,0},{0,1,23,4,5,-1,0},{0,1,21,4,5,-1,0},{0,1,21,10,5,-1,0},{0,1,21,10,5,-1,0},{0,1,22,10,5,-1,3},{0,1,18,10,5,-1,3},{0,1,21,10,5,-1,0},{0,1,25,3,5,-1,0},{0,1,21,6,5,-1,2},{0,1,17,3,5,-1,1},{0,1,21,6,5,-1,2},{0,1,21,6,5,-1,0},{0,1,13,2,5,0,0},{0,1,13,2,5,1,0},{0,1,13,2,5,2,0},{0,1,13,2,5,3,0},{0,1,13,2,5,4,0},{0,1,13,2,5,5,0},{0,1,13,2,5,6,0},{0,1,13,2,5,7,0},{0,1,13,2,5,8,0},{0,1,13,2,5,9,0},{0,1,21,6,5,-1,3},{0,1,21,10,5,-1,3},{0,1,25,10,5,-1,1},{0,1,25,10,5,-1,1},{0,1,25,10,5,-1,1},{0,1,21,10,5,-1,2}}, + {{0,1,21,10,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{25,1,9,0,5,-1,0},{0,1,22,10,5,-1,3},{0,1,21,10,5,-1,0},{0,1,18,10,5,-1,3},{0,1,24,10,5,-1,0},{0,1,16,10,5,-1,3}}, + {{0,1,24,10,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{25,1,5,0,5,-1,0},{0,1,22,10,5,-1,3},{0,1,25,10,5,-1,3},{0,1,18,10,5,-1,3},{0,1,25,10,5,-1,3},{0,1,22,10,5,-1,3}}, + {{0,1,18,10,5,-1,3},{0,2,21,10,5,-1,1},{0,2,22,10,5,-1,1},{0,2,18,10,5,-1,1},{0,2,21,10,5,-1,1},{0,2,21,10,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{0,2,6,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1}}, + {{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{22,2,7,0,5,-1,1},{0,2,6,0,5,-1,1},{0,2,6,0,5,-1,1}}, + {{18,2,7,0,2,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{18,2,7,0,5,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{0,1,23,4,5,-1,0},{0,1,23,4,5,-1,0},{0,1,25,10,5,-1,0},{0,1,24,10,5,-1,3},{0,1,26,10,5,-1,0},{0,1,23,4,5,-1,0},{0,1,23,4,5,-1,0},{61,0,2,0,9,-1,0},{0,2,26,10,5,-1,1},{0,2,25,10,5,-1,1},{0,2,25,10,5,-1,1},{0,2,25,10,5,-1,1},{0,2,25,10,5,-1,1},{0,2,26,10,5,-1,1},{0,2,26,10,5,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,2,-1,0},{61,0,2,0,2,-1,0},{61,0,2,0,2,-1,0},{61,0,2,0,2,-1,0},{61,0,2,0,2,-1,0},{61,0,2,0,2,-1,0},{61,0,2,0,2,-1,0},{61,0,2,0,2,-1,0},{61,0,2,0,2,-1,0},{0,3,1,10,6,-1,1},{0,3,1,10,6,-1,1},{0,3,1,10,6,-1,1},{0,3,26,10,6,-1,0},{0,0,26,10,6,-1,0},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1}}, + {{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{51,3,7,0,3,-1,1}}, + {{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1}}, + {{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{51,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{0,3,21,0,6,-1,1},{0,3,21,10,6,-1,1},{0,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1}}, + {{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{0,3,15,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1}}, + {{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1}}, + {{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,14,10,3,-1,1},{14,3,15,10,6,-1,1},{14,3,15,10,6,-1,1},{14,3,15,10,6,-1,1},{14,3,15,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1}}, + {{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,26,10,6,-1,1},{14,3,15,10,6,-1,1},{14,3,15,10,6,-1,1},{14,3,26,10,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{0,3,26,10,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{14,3,26,10,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1}}, + {{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{0,3,26,0,6,-1,1},{1,3,12,17,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{76,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1}}, + {{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{75,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{1,3,12,17,3,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{0,3,15,2,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1},{30,3,7,0,3,-1,1}}, + {{30,3,15,0,6,-1,1},{30,3,15,0,6,-1,1},{30,3,15,0,6,-1,1},{30,3,15,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1}}, + {{13,3,7,0,3,-1,1},{13,3,14,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,7,0,3,-1,1},{13,3,14,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1}}, + {{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,7,0,3,-1,1},{118,3,12,17,3,-1,1},{118,3,12,17,3,-1,1},{118,3,12,17,3,-1,1},{118,3,12,17,3,-1,1},{118,3,12,17,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{53,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{53,3,21,0,6,-1,1}}, + {{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1}}, + {{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,7,0,3,-1,1},{59,3,21,0,6,-1,1},{59,3,14,0,3,-1,1},{59,3,14,0,3,-1,1},{59,3,14,0,3,-1,1},{59,3,14,0,3,-1,1},{59,3,14,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1}}, + {{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,9,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1}}, + {{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{9,3,5,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1}}, + {{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1},{50,3,7,0,3,-1,1}}, + {{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{49,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{49,3,13,0,3,0,1},{49,3,13,0,3,1,1},{49,3,13,0,3,2,1},{49,3,13,0,3,3,1},{49,3,13,0,3,4,1},{49,3,13,0,3,5,1},{49,3,13,0,3,6,1},{49,3,13,0,3,7,1},{49,3,13,0,3,8,1},{49,3,13,0,3,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1}}, + {{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{106,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1}}, + {{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1}}, + {{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{104,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{104,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1}}, + {{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{110,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{47,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1}}, + {{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{47,3,7,1,3,-1,1},{47,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{47,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{47,3,7,1,3,-1,1}}, + {{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{81,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{81,3,21,1,6,-1,1},{81,3,15,1,6,-1,1},{81,3,15,1,6,-1,1},{81,3,15,1,6,-1,1},{81,3,15,1,6,-1,1},{81,3,15,1,6,-1,1},{81,3,15,1,6,-1,1},{81,3,15,1,6,-1,1},{81,3,15,1,6,-1,1}}, + {{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,7,1,3,-1,1},{120,3,26,1,6,-1,1},{120,3,26,1,6,-1,1},{120,3,15,1,6,-1,1},{120,3,15,1,6,-1,1},{120,3,15,1,6,-1,1},{120,3,15,1,6,-1,1},{120,3,15,1,6,-1,1},{120,3,15,1,6,-1,1},{120,3,15,1,6,-1,1}}, + {{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{116,3,7,1,3,-1,1},{61,0,2,1,9,-1,1}}, + {{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{116,3,15,1,6,-1,1},{116,3,15,1,6,-1,1},{116,3,15,1,6,-1,1},{116,3,15,1,6,-1,1},{116,3,15,1,6,-1,1},{116,3,15,1,6,-1,1},{116,3,15,1,6,-1,1},{116,3,15,1,6,-1,1},{116,3,15,1,6,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1}}, + {{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,7,1,3,-1,1},{64,3,15,1,6,-1,1},{64,3,15,1,6,-1,1},{64,3,15,1,6,-1,1},{64,3,15,1,6,-1,1},{64,3,15,1,6,-1,1},{64,3,15,1,6,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{64,3,21,10,6,-1,1}}, + {{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{77,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{77,3,21,1,6,-1,1}}, + {{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0},{98,3,7,1,3,-1,0}}, + {{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{97,3,7,1,3,-1,1},{97,3,7,1,3,-1,1}}, + {{60,3,7,1,3,-1,1},{60,3,12,17,3,-1,1},{60,3,12,17,3,-1,1},{60,3,12,17,3,-1,1},{61,0,2,1,9,-1,1},{60,3,12,17,3,-1,1},{60,3,12,17,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{60,3,12,17,3,-1,1},{60,3,12,17,3,-1,1},{60,3,12,17,3,-1,1},{60,3,12,17,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1}}, + {{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{60,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{60,3,12,17,3,-1,1},{60,3,12,17,3,-1,1},{60,3,12,17,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{60,3,12,17,3,-1,1}}, + {{60,3,15,1,6,1,1},{60,3,15,1,6,2,1},{60,3,15,1,6,3,1},{60,3,15,1,6,4,1},{60,3,15,1,6,-1,1},{60,3,15,1,6,-1,1},{60,3,15,1,6,-1,1},{60,3,15,1,6,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{60,3,21,1,6,-1,1},{60,3,21,1,6,-1,1},{60,3,21,1,6,-1,1},{60,3,21,1,6,-1,1},{60,3,21,1,6,-1,1},{60,3,21,1,6,-1,1},{60,3,21,1,6,-1,1},{60,3,21,1,6,-1,1},{60,3,21,1,6,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1}}, + {{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,7,1,3,-1,1},{88,3,15,1,6,-1,1},{88,3,15,1,6,-1,1},{88,3,21,1,6,-1,1}}, + {{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,7,1,3,-1,1},{117,3,15,1,6,-1,1},{117,3,15,1,6,-1,1},{117,3,15,1,6,-1,1}}, + {{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,26,1,6,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1}}, + {{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,7,1,3,-1,1},{112,3,12,17,3,-1,1},{112,3,12,17,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{112,3,15,1,6,-1,1},{112,3,15,1,6,-1,1},{112,3,15,1,6,-1,1},{112,3,15,1,6,-1,1},{112,3,15,1,6,-1,1},{112,3,21,1,6,-1,1},{112,3,21,1,6,-1,1},{112,3,21,1,6,-1,1},{112,3,21,1,6,-1,1},{112,3,21,1,6,-1,1},{112,3,21,1,6,-1,1},{112,3,21,1,6,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1}}, + {{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1}}, + {{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{78,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{78,3,21,10,6,-1,1},{78,3,21,10,6,-1,1},{78,3,21,10,6,-1,1},{78,3,21,10,6,-1,1},{78,3,21,10,6,-1,1},{78,3,21,10,6,-1,1},{78,3,21,10,6,-1,1}}, + {{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{83,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{83,3,15,1,6,-1,1},{83,3,15,1,6,-1,1},{83,3,15,1,6,-1,1},{83,3,15,1,6,-1,1},{83,3,15,1,6,-1,1},{83,3,15,1,6,-1,1},{83,3,15,1,6,-1,1},{83,3,15,1,6,-1,1}}, + {{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{82,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{82,3,15,1,6,-1,1},{82,3,15,1,6,-1,1},{82,3,15,1,6,-1,1},{82,3,15,1,6,-1,1},{82,3,15,1,6,-1,1},{82,3,15,1,6,-1,1},{82,3,15,1,6,-1,1},{82,3,15,1,6,-1,1}}, + {{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{122,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{122,3,21,1,6,-1,1},{122,3,21,1,6,-1,1},{122,3,21,1,6,-1,1},{122,3,21,1,6,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1}}, + {{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{122,3,15,1,6,-1,1},{122,3,15,1,6,-1,1},{122,3,15,1,6,-1,1},{122,3,15,1,6,-1,1},{122,3,15,1,6,-1,1},{122,3,15,1,6,-1,1},{122,3,15,1,6,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1}}, + {{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1}}, + {{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{89,3,7,1,3,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1},{61,0,2,1,9,-1,1}}, + {{2,3,15,5,6,1,1},{2,3,15,5,6,2,1},{2,3,15,5,6,3,1},{2,3,15,5,6,4,1},{2,3,15,5,6,5,1},{2,3,15,5,6,6,1},{2,3,15,5,6,7,1},{2,3,15,5,6,8,1},{2,3,15,5,6,9,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{2,3,15,5,6,-1,1},{61,0,2,1,9,-1,1}}, + {{94,3,10,0,3,-1,1},{94,3,12,17,3,-1,1},{94,3,10,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1}}, + {{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,7,0,3,-1,1},{94,3,12,17,3,-1,1},{94,3,12,17,3,-1,1},{94,3,12,17,3,-1,1},{94,3,12,17,3,-1,1},{94,3,12,17,3,-1,1},{94,3,12,17,3,-1,1},{94,3,12,17,3,-1,1},{94,3,12,17,3,-1,1}}, + {{94,3,12,17,3,-1,1},{94,3,12,17,3,-1,1},{94,3,12,17,3,-1,1},{94,3,12,17,3,-1,1},{94,3,12,17,3,-1,1},{94,3,12,17,3,-1,1},{94,3,12,17,3,-1,1},{94,3,21,0,6,-1,1},{94,3,21,0,6,-1,1},{94,3,21,0,6,-1,1},{94,3,21,0,6,-1,1},{94,3,21,0,6,-1,1},{94,3,21,0,6,-1,1},{94,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{94,3,15,10,6,1,1},{94,3,15,10,6,2,1},{94,3,15,10,6,3,1},{94,3,15,10,6,4,1},{94,3,15,10,6,5,1},{94,3,15,10,6,6,1},{94,3,15,10,6,7,1},{94,3,15,10,6,8,1},{94,3,15,10,6,9,1},{94,3,15,10,6,-1,1},{94,3,15,10,6,-1,1},{94,3,15,10,6,-1,1},{94,3,15,10,6,-1,1},{94,3,15,10,6,-1,1}}, + {{94,3,15,10,6,-1,1},{94,3,15,10,6,-1,1},{94,3,15,10,6,-1,1},{94,3,15,10,6,-1,1},{94,3,15,10,6,-1,1},{94,3,15,10,6,-1,1},{94,3,13,0,3,0,1},{94,3,13,0,3,1,1},{94,3,13,0,3,2,1},{94,3,13,0,3,3,1},{94,3,13,0,3,4,1},{94,3,13,0,3,5,1},{94,3,13,0,3,6,1},{94,3,13,0,3,7,1},{94,3,13,0,3,8,1},{94,3,13,0,3,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{94,3,12,17,3,-1,1}}, + {{85,3,12,17,3,-1,1},{85,3,12,17,3,-1,1},{85,3,10,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1}}, + {{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,7,0,3,-1,1},{85,3,10,0,3,-1,1},{85,3,10,0,3,-1,1},{85,3,10,0,3,-1,1},{85,3,12,17,3,-1,1},{85,3,12,17,3,-1,1},{85,3,12,17,3,-1,1},{85,3,12,17,3,-1,1},{85,3,10,0,3,-1,1},{85,3,10,0,3,-1,1},{85,3,12,17,3,-1,1},{85,3,12,17,3,-1,1},{85,3,21,0,6,-1,1},{85,3,21,0,6,-1,1},{85,3,1,0,6,-1,1},{85,3,21,0,6,-1,1},{85,3,21,0,6,-1,1}}, + {{85,3,21,0,6,-1,1},{85,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1}}, + {{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{101,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{101,3,13,0,3,0,1},{101,3,13,0,3,1,1},{101,3,13,0,3,2,1},{101,3,13,0,3,3,1},{101,3,13,0,3,4,1},{101,3,13,0,3,5,1},{101,3,13,0,3,6,1},{101,3,13,0,3,7,1},{101,3,13,0,3,8,1},{101,3,13,0,3,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{96,3,12,17,4,-1,1},{96,3,12,17,4,-1,1},{96,3,12,17,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1}}, + {{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,7,0,4,-1,1},{96,3,12,17,4,-1,1},{96,3,12,17,4,-1,1},{96,3,12,17,4,-1,1},{96,3,12,17,4,-1,1},{96,3,12,17,4,-1,1},{96,3,10,0,4,-1,1},{96,3,12,17,4,-1,1},{96,3,12,17,4,-1,1},{96,3,12,17,4,-1,1},{96,3,12,17,4,-1,1},{96,3,12,17,4,-1,1},{96,3,12,17,4,-1,1},{96,3,12,17,4,-1,1},{96,3,12,17,4,-1,1},{61,0,2,0,9,-1,1},{96,3,13,0,4,0,1},{96,3,13,0,4,1,1},{96,3,13,0,4,2,1},{96,3,13,0,4,3,1},{96,3,13,0,4,4,1},{96,3,13,0,4,5,1},{96,3,13,0,4,6,1},{96,3,13,0,4,7,1},{96,3,13,0,4,8,1},{96,3,13,0,4,9,1}}, + {{96,3,21,0,6,-1,1},{96,3,21,0,6,-1,1},{96,3,21,0,6,-1,1},{96,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1}}, + {{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,7,0,3,-1,1},{111,3,12,17,3,-1,1},{111,3,21,0,6,-1,1},{111,3,21,0,6,-1,1},{111,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{100,3,12,17,3,-1,1},{100,3,12,17,3,-1,1},{100,3,10,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1}}, + {{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,10,0,3,-1,1},{100,3,10,0,3,-1,1},{100,3,10,0,3,-1,1},{100,3,12,17,3,-1,1},{100,3,12,17,3,-1,1},{100,3,12,17,3,-1,1},{100,3,12,17,3,-1,1},{100,3,12,17,3,-1,1},{100,3,12,17,3,-1,1},{100,3,12,17,3,-1,1},{100,3,12,17,3,-1,1},{100,3,12,17,3,-1,1},{100,3,10,0,3,-1,1}}, + {{100,3,10,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,7,0,3,-1,1},{100,3,21,0,6,-1,1},{100,3,21,0,6,-1,1},{100,3,21,0,6,-1,1},{100,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{100,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{100,3,13,0,3,0,1},{100,3,13,0,3,1,1},{100,3,13,0,3,2,1},{100,3,13,0,3,3,1},{100,3,13,0,3,4,1},{100,3,13,0,3,5,1},{100,3,13,0,3,6,1},{100,3,13,0,3,7,1},{100,3,13,0,3,8,1},{100,3,13,0,3,9,1},{100,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{33,3,15,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1}}, + {{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,7,0,3,-1,1},{108,3,10,0,3,-1,1},{108,3,10,0,3,-1,1},{108,3,10,0,3,-1,1},{108,3,12,17,3,-1,1},{108,3,12,17,3,-1,1},{108,3,12,17,3,-1,1},{108,3,10,0,3,-1,1},{108,3,10,0,3,-1,1},{108,3,12,17,3,-1,1},{108,3,10,0,3,-1,1},{108,3,12,17,3,-1,1},{108,3,12,17,3,-1,1},{108,3,21,0,6,-1,1},{108,3,21,0,6,-1,1},{108,3,21,0,6,-1,1},{108,3,21,0,6,-1,1},{108,3,21,0,6,-1,1},{108,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1}}, + {{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,7,0,3,-1,1},{109,3,12,17,3,-1,1}}, + {{109,3,10,0,3,-1,1},{109,3,10,0,3,-1,1},{109,3,10,0,3,-1,1},{109,3,12,17,3,-1,1},{109,3,12,17,3,-1,1},{109,3,12,17,3,-1,1},{109,3,12,17,3,-1,1},{109,3,12,17,3,-1,1},{109,3,12,17,3,-1,1},{109,3,12,17,3,-1,1},{109,3,12,17,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{109,3,13,0,3,0,1},{109,3,13,0,3,1,1},{109,3,13,0,3,2,1},{109,3,13,0,3,3,1},{109,3,13,0,3,4,1},{109,3,13,0,3,5,1},{109,3,13,0,3,6,1},{109,3,13,0,3,7,1},{109,3,13,0,3,8,1},{109,3,13,0,3,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{61,0,2,0,9,-1,1},{107,3,12,17,3,-1,1},{107,3,10,0,3,-1,1},{107,3,10,0,3,-1,1},{61,0,2,0,9,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1}}, + {{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{107,3,12,17,3,-1,1},{107,3,7,0,3,-1,1},{107,3,10,0,3,-1,1},{107,3,10,0,3,-1,1}}, + {{107,3,12,17,3,-1,1},{107,3,10,0,3,-1,1},{107,3,10,0,3,-1,1},{107,3,10,0,3,-1,1},{107,3,10,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{107,3,10,0,3,-1,1},{107,3,10,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{107,3,10,0,3,-1,1},{107,3,10,0,3,-1,1},{107,3,10,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{107,3,10,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1}}, + {{107,3,7,0,3,-1,1},{107,3,7,0,3,-1,1},{107,3,10,0,3,-1,1},{107,3,10,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{107,3,12,17,3,-1,1},{107,3,12,17,3,-1,1},{107,3,12,17,3,-1,1},{107,3,12,17,3,-1,1},{107,3,12,17,3,-1,1},{107,3,12,17,3,-1,1},{107,3,12,17,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{107,3,12,17,3,-1,1},{107,3,12,17,3,-1,1},{107,3,12,17,3,-1,1},{107,3,12,17,3,-1,1},{107,3,12,17,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1}}, + {{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,10,0,3,-1,1},{124,3,10,0,3,-1,1},{124,3,10,0,3,-1,1},{124,3,12,17,3,-1,1},{124,3,12,17,3,-1,1},{124,3,12,17,3,-1,1},{124,3,12,17,3,-1,1},{124,3,12,17,3,-1,1},{124,3,12,17,3,-1,1},{124,3,10,0,3,-1,1},{124,3,12,17,3,-1,1},{124,3,10,0,3,-1,1},{124,3,10,0,3,-1,1},{124,3,10,0,3,-1,1},{124,3,10,0,3,-1,1},{124,3,12,17,3,-1,1}}, + {{124,3,12,17,3,-1,1},{124,3,10,0,3,-1,1},{124,3,12,17,3,-1,1},{124,3,12,17,3,-1,1},{124,3,7,0,3,-1,1},{124,3,7,0,3,-1,1},{124,3,21,0,6,-1,1},{124,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{124,3,13,0,3,0,1},{124,3,13,0,3,1,1},{124,3,13,0,3,2,1},{124,3,13,0,3,3,1},{124,3,13,0,3,4,1},{124,3,13,0,3,5,1},{124,3,13,0,3,6,1},{124,3,13,0,3,7,1},{124,3,13,0,3,8,1},{124,3,13,0,3,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0}}, + {{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,7,0,3,-1,0},{123,3,10,0,3,-1,0},{123,3,10,0,3,-1,0},{123,3,10,0,3,-1,0},{123,3,12,17,3,-1,0},{123,3,12,17,3,-1,0},{123,3,12,17,3,-1,0},{123,3,12,17,3,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{123,3,10,0,3,-1,0},{123,3,10,0,3,-1,0},{123,3,10,0,3,-1,0},{123,3,10,0,3,-1,0},{123,3,12,17,3,-1,0},{123,3,12,17,3,-1,0},{123,3,10,0,3,-1,0},{123,3,12,17,3,-1,0}}, + {{123,3,12,17,3,-1,0},{123,3,21,0,6,-1,0},{123,3,21,0,6,-1,0},{123,3,21,0,6,-1,0},{123,3,21,0,6,-1,0},{123,3,21,0,6,-1,0},{123,3,21,0,6,-1,0},{123,3,21,0,6,-1,0},{123,3,21,0,6,-1,0},{123,3,21,0,6,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0},{61,0,2,0,9,-1,0}}, + {{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1}}, + {{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,7,0,3,-1,1},{114,3,10,0,3,-1,1},{114,3,10,0,3,-1,1},{114,3,10,0,3,-1,1},{114,3,12,17,3,-1,1},{114,3,12,17,3,-1,1},{114,3,12,17,3,-1,1},{114,3,12,17,3,-1,1},{114,3,12,17,3,-1,1},{114,3,12,17,3,-1,1},{114,3,12,17,3,-1,1},{114,3,12,17,3,-1,1},{114,3,10,0,3,-1,1},{114,3,10,0,3,-1,1},{114,3,12,17,3,-1,1},{114,3,10,0,3,-1,1},{114,3,12,17,3,-1,1}}, + {{114,3,12,17,3,-1,1},{114,3,21,0,6,-1,1},{114,3,21,0,6,-1,1},{114,3,21,0,6,-1,1},{114,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{114,3,13,0,3,0,1},{114,3,13,0,3,1,1},{114,3,13,0,3,2,1},{114,3,13,0,3,3,1},{114,3,13,0,3,4,1},{114,3,13,0,3,5,1},{114,3,13,0,3,6,1},{114,3,13,0,3,7,1},{114,3,13,0,3,8,1},{114,3,13,0,3,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1}}, + {{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,7,0,3,-1,1},{102,3,12,17,3,-1,1},{102,3,10,0,3,-1,1},{102,3,12,17,3,-1,1},{102,3,10,0,3,-1,1},{102,3,10,0,3,-1,1},{102,3,12,17,3,-1,1},{102,3,12,17,3,-1,1},{102,3,12,17,3,-1,1},{102,3,12,17,3,-1,1},{102,3,12,17,3,-1,1},{102,3,12,17,3,-1,1},{102,3,10,0,3,-1,1},{102,3,12,17,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{102,3,13,0,3,0,1},{102,3,13,0,3,1,1},{102,3,13,0,3,2,1},{102,3,13,0,3,3,1},{102,3,13,0,3,4,1},{102,3,13,0,3,5,1},{102,3,13,0,3,6,1},{102,3,13,0,3,7,1},{102,3,13,0,3,8,1},{102,3,13,0,3,9,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1},{125,3,9,0,3,-1,1}}, + {{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1},{125,3,5,0,3,-1,1}}, + {{125,3,13,0,3,0,1},{125,3,13,0,3,1,1},{125,3,13,0,3,2,1},{125,3,13,0,3,3,1},{125,3,13,0,3,4,1},{125,3,13,0,3,5,1},{125,3,13,0,3,6,1},{125,3,13,0,3,7,1},{125,3,13,0,3,8,1},{125,3,13,0,3,9,1},{125,3,15,0,6,-1,1},{125,3,15,0,6,-1,1},{125,3,15,0,6,-1,1},{125,3,15,0,6,-1,1},{125,3,15,0,6,-1,1},{125,3,15,0,6,-1,1},{125,3,15,0,6,-1,1},{125,3,15,0,6,-1,1},{125,3,15,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{125,3,7,0,3,-1,1}}, + {{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1}}, + {{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{121,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1}}, + {{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{63,3,7,0,3,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1}}, + {{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{63,3,14,0,3,-1,1},{61,0,2,0,9,-1,1},{63,3,21,0,6,-1,1},{63,3,21,0,6,-1,1},{63,3,21,0,6,-1,1},{63,3,21,0,6,-1,1},{63,3,21,0,6,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1},{61,0,2,0,9,-1,1}}, + {{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0}}, + {{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{80,3,7,0,3,-1,0},{