CombinedText stringlengths 4 3.42M |
|---|
package fl.controls
{
import fl.controls.TextInput;
import fl.controls.TextArea;
import fl.core.InvalidationType;
import fl.core.UIComponent;
import fl.events.ComponentEvent;
import fl.managers.IFocusManager;
import fl.managers.IFocusManagerComponent;
import flash.display.DisplayObject;
import flash.events.Event;
import flash.events.TextEvent;
import flash.events.Event;
import flash.events.FocusEvent;
import flash.events.KeyboardEvent;
import flash.system.IME;
import flash.text.TextField;
import flash.text.TextFieldType;
import flash.text.TextFormat;
import flash.text.TextLineMetrics;
import flash.ui.Keyboard;
/**
* Dispatched when user input changes text in the TextInput component.
*
* <p><strong>Note:</strong> This event does not occur if ActionScript
* is used to change the text.</p>
*
* @eventType flash.events.Event.CHANGE
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
[Event(name="change", type="flash.events.Event")]
/**
* Dispatched when the user presses the Enter key.
*
* @eventType fl.events.ComponentEvent.ENTER
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
[Event(name="enter", type="fl.events.ComponentEvent")]
/**
* Dispatched when the user inputs text.
*
* @eventType flash.events.TextEvent.TEXT_INPUT
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
[Event(name="textInput", type="flash.events.TextEvent")]
/**
* The name of the class to use as a background for the TextInput
* component.
*
* @default TextInput_upSkin
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
[Style(name="upSkin", type="Class")]
/**
* The padding that separates the component border from the text, in pixels.
*
* @default 0
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
[Style(name="textPadding", type="Number", format="Length")]
/**
* The name of the class to use as a background for the TextInput
* component when its <code>enabled</code> property is set to <code>false</code>.
*
* @default TextInput_disabledSkin
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
[Style(name="disabledSkin", type="Class")]
/**
* @copy fl.controls.LabelButton#style:embedFonts
*
* @default false
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
[Style(name="embedFonts", type="Boolean")]
/**
* The TextInput component is a single-line text component that
* contains a native ActionScript TextField object.
*
* <p>A TextInput component can be enabled or disabled in an application.
* When the TextInput component is disabled, it cannot receive input
* from mouse or keyboard. An enabled TextInput component implements focus,
* selection, and navigation like an ActionScript TextField object.</p>
*
* <p>You can use styles to customize the TextInput component by
* changing its appearance--for example, when it is disabled.
* Some other customizations that you can apply to this component
* include formatting it with HTML or setting it to be a
* password field whose text must be hidden. </p>
*
* @includeExample examples/TextInputExample.as
*
* @see TextArea
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public class TextInput extends UIComponent implements IFocusManagerComponent
{
/**
* A reference to the internal text field of the TextInput component.
*
* @includeExample examples/TextInput.textField.1.as -noswf
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public var textField : TextField;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected var _editable : Boolean;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected var background : DisplayObject;
/**
* @private (protected)
*/
protected var _html : Boolean;
/**
* @private (protected)
*/
protected var _savedHTML : String;
/**
* @private
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
private static var defaultStyles : Object;
/**
* @private
*
* The method to be used to create the Accessibility class.
* This method is called from UIComponent.
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public static var createAccessibilityImplementation : Function;
/**
* Gets or sets a string which contains the text that is currently in
* the TextInput component. This property contains text that is unformatted
* and does not have HTML tags. To retrieve this text formatted as HTML, use
* the <code>htmlText</code> property.
*
* @default ""
*
* @see #htmlText
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get text () : String;
/**
* @private (setter)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function set text (value:String) : void;
/**
* @copy fl.core.UIComponent#enabled
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get enabled () : Boolean;
/**
* @private (setter)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function set enabled (value:Boolean) : void;
/**
* @copy fl.controls.TextArea#imeMode
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get imeMode () : String;
/**
* @private (protected)
*/
public function set imeMode (value:String) : void;
/**
* Gets or sets a Boolean value that indicates how a selection is
* displayed when the text field does not have focus.
*
* <p>When this value is set to <code>true</code> and the text field does
* not have focus, Flash Player highlights the selection in the text field
* in gray. When this value is set to <code>false</code> and the text field
* does not have focus, Flash Player does not highlight the selection in the
* text field.</p>
*
* @default false
*
* @includeExample examples/TextInput.setSelection.2.as -noswf
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get alwaysShowSelection () : Boolean;
/**
* @private (setter)
*/
public function set alwaysShowSelection (value:Boolean) : void;
/**
* Gets or sets a Boolean value that indicates whether the text field
* can be edited by the user. A value of <code>true</code> indicates
* that the user can edit the text field; a value of <code>false</code>
* indicates that the user cannot edit the text field.
*
* @default true
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get editable () : Boolean;
/**
* @private (setter)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function set editable (value:Boolean) : void;
/**
* Gets or sets the position of the thumb of the horizontal scroll bar.
*
* @default 0
*
* @includeExample examples/TextInput.horizontalScrollPosition.1.as -noswf
*
* @see #maxHorizontalScrollPosition
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get horizontalScrollPosition () : int;
/**
* @private (setter)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function set horizontalScrollPosition (value:int) : void;
/**
* Gets a value that describes the furthest position to which the text
* field can be scrolled to the right.
*
* @default 0
*
* @see #horizontalScrollPosition
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get maxHorizontalScrollPosition () : int;
/**
* Gets the number of characters in a TextInput component.
*
* @default 0
*
* @includeExample examples/TextInput.maxChars.1.as -noswf
*
* @see #maxChars
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get length () : int;
/**
* Gets or sets the maximum number of characters that a user can enter
* in the text field.
*
* @default 0
*
* @includeExample examples/TextInput.maxChars.1.as -noswf
*
* @see #length
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get maxChars () : int;
/**
* @private (setter)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function set maxChars (value:int) : void;
/**
* Gets or sets a Boolean value that indicates whether the current TextInput
* component instance was created to contain a password or to contain text. A value of
* <code>true</code> indicates that the component instance is a password text
* field; a value of <code>false</code> indicates that the component instance
* is a normal text field.
*
* <p>When this property is set to <code>true</code>, for each character that the
* user enters into the text field, the TextInput component instance displays an asterisk.
* Additionally, the Cut and Copy commands and their keyboard shortcuts are
* disabled. These measures prevent the recovery of a password from an
* unattended computer.</p>
*
* @default false
*
* @includeExample examples/TextInput.displayAsPassword.1.as -noswf
*
* @see flash.text.TextField#displayAsPassword TextField.displayAsPassword
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get displayAsPassword () : Boolean;
/**
* @private (setter)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function set displayAsPassword (value:Boolean) : void;
/**
* Gets or sets the string of characters that the text field accepts from a user.
* Note that characters that are not included in this string are accepted in the
* text field if they are entered programmatically.
*
* <p>The characters in the string are read from left to right. You can specify a
* character range by using the hyphen (-) character. </p>
*
* <p>If the value of this property is null, the text field accepts all characters.
* If this property is set to an empty string (""), the text field accepts no characters.</p>
*
* <p>If the string begins with a caret (^) character, all characters are initially
* accepted and succeeding characters in the string are excluded from the set of
* accepted characters. If the string does not begin with a caret (^) character,
* no characters are initially accepted and succeeding characters in the string
* are included in the set of accepted characters.</p>
*
* @default null
*
* @see flash.text.TextField#restrict TextField.restrict
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get restrict () : String;
/**
* @private (setter)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function set restrict (value:String) : void;
/**
* Gets the index value of the first selected character in a selection
* of one or more characters.
*
* <p>The index position of a selected character is zero-based and calculated
* from the first character that appears in the text area. If there is no
* selection, this value is set to the position of the caret.</p>
*
* @default 0
*
* @includeExample examples/TextInput.selectionBeginIndex.1.as -noswf
*
* @see #selectionEndIndex
* @see #setSelection()
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get selectionBeginIndex () : int;
/**
* Gets the index position of the last selected character in a selection
* of one or more characters.
*
* <p>The index position of a selected character is zero-based and calculated
* from the first character that appears in the text area. If there is no
* selection, this value is set to the position of the caret.</p>
*
* @default 0
*
* @see #selectionBeginIndex
* @see #setSelection()
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get selectionEndIndex () : int;
/**
* Gets or sets a Boolean value that indicates whether extra white space is
* removed from a TextInput component that contains HTML text. Examples
* of extra white space in the component include spaces and line breaks.
* A value of <code>true</code> indicates that extra
* white space is removed; a value of <code>false</code> indicates that extra
* white space is not removed.
*
* <p>This property affects only text that is set by using the <code>htmlText</code>
* property; it does not affect text that is set by using the <code>text</code> property.
* If you use the <code>text</code> property to set text, the <code>condenseWhite</code>
* property is ignored.</p>
*
* <p>If the <code>condenseWhite</code> property is set to <code>true</code>, you
* must use standard HTML commands, such as <br> and <p>, to place line
* breaks in the text field.</p>
*
* @default false
*
* @see flash.text.TextField#condenseWhite TextField.condenseWhite
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get condenseWhite () : Boolean;
/**
* @private (setter)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function set condenseWhite (value:Boolean) : void;
/**
* Contains the HTML representation of the string that the text field contains.
*
* @default ""
*
* @includeExample examples/TextInput.htmlText.1.as -noswf
*
* @see #text
* @see flash.text.TextField#htmlText
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get htmlText () : String;
/**
* @private (setter)
*/
public function set htmlText (value:String) : void;
/**
* The height of the text, in pixels.
*
* @default 0
*
* @see #textWidth
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*
* @internal [kenos] What is the "height" of the text? Is this the vertical size of the text field that contains the text?
* Same for the textWidth property below.
*/
public function get textHeight () : Number;
/**
* The width of the text, in pixels.
*
* @default 0
*
* @includeExample examples/TextInput.textWidth.1.as -noswf
*
* @see #textHeight
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function get textWidth () : Number;
/**
* @copy fl.core.UIComponent#getStyleDefinition()
*
* @includeExample ../core/examples/UIComponent.getStyleDefinition.1.as -noswf
*
* @see fl.core.UIComponent#getStyle()
* @see fl.core.UIComponent#setStyle()
* @see fl.managers.StyleManager
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public static function getStyleDefinition () : Object;
/**
* Creates a new TextInput component instance.
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function TextInput ();
/**
* @copy fl.core.UIComponent#drawFocus()
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function drawFocus (draw:Boolean) : void;
/**
* Sets the range of a selection made in a text area that has focus.
* The selection range begins at the index that is specified by the start
* parameter, and ends at the index that is specified by the end parameter.
* If the parameter values that specify the selection range are the same,
* this method sets the text insertion point in the same way that the
* <code>caretIndex</code> property does.
*
* <p>The selected text is treated as a zero-based string of characters in which
* the first selected character is located at index 0, the second
* character at index 1, and so on.</p>
*
* <p>This method has no effect if the text field does not have focus.</p>
*
* @param beginIndex The index location of the first character in the selection.
*
* @param endIndex The index location of the last character in the selection.
*
* @includeExample examples/TextInput.setSelection.1.as -noswf
* @includeExample examples/TextInput.setSelection.2.as -noswf
*
* @see #selectionBeginIndex
* @see #selectionEndIndex
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function setSelection (beginIndex:int, endIndex:int) : void;
/**
* Retrieves information about a specified line of text.
*
* @param lineIndex The line number for which information is to be retrieved.
*
* @includeExample examples/TextInput.getLineMetrics.1.as -noswf
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function getLineMetrics (index:int) : TextLineMetrics;
/**
* Appends the specified string after the last character that the TextArea
* contains. This method is more efficient than concatenating two strings
* by using an addition assignment on a text property; for example,
* <code>myTextArea.text += moreText</code>. This method is particularly
* useful when the TextArea component contains a significant amount of
* content.
*
* @param text The string to be appended to the existing text.
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function appendText (text:String) : void;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected function updateTextFieldType () : void;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected function handleKeyDown (event:KeyboardEvent) : void;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected function handleChange (event:Event) : void;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected function handleTextInput (event:TextEvent) : void;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected function setEmbedFont ();
/**
* @private (protected)
*/
protected function draw () : void;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected function drawBackground () : void;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected function drawTextFormat () : void;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected function drawLayout () : void;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected function configUI () : void;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function setFocus () : void;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected function isOurFocus (target:DisplayObject) : Boolean;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected function focusInHandler (event:FocusEvent) : void;
/**
* @private (protected)
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
protected function focusOutHandler (event:FocusEvent) : void;
}
}
|
package kabam.rotmg.classes.services {
import com.company.assembleegameclient.ui.dialogs.ErrorDialog;
import kabam.lib.tasks.BaseTask;
import kabam.rotmg.account.core.Account;
import kabam.rotmg.appengine.api.AppEngineClient;
import kabam.rotmg.classes.model.CharacterSkin;
import kabam.rotmg.classes.model.CharacterSkinState;
import kabam.rotmg.core.model.PlayerModel;
import kabam.rotmg.dialogs.control.OpenDialogSignal;
public class BuySkinTask extends BaseTask {
[Inject]
public var skin:CharacterSkin;
[Inject]
public var client:AppEngineClient;
[Inject]
public var account:Account;
[Inject]
public var player:PlayerModel;
[Inject]
public var openDialog:OpenDialogSignal;
override protected function startTask():void {
this.skin.setState(CharacterSkinState.PURCHASING);
this.player.changeCredits(-(this.skin.cost));
this.client.complete.addOnce(this.onComplete);
this.client.sendRequest("account/purchaseSkin", this.makeCredentials());
}
private function makeCredentials():Object {
var _local1:Object = this.account.getCredentials();
_local1.skinType = this.skin.id;
return (_local1);
}
private function onComplete(_arg1:Boolean, _arg2:*):void {
if (_arg1) {
this.completePurchase();
}
else {
this.abandonPurchase(_arg2);
}
completeTask(_arg1, _arg2);
}
private function completePurchase():void {
this.skin.setState(CharacterSkinState.OWNED);
this.skin.setIsSelected(true);
}
private function abandonPurchase(_arg1:String):void {
var _local2:ErrorDialog = new ErrorDialog(_arg1);
this.openDialog.dispatch(_local2);
this.skin.setState(CharacterSkinState.PURCHASABLE);
this.player.changeCredits(this.skin.cost);
}
}
}
|
package gs.util
{
import flash.display.Stage;
import flash.text.TextField;
import flash.text.TextFormat;
/**
* The TextFieldUtils class contains utility methods for common operations with TextFields.
*/
final public class TextFieldUtils
{
/**
* Create a TextField.
*
* @param selectable Whether or not the new text field should be selectable.
* @param multiline Whether or not the new text field is multiline.
* @param border Whether or not to show the 1 px black border around the new textfield.
* @param embedFonts Whether or not to embed fonts.
* @param autoSize The autosize value.
*/
public static function create(selectable:Boolean=false,multiline:Boolean=false,border:Boolean=false,embedFonts:Boolean=false,autoSize:String='left'):TextField
{
var tf:TextField=new TextField();
tf.selectable=selectable;
tf.multiline=multiline;
tf.border=border;
tf.embedFonts=embedFonts;
tf.autoSize=autoSize;
return tf;
}
/**
* Sets the <em><code>TextField</code></em> leading formatting.
*
* @param tf The textfield.
* @param space The leading space.
*/
public static function setLeading(tf:TextField,space:Number=0):void
{
if(!tf)throw new ArgumentError("Parameter {tf} cannot be null");
var fmt:TextFormat=tf.getTextFormat();
fmt.leading=space;
tf.setTextFormat(fmt);
}
/**
* Restrict a text field to email only characters.
*
* @param tf The text field to restrict.
*/
public static function restrictToEmail(tf:TextField):void
{
if(!tf)throw new ArgumentError("Parameter {tf} cannot be null");
tf.restrict="a-zA-Z0-9@._-";
}
/**
* Restrict a text field to a list of emails (emails with "," or " ").
*
* @param tf The text field to restrict.
*/
public static function restrictToListOfEmails(tf:TextField):void
{
if(!tf)throw new ArgumentError("Parameter {tf} cannot be null");
tf.restrict=" \,a-zA-Z0-9@._-";
}
/**
* Restrict a text field to file path only characters (win|unix).
*
* @param tf The text field to restrict.
*/
public static function restrictToFilePath(tf:TextField):void
{
if(!tf)throw new ArgumentError("Parameter {tf} cannot be null");
tf.restrict="a-zA-Z0-9./\ ";
}
/**
* Restrict a text field to class path characters only (a-zA-Z0-9_.).
*
* @param tf The text field to restrict.
*/
public static function restrictToClassPaths(tf:TextField):void
{
if(!tf)throw new ArgumentError("Parameter {tf} cannot be null");
tf.restrict="a-zA-Z0-9_.";
}
/**
* Restrict a text field to file URI format only (file:///).
*/
public static function restrictToFilURI(tf:TextField):void
{
if(!tf)throw new ArgumentError("Parameter {tf} cannot be null");
tf.restrict="a-zA-Z0-9";
}
/**
* Restrict a text field to letters (lower/upper) and numbers only.
*
* @param tf The text field to restrict.
*/
public static function restrictLettersAndNumbers(tf:TextField):void
{
if(!tf)throw new ArgumentError("Parameter {tf} cannot be null");
tf.restrict="a-zA-Z0-9";
}
/**
* Select all the text in a text field.
*
* @param tf The TextField to select all in.
*/
public static function selectAll(tf:TextField):void
{
if(!tf)throw new ArgumentError("Parameter {tf} cannot be null");
tf.setSelection(0,tf.length);
}
/**
* Deselect a text field.
*
* @param tf The TextField to deselect.
*/
public static function deselect(tf:TextField):void
{
if(!tf)throw new ArgumentError("Parameter {tf} cannot be null");
tf.setSelection(0,0);
}
/**
* Set the stage focus to the target text field and select all text in it.
*
* @param stage The stage instance.
* @param tf The text field.
*/
public static function focusAndSelectAll(stage:Stage,tf:TextField):void
{
if(!stage)throw new ArgumentError("Parameter {stage} cannot be null");
if(!tf)throw new ArgumentError("Parameter {tf} cannot be null");
stage.focus=tf;
selectAll(tf);
}
/**
* Restrict the text field to lower case, upper case,
* and spaces.
*/
public static function restrictLowerUpperAndSpace(tf:TextField):void
{
tf.restrict="a-zA-Z ";
}
}
} |
/**
* The MIT License
*
* Copyright (c) 2010 VW
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.vwonderland.common
{
import flash.display.Stage;
/**
* Singleton Stage를 정의하여, 모든 위치에서 stage에 접근할 수 있는 공통된 경로를 제공합니다.
* @example Basic usage:<listing version="3.0">
SingletonStage.getInstance().setStage(this.stage); //Singleton Stage setting
trace(SingletonStage.getInstance().getStage()); //Singlton Stage 참조
trace(SingletonStage.getInstance().getStage().stageWidth); //Singlton Stage의 stageWidth 참조
* </listing>
* @langversion ActionScript 3.0
* @playerversion Flash 9.0
* @author VW, http://www.v-wonderland.com
* @since 22.07.2010
*/
public class SingletonStage
{
static private var _instance:SingletonStage=new SingletonStage();
static private var _stage:Stage;
/**
* SingletonStage 객체 생성시, Stage.getInstance()를 사용해야 합니다. SingletonStage은 Singlton pattern으로 관리됩니다.
* @throws Error
*/
public function SingletonStage()
{
if (_instance) throw new Error("[com.vwonderland.util.SingletonStage] SingletonStage instance 생성시, Stage.getInstance()를 사용해야 합니다. ");
}
/**
* SingletonStage 객체를 반환합니다.
* @return
*/
static public function getInstance():SingletonStage
{
return SingletonStage._instance;
}
/**
* SingletonStage 객체 내부의 Stage를 정의합니다.
* @param _targetStage
* @see #getStage()
*/
public function setStage(_targetStage:Stage):void
{
trace("[com.vwonderland.util.SingletonStage] SingletonStage._stage가 새롭게 정의되었습니다.");
_stage=_targetStage;
}
/**
* SingletonStage 객체 내부에 정의된 Stage를 반환합니다.
* @return
* @see #setStage()
*/
public function getStage():Stage
{
return _stage;
}
}
} |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package mx.automation
{
import flash.events.IEventDispatcher;
import flash.events.KeyboardEvent;
import flash.events.MouseEvent;
/**
* The IAutomationObjectHelper interface defines
* helper methods for IAutomationObjects.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public interface IAutomationObjectHelper
{
/**
* Creates an id for a given child within a parent.
*
* @param parent Parent of object for which to create and id.
*
* @param child Object for which to create an id.
*
* @param automationNameCallback A user-supplied function used
* to determine the child's <code>automationName</code>.
*
* @param automationIndexCallback A user-supplied function used
* to determine the child's <code>automationIndex</code>.
*
* @return An AutomationIDPart object representing the child within the parent.
*
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function helpCreateIDPart(parent:IAutomationObject,
child:IAutomationObject,
automationNameCallback:Function = null,
automationIndexCallback:Function = null):AutomationIDPart;
/**
* Creates an id for a given child within a parent.
*
* @param parent Parent of object for which to create and id.
*
* @param child Object for which to create an id.
*
* @param properties which needs to be considered for creating the id.
*
* @param automationNameCallback A user-supplied function used
* to determine the child's <code>automationName</code>.
*
* @param automationIndexCallback A user-supplied function used
* to determine the child's <code>automationIndex</code>.
*
* @return An AutomationIDPart object representing the child within the parent.
*
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function helpCreateIDPartWithRequiredProperties(parent:IAutomationObject,
child:IAutomationObject,
properties:Array,
automationNameCallback:Function = null,
automationIndexCallback:Function = null):AutomationIDPart;
/**
* Returns an Array of children within a parent which match the id.
*
* @param parent Parent object under which the id needs to be resolved.
*
* @param part AutomationIDPart object representing the child.
*
* @return Array of children which match the id of <code>part</code>.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function helpResolveIDPart(parent:IAutomationObject,
part:Object):Array;
/**
* Dispatches a <code>KeyboardEvent.KEY_DOWN</code> and
* <code>KeyboardEvent.KEY_UP</code> event
* for the specified KeyboardEvent object.
*
* @param to Event dispatcher.
*
* @param event Keyboard event.
*
* @return <code>true</code> if the events were dispatched.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function replayKeyboardEvent(to:IEventDispatcher, event:KeyboardEvent):Boolean;
/**
* Dispatches a <code>KeyboardEvent.KEY_DOWN</code> and
* <code>KeyboardEvent.KEY_UP</code> event
* from the specified IInteractionReplayer, for the specified key, with the
* specified modifiers.
*
* @param keyCode Key code for key pressed.
*
* @param ctrlKey Boolean indicating whether Ctrl key pressed.
*
* @param ctrlKey Boolean indicating whether Shift key pressed.
*
* @param ctrlKey Boolean indicating whether Alt key pressed.
*
* @return <code>true</code> if the events were dispatched.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function replayKeyDownKeyUp(to:IEventDispatcher,
keyCode:uint,
ctrlKey:Boolean = false,
shiftKey:Boolean = false,
altKey:Boolean = false):Boolean;
/**
* Dispatches a MouseEvent while simulating mouse capture.
*
* @param target Event dispatcher.
*
* @param event Mouse event.
*
* @return <code>true</code> if the event was dispatched.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function replayMouseEvent(target:IEventDispatcher, event:MouseEvent):Boolean;
/**
* Dispatches a <code>MouseEvent.MOUSE_DOWN</code>, <code>MouseEvent.MOUSE_UP</code>,
* and <code>MouseEvent.CLICK</code> from the specified IInteractionReplayer with the
* specified modifiers.
*
* @param to Event dispatcher.
*
* @param sourceEvent Mouse event.
*
* @return <code>true</code> if the events were dispatched.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function replayClick(to:IEventDispatcher, sourceEvent:MouseEvent = null):Boolean;
/**
* Replays a <code>click</code> event outside of the main drawing area.
* use this method to simulate the <code>mouseDownOutside</code> event.
*
* @return <code>true</code> if the event was dispatched.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function replayClickOffStage():Boolean;
/**
* Indicates whether recording is taking place, <code>true</code>,
* or not, <code>false</code>.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function get recording():Boolean;
/**
* Indicates whether replay is taking place, <code>true</code>,
* or not, <code>false</code>.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function get replaying():Boolean;
/**
* Adds a synchronization object to the automation manager.
* The automation manager waits until the <code>isComplete</code> method
* returns <code>true</code>
* before proceeding with the next replay event.
*
* @param isComplete Function that indicates whether the synchronized
* operation is completed.
*
* @param target If null, all replay is stalled until
* the <code>isComplete</code> method returns <code>true</code>,
* otherwise the automation manager will only wait
* if the next operation is on the target.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function addSynchronization(isComplete:Function,
target:Object = null):void;
/**
* Determines whether an object is a composite or not.
* If an object is not reachable through the automation APIs
* from the top application then it is considered to be a composite.
*
* @param obj The object.
*
* @return <code>true</code> if the object is a composite.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function isAutomationComposite(obj:IAutomationObject):Boolean;
/**
* Returns the parent of the composite object.
*
* @param obj Composite object.
*
* @return The parent IAutomationObject of the composite object.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function getAutomationComposite(obj:IAutomationObject):IAutomationObject;
}
}
|
/*
* PROJECT: FLARToolKit
* --------------------------------------------------------------------------------
* This work is based on the NyARToolKit developed by
* R.Iizuka (nyatla)
* http://nyatla.jp/nyatoolkit/
*
* The FLARToolKit is ActionScript 3.0 version ARToolkit class library.
* Copyright (C)2008,2009 Saqoosha
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this framework; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* For further information please contact.
* http://www.libspark.org/wiki/saqoosha/FLARToolKit
* <saq(at)saqoosha.net>
*
*/
package org.libspark.flartoolkit.support.sandy {
import org.libspark.flartoolkit.core.transmat.FLARTransMatResult;
import sandy.core.data.*;
import sandy.core.scenegraph.*;
/**
* @author Makc the Great
* @url http://makc3d.wordpress.com/
*/
public class FLARBaseNode extends TransformGroup {
public function FLARBaseNode() {
super();
}
public function setTransformMatrix(r:FLARTransMatResult):void {
var m:Matrix4 = new Matrix4;
m.n11 = r.m01; m.n12 = r.m00; m.n13 = r.m02; m.n14 = r.m03;
m.n21 = -r.m11; m.n22 = -r.m10; m.n23 = -r.m12; m.n24 = -r.m13;
m.n31 = r.m21; m.n32 = r.m20; m.n33 = r.m22; m.n34 = r.m23;
resetCoords (); matrix = m;
// update scales?
scaleX = Math.sqrt(m.n11 * m.n11 + m.n21 * m.n21 + m.n31 * m.n31);
scaleY = Math.sqrt(m.n12 * m.n12 + m.n22 * m.n22 + m.n32 * m.n32);
scaleZ = Math.sqrt(m.n13 * m.n13 + m.n23 * m.n23 + m.n33 * m.n33);
}
}
} |
package com.pblabs.engine.debug
{
import flash.display.BitmapData;
import flash.geom.Point;
import flash.text.TextField;
import flash.text.TextFormat;
/**
* Helper class to cache glyphs as bitmaps and draw them fast, with color.
* @author beng
*
*/
public class GlyphCache
{
function GlyphCache()
{
// Set up the text field.
_textField.setTextFormat(_textFormat);
_textField.defaultTextFormat = _textFormat;
}
public function drawLineToBitmap(line:String, x:int, y:int, color:uint, renderTarget:BitmapData):int
{
// Get the color bitmap.
if(!_colorCache[color])
_colorCache[color] = new BitmapData(128, 128, false, color);
const colorBitmap:BitmapData = _colorCache[color] as BitmapData;
// Keep track of current pos.
var curPos:Point = new Point(x, y);
var linesConsumed:int = 1;
// Get each character.
const glyphCount:int = line.length;
for(var i:int=0; i<glyphCount; i++)
{
const char:int = line.charCodeAt(i);
// Special cases...
if(char == 10)
{
// New line!
curPos.x = x;
curPos.y += 16;
linesConsumed++;
continue;
}
// Draw the glyph.
const glyph:Glyph = getGlyph(char);
renderTarget.copyPixels(colorBitmap, glyph.rect, curPos, glyph.bitmap, null, true);
// Update position.
curPos.x += glyph.rect.width - 1;
}
return linesConsumed;
}
protected function getGlyph(charCode:int):Glyph
{
if(_glyphCache[charCode] == null)
{
// Generate glyph.
var newGlyph:Glyph = new Glyph();
_textField.text = String.fromCharCode(charCode);
newGlyph.bitmap = new BitmapData(_textField.textWidth + 1, 16, true, 0x0);
newGlyph.bitmap.draw(_textField);
newGlyph.rect = newGlyph.bitmap.rect;
// Store it in cache.
_glyphCache[charCode ] = newGlyph;
}
return _glyphCache[charCode] as Glyph;
}
public function getLineHeight():int
{
// Do some tall characters.
_textField.text = "HPI";
return _textField.getLineMetrics(0).height;
}
protected const _textFormat:TextFormat = new TextFormat("_typewriter", 11, 0xDDDDDD);
protected const _textField:TextField = new TextField();
protected const _glyphCache:Array = [];
protected const _colorCache:Array = [];
}
}
import flash.display.BitmapData;
import flash.geom.Rectangle;
class Glyph
{
public var rect:Rectangle;
public var bitmap:BitmapData;
}
|
/**
* ObjectIdentifier
*
* An ASN1 type for an ObjectIdentifier
* We store the oid in an Array.
* Copyright (c) 2007 Henri Torgemane
*
* See LICENSE.txt for full license information.
*/
package com.hurlant.util.der
{
import flash.utils.ByteArray;
public class ObjectIdentifier implements IAsn1Type
{
private var type:uint;
private var len:uint;
private var oid:Array;
public function ObjectIdentifier(type:uint, length:uint, b:*) {
this.type = type;
this.len = length;
if (b is ByteArray) {
parse(b as ByteArray);
} else if (b is String) {
generate(b as String);
} else {
throw new Error("Invalid call to new ObjectIdentifier");
}
}
private function generate(s:String):void {
oid = s.split(".");
}
private function parse(b:ByteArray):void {
// parse stuff
// first byte = 40*value1 + value2
var o:uint = b.readUnsignedByte();
var a:Array = []
a.push(uint(o/40));
a.push(uint(o%40));
var v:uint = 0;
while (b.bytesAvailable>0) {
o = b.readUnsignedByte();
var last:Boolean = (o&0x80)==0;
o &= 0x7f;
v = v*128 + o;
if (last) {
a.push(v);
v = 0;
}
}
oid = a;
}
public function getLength():uint
{
return len;
}
public function getType():uint
{
return type;
}
public function toDER():ByteArray {
var tmp:Array = [];
tmp[0] = oid[0]*40 + oid[1];
for (var i:int=2;i<oid.length;i++) {
var v:int = parseInt(oid[i]);
if (v<128) {
tmp.push(v);
} else if (v<128*128) {
tmp.push( (v>>7)|0x80 );
tmp.push( v&0x7f );
} else if (v<128*128*128) {
tmp.push( (v>>14)|0x80 );
tmp.push( (v>>7)&0x7f | 0x80 );
tmp.push( v&0x7f);
} else if (v<128*128*128*128) {
tmp.push( (v>>21)|0x80 );
tmp.push( (v>>14) & 0x7f | 0x80 );
tmp.push( (v>>7) & 0x7f | 0x80 );
tmp.push( v & 0x7f );
} else {
throw new Error("OID element bigger than we thought. :(");
}
}
len = tmp.length;
if (type==0) {
type = 6;
}
tmp.unshift(len); // assume length is small enough to fit here.
tmp.unshift(type);
var b:ByteArray = new ByteArray;
for (i=0;i<tmp.length;i++) {
b[i] = tmp[i];
}
return b;
}
public function toString():String {
return DER.indent+oid.join(".");
}
public function dump():String {
return "OID["+type+"]["+len+"]["+toString()+"]";
}
}
} |
package com.tinyspeck.engine.port
{
import com.tinyspeck.tstweener.TSTweener;
import com.tinyspeck.core.memory.DisposableSprite;
import com.tinyspeck.debug.Console;
import com.tinyspeck.engine.control.TSFrontController;
import com.tinyspeck.engine.util.SpriteUtil;
import com.tinyspeck.engine.view.ITipProvider;
import com.tinyspeck.engine.view.gameoverlay.TipDisplayManager;
import com.tinyspeck.engine.view.itemstack.ItemIconView;
import com.tinyspeck.engine.view.itemstack.LocationItemstackView;
import com.tinyspeck.engine.view.util.StaticFilters;
import flash.display.DisplayObject;
import flash.display.Graphics;
import flash.display.Sprite;
import flash.text.AntiAliasType;
import flash.text.TextField;
import flash.text.TextFieldAutoSize;
public class ActionIndicatorView extends DisposableSprite implements IDisposableSpriteChangeHandler, ITipProvider
{
protected static var ICON_WH:uint = 18;
protected var pointy_width:uint = 10;
protected var padding:uint = 7;
protected var percent_padding:uint = 2;
protected var progress_color:uint = 0x055c73;
protected var progress_alpha:Number = .37;
protected var msg_tf:TextField = new TextField();
protected var alt_msg_tf:TextField = new TextField();
protected var _icon:DisplayObject;
protected var percent_progress:Sprite = new Sprite();
protected var percent_mask:Sprite = new Sprite();
protected var main_holder:Sprite = new Sprite();
protected var alt_holder:Sprite = new Sprite();
protected var _percent:Number = 0;
protected var _msg:String;
protected var _alt_msg:String;
protected var _back_msg:String;
protected var _type:String;
protected var itemstack_tsid:String;
protected var alt_msg_tf_css_class:String;
protected var msg_tf_css_class:String;
protected var _pointy_direction:String;
protected var _tip_text:String;
protected var _icon_class:String;
protected var lis_view:LocationItemstackView;
protected var is_flipping:Boolean;
protected var _enabled:Boolean = true;
protected var _glowing:Boolean;
protected var _warning:Boolean;
public function ActionIndicatorView(itemstack_tsid:String, type:String = ''){
_type = type;
name = itemstack_tsid;
this.itemstack_tsid = itemstack_tsid;
init();
}
protected function init():void {
lis_view = TSFrontController.instance.getMainView().gameRenderer.getItemstackViewByTsid(itemstack_tsid);
// define classes for tfs if not defined by extender
if (!msg_tf_css_class) msg_tf_css_class = 'ai_msg';
if (!alt_msg_tf_css_class) alt_msg_tf_css_class = 'ai_alt_msg';
// this is a placeholder, need to have a better generic action indicator
if (!_icon) _icon = new AssetManager.instance.assets['quest_requirement']();
//useHandCursor = buttonMode = true;
//mouseChildren = false;
addChild(main_holder);
addChild(alt_holder);
alt_holder.alpha = 0;
//percent progress bar holder
percent_mask.x = percent_mask.y = percent_padding;
main_holder.addChild(percent_mask);
percent_progress.x = percent_progress.y = percent_padding;
percent_progress.mask = percent_mask;
main_holder.addChild(percent_progress);
//setup the icon if defined by extender
if (_icon) {
main_holder.addChild(_icon);
}
//tfs
prepTextField(msg_tf);
main_holder.addChild(msg_tf);
prepTextField(alt_msg_tf);
alt_holder.addChild(alt_msg_tf);
draw();
place();
filters = StaticFilters.black2px90Degrees_DropShadowA;
}
protected function flipNext():void {
var show_main:Boolean = main_holder.alpha == 0 ? true : false;
var ani_time:Number = .5;
var hold_time:Number = 3;
TSTweener.addTween(main_holder, { alpha:show_main ? 1 : 0, time:ani_time, delay:hold_time, transition:'linear'});
TSTweener.addTween(alt_holder, { alpha:show_main ? 0 : 1, time:ani_time, delay:hold_time, transition:'linear'});
TSTweener.addTween(main_holder, { alpha:show_main ? 1 : 0, time:ani_time, delay:hold_time+ani_time, transition:'linear'});
TSTweener.addTween(alt_holder, { alpha:show_main ? 0 : 1, time:ani_time, delay:hold_time+ani_time, transition:'linear', onComplete:flipNext});
}
protected function draw():void {
if (!_icon) {
CONFIG::debugging {
Console.error('everything is fucked');
}
return;
}
var icon_height:int = (_icon is ItemIconView) ? ItemIconView(_icon).wh : _icon.height;
var icon_width:int = (_icon is ItemIconView) ? ItemIconView(_icon).wh : _icon.width;
_icon.x = padding*2;
_icon.y = padding;
msg_tf.x = _icon.x + icon_width + padding;
var w:int = Math.max(msg_tf.x + msg_tf.width + padding*2, alt_msg_tf.x + alt_msg_tf.width + padding*2);
var h:int = icon_height + padding*2 - 1;
var g:Graphics = graphics;
g.clear();
g.beginFill(0xffffff);
g.drawRoundRect(-w/2, 0, w, h, h);
g.endFill();
g.beginFill(0xffffff);
g.moveTo(-pointy_width/2, h);
g.lineTo(0, h + pointy_width/2);
g.lineTo(pointy_width/2, h);
g.endFill();
if(_msg){
msg_tf.y = int(h/2 - msg_tf.height/2) + 1;
_icon.x = padding*2;
}
else {
_icon.x = int(icon_width/2) + 1;
}
main_holder.x = int(-w/2);
alt_holder.x = int(-alt_holder.width/2);
alt_msg_tf.y = int(h/2 - alt_msg_tf.height/2) + 1;
drawPerc();
}
protected function drawPerc():void {
var g:Graphics = percent_mask.graphics;
g.clear();
g.beginFill(0);
g.drawRoundRect(0, 0, width - percent_padding*2, height - percent_padding*2 - pointy_width/2, height - percent_padding*2 - pointy_width/2);
var seg_width:Number = percent_mask.width / 100;
g = percent_progress.graphics;
g.clear();
g.beginFill(progress_color, progress_alpha);
g.drawRect(0, 0, seg_width * (_percent*100), percent_mask.height);
}
protected function place():void {
TSFrontController.instance.getMainView().gameRenderer.placeOverlayInSCH(this, 'AIV.drawPerc item:'+(lis_view?lis_view.item.tsid:'??'));
TSFrontController.instance.registerDisposableSpriteChangeSubscriber(this, lis_view);
}
public function worldDisposableSpriteSubscribedHandler(sp:DisposableSprite):void {
}
public function worldDisposableSpriteDestroyedHandler(sp:DisposableSprite):void {
// the disp sp your were registered with has been destroyed
// Here you shoudl do clean up, remove form stage, remove tweens, event listeners etc
dispose();
}
public function worldDisposableSpriteChangeHandler(sp:DisposableSprite):void {
x = int(lis_view.x_of_int_target);
y = int(lis_view.y + lis_view.getYAboveDisplay()-height);
}
public function stopFlipping(show_front:Boolean = true):void {
is_flipping = false;
TSTweener.removeTweens([main_holder, alt_holder]);
if(show_front){
main_holder.alpha = 1;
alt_holder.alpha = 0;
}
else {
main_holder.alpha = 0;
alt_holder.alpha = 1;
}
}
protected function prepTextField(tf:TextField):void {
tf.embedFonts = true;
tf.multiline = true;
tf.autoSize = TextFieldAutoSize.LEFT;
tf.styleSheet = CSSManager.instance.styleSheet;
tf.antiAliasType = AntiAliasType.ADVANCED;
tf.filters = StaticFilters.white1px90Degrees_DropShadowA;
}
override public function dispose():void {
stopFlipping();
TSFrontController.instance.unregisterDisposableSpriteChangeSubscriber(this, lis_view);
//while(numChildren > 0) removeChildAt(0);
SpriteUtil.clean(this.main_holder);
SpriteUtil.clean(this.alt_holder);
SpriteUtil.clean(this);
msg_tf = null;
_icon = null;
lis_view = null;
percent_progress = null;
percent_mask = null;
if(parent) parent.removeChild(this);
super.dispose();
}
public function getTip(tip_target:DisplayObject = null):Object {
if(!_tip_text || !tip_target) return null;
return {
txt: _tip_text,
pointer: WindowBorder.POINTER_BOTTOM_CENTER
}
}
public function get msg():String { return _msg; }
public function set msg(str:String):void {
if(!str || !msg_tf) return;
_msg = str;
msg_tf.htmlText = '<p class="'+msg_tf_css_class+'">' + _msg + '</p>';
draw();
}
public function get alt_msg():String { return _alt_msg; }
public function set alt_msg(str:String):void {
_alt_msg = str;
if(!_alt_msg){
stopFlipping(true);
alt_msg_tf.htmlText = '';
return;
}
alt_msg_tf.htmlText = '<p class="'+msg_tf_css_class+'">' + _alt_msg + '</p>';
draw();
if(!is_flipping && _alt_msg){
is_flipping = true;
flipNext();
}
}
public function get type():String { return _type; }
public function set type(str:String):void {
_type = str;
draw();
}
public function get icon():DisplayObject { return _icon; }
public function set icon(DO:DisplayObject):void {
if (_icon) {
if (_icon is ItemIconView) {
ItemIconView(_icon).dispose();
}
if (_icon.parent) _icon.parent.removeChild(_icon);
}
_icon = DO;
if (_icon) main_holder.addChild(_icon);
draw();
}
public function get percent():Number { return _percent; }
public function set percent(value:Number):void {
value = Math.min(1, value);
value = Math.max(0, value);
_percent = value;
draw();
}
public function get enabled():Boolean { return _enabled; }
public function set enabled(value:Boolean):void {
_enabled = value;
}
public function get pointy_direction():String { return _pointy_direction; }
public function set pointy_direction(direction:String):void {
_pointy_direction = direction;
draw();
}
public function get tip_text():String { return _tip_text; }
public function set tip_text(value:String):void {
_tip_text = value;
if(value) {
TipDisplayManager.instance.registerTipTrigger(this);
}
else {
TipDisplayManager.instance.unRegisterTipTrigger(this);
}
}
public function get icon_class():String { return _icon_class; }
public function set icon_class(class_tsid:String):void {
if(!class_tsid) return;
_icon_class = class_tsid;
icon = new ItemIconView(class_tsid, ICON_WH);
draw();
}
public function get glowing():Boolean { return _glowing; }
public function set glowing(do_glow:Boolean):void {
_glowing = do_glow;
}
public function get warning():Boolean { return _warning; }
public function set warning(value:Boolean):void {
_warning = value;
}
public function get w():int {
return width;
}
public function get h():int {
return height;
}
}
} |
/**
* Bounce by Grant Skinner. Nov 3, 2009
* Visit www.gskinner.com/blog for documentation, updates and more free code.
*
* Adapted from Robert Penner's AS3 tweening equations.
*
*
* Copyright (c) 2009 Grant Skinner
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
**/
package com.ek.library.utils.easing
{
/**
* Easing class for use with GTween. This ease class is not compatible with other tweening engines.
* GTween can use standard t,b,c,d format ease classes.
**/
public class Bounce {
// unused params are included for compatibility with other easing classes.
public static function easeIn(ratio:Number, unused1:Number, unused2:Number, unused3:Number):Number {
return 1-easeOut(1-ratio,0,0,0);
}
public static function easeOut(ratio:Number, unused1:Number, unused2:Number, unused3:Number):Number {
if (ratio < 1/2.75) {
return 7.5625*ratio*ratio;
} else if (ratio < 2/2.75) {
return 7.5625*(ratio-=1.5/2.75)*ratio+0.75;
} else if (ratio < 2.5/2.75) {
return 7.5625*(ratio-=2.25/2.75)*ratio+0.9375;
} else {
return 7.5625*(ratio-=2.625/2.75)*ratio+0.984375;
}
}
public static function easeInOut(ratio:Number, unused1:Number, unused2:Number, unused3:Number):Number {
return ((ratio*=2) < 1) ? 0.5*easeIn(ratio,0,0,0) : 0.5*easeOut(ratio-1,0,0,0)+0.5;
}
}
}
|
/*
* Copyright (c) 2014-2019 Object Builder <https://github.com/ottools/ObjectBuilder>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package otlib.things
{
import flash.utils.IDataOutput;
public interface IMetadataWriter extends IDataOutput
{
function writeProperties(type:ThingType):Boolean;
function writeItemProperties(type:ThingType):Boolean;
function writeTexturePatterns(type:ThingType, extended:Boolean, frameDurations:Boolean):Boolean;
}
}
|
package worlds
{
import net.flashpunk.graphics.Image;
import flash.display.Graphics;
import net.flashpunk.Entity;
import net.flashpunk.FP;
import net.flashpunk.graphics.Text;
import net.flashpunk.Entity;
import net.flashpunk.utils.Input;
import net.flashpunk.utils.Key;
import net.flashpunk.World;
import util.MusicPlayer;
/**
* ...
* @author Drs
*/
public class Menu extends World
{
private var _menuItem:Vector.<Entity>;
private var _closing:Boolean = false;
private var _selectedItemIndex:int = 0;
private var _lastSelectedItemIndex:int = 0;
private var _fromGameOver:Boolean;
private var _level:int = 0;
private const MENU_PADDING:String = " "; //hugly : no time ! panic : haaaaaaaaaa ... monkey code !
public function Menu(fromGameOver:Boolean = false)
{
_fromGameOver = fromGameOver;
}
override public function begin():void
{
//local recylable
var text:Text;
var entity:Entity;
if (_fromGameOver)
{
if (!MusicPlayer.playing)
{
MusicPlayer.crossFadeToTrack(Assets.SOUND_MENU_LOOP, 1, true);
}
else
{
MusicPlayer.playTrack(Assets.SOUND_MENU_LOOP, 3, true);
}
}
else
{
if (!MusicPlayer.playing)
{
MusicPlayer.playTrack(Assets.SOUND_MENU_LOOP, 3, true);
}
}
add(new Entity(0, 0, new Image(Assets.IMAGE_MENU)));
//Menu inits
_menuItem = new Vector.<Entity>();
text = new Text("# New game", 0, 0, { size:24, color: Assets.TEXT_COLOR_HIGHLIGHT } );
text.font = "GameFont";
text.x = 240;
text.y = 160;
entity = new Entity(0, 0, text)
_menuItem.push(entity);
add(entity);
text = new Text(MENU_PADDING + "Credits", 0, 0, {size: 24, color: Assets.TEXT_COLOR_DEFAULT});
text.font = "GameFont";
text.x = 240;
text.y = 200;
entity = new Entity(0, 0, text)
_menuItem.push(entity);
add(entity);
//gaphical inits
text = new Text("Press ENTER to validate.", 0, 0, {size: 12, color: Assets.TEXT_COLOR_COMMENT});
text.font = "GameFont";
text.x = FP.camera.x / 2 + 260;
text.y = FP.camera.y / 2 + 440;
add(new Entity(0, 0, text));
//init of inputs config
Input.define(Assets.KEY_UP, Key.UP);
Input.define(Assets.KEY_DOWN, Key.DOWN);
Input.define(Assets.KEY_ENTER, Key.ENTER);
}
override public function update():void
{
if (_closing)
{
super.update();
return;
}
if (Input.pressed(Assets.KEY_ENTER)) {
FP.world.removeAll();
FP.world.clearTweens();
switch(_selectedItemIndex)
{
case 0:
FP.world = new Introduction(); //Memory leak from FP ...
break;
case 1:
FP.world = new Credits(); //Memory leak from FP ...
break;
}
_closing = true;
return;
}
var focuseChanged:Boolean = false;
if (Input.pressed(Assets.KEY_UP)) {
focuseChanged = true;
_lastSelectedItemIndex = _selectedItemIndex;
_selectedItemIndex = _selectedItemIndex == 0 ? _menuItem.length - 1 : _selectedItemIndex - 1;
}
if (Input.pressed(Assets.KEY_DOWN)) {
focuseChanged = true;
_lastSelectedItemIndex = _selectedItemIndex;
_selectedItemIndex = _selectedItemIndex == _menuItem.length - 1 ? 0 : _selectedItemIndex + 1;
}
if (focuseChanged)
{
var entity:Text;
entity = (_menuItem[_lastSelectedItemIndex].graphic as Text);
entity.color = Assets.TEXT_COLOR_DEFAULT;
entity.text = entity.text.replace("# ", MENU_PADDING);
entity = (_menuItem[_selectedItemIndex].graphic as Text);
entity.color = Assets.TEXT_COLOR_HIGHLIGHT;
entity.text = "# " + entity.text.replace(MENU_PADDING,"");
}
super.update();
}
}
} |
/*
* Copyright the original author or authors.
*
* Licensed under the MOZILLA PUBLIC LICENSE, Version 1.1 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.bourre.error
{
/**
* A IndexOutOfBoundsException exception is thrown when the index supplied
* is not valid for data structure which try to access data using this
* index.
*
* @author Francis Bourre
*/
public class IndexOutOfBoundsException extends Error
{
//--------------------------------------------------------------------
// Public API
//--------------------------------------------------------------------
/**
* Creates instance.
*
* @param message Exception message
*/
public function IndexOutOfBoundsException( message : String = "" )
{
super( message );
}
}
} |
/*
Feathers
Copyright 2012-2021 Bowler Hat LLC. All Rights Reserved.
This program is free software. You can redistribute and/or modify it in
accordance with the terms of the accompanying license agreement.
*/
package feathers.controls
{
import feathers.skins.IStyleProvider;
import feathers.utils.display.getDisplayObjectDepthFromStage;
import flash.events.KeyboardEvent;
import flash.ui.Keyboard;
import starling.events.Event;
/**
* Dispatched when the transition animation begins as the screen is shown
* by the screen navigator.
*
* <p>The properties of the event object have the following values:</p>
* <table class="innertable">
* <tr><th>Property</th><th>Value</th></tr>
* <tr><td><code>bubbles</code></td><td>false</td></tr>
* <tr><td><code>currentTarget</code></td><td>The Object that defines the
* event listener that handles the event. For example, if you use
* <code>myButton.addEventListener()</code> to register an event listener,
* myButton is the value of the <code>currentTarget</code>.</td></tr>
* <tr><td><code>data</code></td><td>null</td></tr>
* <tr><td><code>target</code></td><td>The Object that dispatched the event;
* it is not always the Object listening for the event. Use the
* <code>currentTarget</code> property to always access the Object
* listening for the event.</td></tr>
* </table>
*
* @eventType feathers.events.FeathersEventType.TRANSITION_IN_START
*/
[Event(name="transitionInStart",type="starling.events.Event")]
/**
* Dispatched when the transition animation finishes as the screen is shown
* by the screen navigator.
*
* <p>The properties of the event object have the following values:</p>
* <table class="innertable">
* <tr><th>Property</th><th>Value</th></tr>
* <tr><td><code>bubbles</code></td><td>false</td></tr>
* <tr><td><code>currentTarget</code></td><td>The Object that defines the
* event listener that handles the event. For example, if you use
* <code>myButton.addEventListener()</code> to register an event listener,
* myButton is the value of the <code>currentTarget</code>.</td></tr>
* <tr><td><code>data</code></td><td>null</td></tr>
* <tr><td><code>target</code></td><td>The Object that dispatched the event;
* it is not always the Object listening for the event. Use the
* <code>currentTarget</code> property to always access the Object
* listening for the event.</td></tr>
* </table>
*
* @eventType feathers.events.FeathersEventType.TRANSITION_IN_COMPLETE
*/
[Event(name="transitionInComplete",type="starling.events.Event")]
/**
* Dispatched when the transition animation begins as a different screen is
* shown by the screen navigator and this screen is hidden.
*
* <p>The properties of the event object have the following values:</p>
* <table class="innertable">
* <tr><th>Property</th><th>Value</th></tr>
* <tr><td><code>bubbles</code></td><td>false</td></tr>
* <tr><td><code>currentTarget</code></td><td>The Object that defines the
* event listener that handles the event. For example, if you use
* <code>myButton.addEventListener()</code> to register an event listener,
* myButton is the value of the <code>currentTarget</code>.</td></tr>
* <tr><td><code>data</code></td><td>null</td></tr>
* <tr><td><code>target</code></td><td>The Object that dispatched the event;
* it is not always the Object listening for the event. Use the
* <code>currentTarget</code> property to always access the Object
* listening for the event.</td></tr>
* </table>
*
* @eventType feathers.events.FeathersEventType.TRANSITION_OUT_START
*/
[Event(name="transitionOutStart",type="starling.events.Event")]
/**
* Dispatched when the transition animation finishes as a different screen
* is shown by the screen navigator and this screen is hidden.
*
* <p>The properties of the event object have the following values:</p>
* <table class="innertable">
* <tr><th>Property</th><th>Value</th></tr>
* <tr><td><code>bubbles</code></td><td>false</td></tr>
* <tr><td><code>currentTarget</code></td><td>The Object that defines the
* event listener that handles the event. For example, if you use
* <code>myButton.addEventListener()</code> to register an event listener,
* myButton is the value of the <code>currentTarget</code>.</td></tr>
* <tr><td><code>data</code></td><td>null</td></tr>
* <tr><td><code>target</code></td><td>The Object that dispatched the event;
* it is not always the Object listening for the event. Use the
* <code>currentTarget</code> property to always access the Object
* listening for the event.</td></tr>
* </table>
*
* @eventType feathers.events.FeathersEventType.TRANSITION_OUT_COMPLETE
*/
[Event(name="transitionOutComplete",type="starling.events.Event")]
/**
* A screen for use with <code>ScreenNavigator</code>, based on <code>Panel</code>
* in order to provide a header and layout.
*
* <p>This component is generally not instantiated directly. Instead it is
* typically used as a super class for concrete implementations of screens.
* With that in mind, no code example is included here.</p>
*
* <p>The following example provides a basic framework for a new panel screen:</p>
*
* <listing version="3.0">
* package
* {
* import feathers.controls.PanelScreen;
*
* public class CustomScreen extends PanelScreen
* {
* public function CustomScreen()
* {
* super();
* }
*
* override protected function initialize():void
* {
* //runs once when screen is first added to the stage
* //a good place to add children and customize the layout
*
* //don't forget to call this!
* super.initialize()
* }
* }
* }</listing>
*
* @see ../../../panel-screen.html How to use the Feathers PanelScreen component
* @see feathers.controls.StackScreenNavigator
* @see feathers.controls.ScreenNavigator
*
* @productversion Feathers 1.1.0
*/
public class PanelScreen extends Panel implements IScreen
{
/**
* The default value added to the <code>styleNameList</code> of the header.
*
* @see feathers.core.FeathersControl#styleNameList
*/
public static const DEFAULT_CHILD_STYLE_NAME_HEADER:String = "feathers-panel-screen-header";
/**
* The default value added to the <code>styleNameList</code> of the footer.
*
* @see feathers.core.FeathersControl#styleNameList
*/
public static const DEFAULT_CHILD_STYLE_NAME_FOOTER:String = "feathers-panel-screen-footer";
/**
* The default <code>IStyleProvider</code> for all <code>PanelScreen</code>
* components.
*
* @default null
* @see feathers.core.FeathersControl#styleProvider
*/
public static var globalStyleProvider:IStyleProvider;
/**
* Constructor.
*/
public function PanelScreen()
{
this.addEventListener(Event.ADDED_TO_STAGE, panelScreen_addedToStageHandler);
super();
this.headerStyleName = DEFAULT_CHILD_STYLE_NAME_HEADER;
}
/**
* @private
*/
override protected function get defaultStyleProvider():IStyleProvider
{
return PanelScreen.globalStyleProvider;
}
/**
* @private
*/
protected var _screenID:String;
/**
* @inheritDoc
*/
public function get screenID():String
{
return this._screenID;
}
/**
* @private
*/
public function set screenID(value:String):void
{
this._screenID = value;
}
/**
* @private
*/
protected var _owner:Object;
/**
* @inheritDoc
*/
public function get owner():Object
{
return this._owner;
}
/**
* @private
*/
public function set owner(value:Object):void
{
this._owner = value;
}
/**
* Optional callback for the back hardware key. Automatically handles
* keyboard events to cancel the default behavior.
*
* <p>This function has the following signature:</p>
*
* <pre>function():void</pre>
*
* <p>In the following example, a function will dispatch <code>Event.COMPLETE</code>
* when the back button is pressed:</p>
*
* <listing version="3.0">
* this.backButtonHandler = onBackButton;
*
* private function onBackButton():void
* {
* this.dispatchEvent( Event.COMPLETE );
* };</listing>
*
* @default null
*/
protected var backButtonHandler:Function;
/**
* Optional callback for the menu hardware key. Automatically handles
* keyboard events to cancel the default behavior.
*
* <p>This function has the following signature:</p>
*
* <pre>function():void</pre>
*
* <p>In the following example, a function will be called when the menu
* button is pressed:</p>
*
* <listing version="3.0">
* this.menuButtonHandler = onMenuButton;
*
* private function onMenuButton():void
* {
* //do something with the menu button
* };</listing>
*
* @default null
*/
protected var menuButtonHandler:Function;
/**
* Optional callback for the search hardware key. Automatically handles
* keyboard events to cancel the default behavior.
*
* <p>This function has the following signature:</p>
*
* <pre>function():void</pre>
*
* <p>In the following example, a function will be called when the search
* button is pressed:</p>
*
* <listing version="3.0">
* this.searchButtonHandler = onSearchButton;
*
* private function onSearchButton():void
* {
* //do something with the search button
* };</listing>
*
* @default null
*/
protected var searchButtonHandler:Function;
/**
* @private
*/
protected function panelScreen_addedToStageHandler(event:Event):void
{
this.addEventListener(Event.REMOVED_FROM_STAGE, panelScreen_removedFromStageHandler);
//using priority here is a hack so that objects higher up in the
//display list have a chance to cancel the event first.
var priority:int = -getDisplayObjectDepthFromStage(this);
this.stage.starling.nativeStage.addEventListener(KeyboardEvent.KEY_DOWN, panelScreen_nativeStage_keyDownHandler, false, priority, true);
}
/**
* @private
*/
protected function panelScreen_removedFromStageHandler(event:Event):void
{
this.removeEventListener(Event.REMOVED_FROM_STAGE, panelScreen_removedFromStageHandler);
this.stage.starling.nativeStage.removeEventListener(KeyboardEvent.KEY_DOWN, panelScreen_nativeStage_keyDownHandler);
}
/**
* @private
*/
protected function panelScreen_nativeStage_keyDownHandler(event:KeyboardEvent):void
{
if(event.isDefaultPrevented())
{
//someone else already handled this one
return;
}
if(this.backButtonHandler != null &&
event.keyCode == Keyboard.BACK)
{
event.preventDefault();
this.backButtonHandler();
}
if(this.menuButtonHandler != null &&
event.keyCode == Keyboard.MENU)
{
event.preventDefault();
this.menuButtonHandler();
}
if(this.searchButtonHandler != null &&
event.keyCode == Keyboard.SEARCH)
{
event.preventDefault();
this.searchButtonHandler();
}
}
}
}
|
@throws_arity function arrity0
array.unshift
@throws_arity function arrity1
array.unshift []
@throws_type function type
array.unshift 1 1
function normal
local a = [1]
for x in 0:1024
array.unshift a [{string.from x}]
assertEqual 1025 {length a}
assertEqual 1 (a 1024)
assertEqual "1023" ((a 0) 0)
|
/**
* BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
*
* Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below).
*
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
* Foundation; either version 3.0 of the License, or (at your option) any later
* version.
*
* BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
*
*/
package org.bigbluebutton.modules.users.events
{
import flash.events.Event;
public class UsersEvent extends Event
{
public static const ROOM_MUTE_STATE:String = "USERS_ROOM_MUTE_STATE";
public static const ROOM_LOCK_STATE:String = "USERS_ROOM_LOCK_STATE";
public var new_state:Boolean;
public function UsersEvent(type:String)
{
super(type, true, false);
}
}
} |
/**
* BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
*
* Copyright (c) 2014 BigBlueButton Inc. and by respective authors (see below).
*
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
* Foundation; either version 3.0 of the License, or (at your option) any later
* version.
*
* BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
*
*/
package org.bigbluebutton.clientcheck.command
{
import org.bigbluebutton.clientcheck.model.test.IPortTest;
import org.bigbluebutton.clientcheck.model.test.IRTMPAppTest;
import org.bigbluebutton.clientcheck.model.ISystemConfiguration;
import org.bigbluebutton.clientcheck.model.test.PortTest;
import org.bigbluebutton.clientcheck.service.IRTMPTunnelingService;
import robotlegs.bender.bundles.mvcs.Command;
import org.bigbluebutton.clientcheck.model.test.RTMPAppTest;
public class RequestRTMPAppsCommand extends Command
{
[Inject]
public var rtmpTunnelingService:IRTMPTunnelingService;
public override function execute():void
{
rtmpTunnelingService.init();
}
}
}
|
package games.osmos {
import flash.display.Sprite;
/**
* @author Aymeric
*/
public class AtomArt extends Sprite {
private var _color:uint;
public function AtomArt(radius:Number) {
_color = Math.random() * 0xFFFFFF;
this.graphics.beginFill(_color);
this.graphics.drawCircle(0, 0, radius);
this.graphics.endFill();
}
public function changeSize(diameter:Number):void {
this.graphics.clear();
if (diameter > 0) {
this.graphics.beginFill(_color);
this.graphics.drawCircle(0, 0, diameter * 0.5);
this.graphics.endFill();
}
}
}
}
|
package com.playata.application.ui.elements.goal
{
import com.playata.application.data.goal.GoalValue;
import com.playata.application.data.quest.Quest;
import com.playata.application.ui.elements.citymap.ICitymapQuestButton;
import com.playata.application.ui.elements.generic.button.UiButtonWrapper;
import com.playata.framework.display.IDisplayObject;
import com.playata.framework.display.InteractiveDisplayObject;
import com.playata.framework.display.ui.controls.Tooltip;
import com.playata.framework.input.InteractionEvent;
import visuals.ui.elements.goal.SymbolGoalItemGeneric;
public class UiGoalButton implements ICitymapQuestButton
{
private var _callback:Function = null;
private var _quest:Quest = null;
private var _buttonWrapper:UiButtonWrapper;
private var _goalTooltip:UiGoalButtonTooltip = null;
private var _container:SymbolGoalItemGeneric;
public function UiGoalButton(param1:SymbolGoalItemGeneric, param2:Quest, param3:Function, param4:Function, param5:Function)
{
super();
_buttonWrapper = new UiButtonWrapper(param1,handleClick,param4,param5);
_quest = param2;
_callback = param3;
_container = param1;
}
public function dispose() : void
{
destroy();
_buttonWrapper.dispose();
_buttonWrapper = null;
}
public function destroy() : void
{
_buttonWrapper.destroy();
_quest = null;
if(_goalTooltip != null)
{
_goalTooltip.dispose();
_goalTooltip = null;
}
_container = null;
}
public function set goalValue(param1:GoalValue) : void
{
if(_goalTooltip == null)
{
_goalTooltip = new UiGoalButtonTooltip(new InteractiveDisplayObject(_container),param1);
}
_goalTooltip.goalValue = param1;
}
private function handleClick(param1:InteractionEvent) : void
{
if(_callback != null)
{
_callback(this);
}
}
public function get quest() : Quest
{
return _quest;
}
public function get tooltip() : Tooltip
{
return _goalTooltip;
}
public function get displayObject() : IDisplayObject
{
return _container;
}
}
}
|
/*
* Copyright 2007 (c) Tim Knip, ascollada.org.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
package org.ascollada.core
{
import org.ascollada.ASCollada;
import org.ascollada.core.DaeEntity;
import org.ascollada.core.DaeMorph;
import org.ascollada.core.DaeSkin;
import org.ascollada.utils.Logger;
/**
*
*/
public class DaeController extends DaeEntity
{
public static const TYPE_SKIN:uint = 0;
public static const TYPE_MORPH:uint = 1;
/** */
public var type:uint;
/** */
public var skin:DaeSkin;
/** */
public var morph:DaeMorph;
/**
*
* @param node
* @return
*/
public function DaeController( node:XML = null ):void
{
super( node );
}
/**
*
* @param node
* @return
*/
override public function read( node:XML ):void
{
if( node.localName() != ASCollada.DAE_CONTROLLER_ELEMENT ) return;
super.read( node );
Logger.log( "reading controller: " + this.id );
// <skin> or <morph>
var skinNode:XML = getNode(node, ASCollada.DAE_CONTROLLER_SKIN_ELEMENT);
if( skinNode )
{
this.skin = new DaeSkin( skinNode );
this.type = TYPE_SKIN;
}
else
{
// ok, must be a morph!
var morphNode:XML = getNode(node, ASCollada.DAE_CONTROLLER_MORPH_ELEMENT);
if( morphNode )
{
this.morph = new DaeMorph( morphNode );
this.type = TYPE_MORPH;
}
}
if( !this.skin && !this.morph )
throw new Error( "controller element should contain a <skin> or a <morph> element!" );
// <asset> 0..1
// TODO: implement
// <extra> 0..N
// TODO: implement
if( this.type == TYPE_SKIN )
{
//this.skin.joints.inputs
}
else
{
}
}
}
}
|
package jp.coremind.utility.process
{
import flash.display.Sprite;
import jp.coremind.utility.data.Progress;
public class FrameLoop extends Loop
{
protected var _sprite:Sprite;
public function FrameLoop()
{
super();
_sprite = new Sprite();
}
override public function terminate():void
{
_sprite = null;
super.terminate();
}
override public function pushHandler(delay:int, completeClosure:Function, updateClosure:Function = null):void
{
var _progress:Progress = new Progress();
_progress.setRange(0, delay);
_handlerList.push(updateClosure is Function ?
function(v:*):Boolean
{
_progress.update(_progress.now + 1);
if (_progress.gain == delay)
{
completeClosure(_progress);
return true;
}
else
return updateClosure(_progress);
}:
function(v:*):Boolean
{
_progress.update(_progress.now + 1);
if (_progress.gain == delay)
{
completeClosure(_progress);
return true;
}
else
return false;
});
}
public function setInterval(f:Function, ...args):void
{
_handlerList.push(function(v:*):Boolean { return $.apply(f, args); });
}
}
} |
package app
{
import app.data.mesh.MeshInfo;
import app.data.mesh.MeshInfoLibrary;
import app.model.SoloMesh;
import flash.geom.Point;
import recastnavigation.detour.crowd.DTCrowd;
import recastnavigation.detour.navmeshquery.DTQueryFilter;
import recastnavigation.recast.RCContext;
import starling.display.Sprite;
import starling.events.Event;
public class TestApplication extends Sprite
{
public function TestApplication()
{
super();
addEventListener(Event.ADDED_TO_STAGE, onAddedToStage);
}
private function onAddedToStage():void
{
removeEventListener(Event.ADDED_TO_STAGE, onAddedToStage);
var meshInfo:MeshInfo = MeshInfoLibrary.instance.getMeshInfoByName("Obj-test-1.obj");
var soloMesh:SoloMesh = new SoloMesh();
var rcContext:RCContext = new RCContext();
rcContext.alloc();
soloMesh.connect(rcContext);
soloMesh.setMesh(meshInfo);
soloMesh.build();
trace("Mesh built.");
var crowd:DTCrowd = new DTCrowd();
crowd.alloc();
var filter:DTQueryFilter = new DTQueryFilter();
filter.alloc();
var p:Point = new Point();
soloMesh.query.findNearestPoly(p.x, 0, p.y, 20, 40, 20, filter);
p.setTo(soloMesh.query.nearestPtX, soloMesh.query.nearestPtZ);
var ref:int = soloMesh.query.nearestRef;
trace(p, ref);
crowd.init(128, 5, soloMesh.navMesh);
for (var i:int = crowd.getAgentCount() - 1; i >= 0; --i)
{
if (crowd.getAgent(i).active)
{
trace("active");
}
}
}
}
} |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package org.apache.royale.core
{
import org.apache.royale.events.IEventDispatcher;
/**
* The IItemRenderer interface is the basic interface for item renderers.
* More complex item renderers may implements extensions of this interface.
*
* @langversion 3.0
* @playerversion Flash 10.2
* @playerversion AIR 2.6
* @productversion Royale 0.0
*/
public interface IItemRenderer extends IEventDispatcher, IChild
{
/**
* The data item to be displayed by the item renderer.
*
* @langversion 3.0
* @playerversion Flash 10.2
* @playerversion AIR 2.6
* @productversion Royale 0.0
*/
function get data():Object;
function set data(value:Object):void;
/**
* Additional data about the list structure that might be useful
* to itemRenderer implementations.
*
* @langversion 3.0
* @playerversion Flash 10.2
* @playerversion AIR 2.6
* @productversion Royale 0.0
*/
function get listData():Object;
function set listData(value:Object):void;
/**
* The parent component of the itemRenderer instance. This is the container that houses
* all of the itemRenderers.
*
* @langversion 3.0
* @playerversion Flash 10.2
* @playerversion AIR 2.6
* @productversion Royale 0.0
*/
function get itemRendererParent():Object;
function set itemRendererParent(value:Object):void;
}
}
|
package away3d.textures
{
import away3d.utils.TextureUtils;
import flash.display.BitmapData;
import flash.display3D.textures.TextureBase;
import flash.geom.Matrix;
import flash.media.Camera;
import flash.media.Video;
public class WebcamTexture extends BitmapTexture
{
private var _materialSize:uint;
private var _video:Video;
private var _camera:Camera;
private var _matrix:Matrix;
private var _smoothing:Boolean;
private var _playing:Boolean;
private var _autoUpdate:Boolean;
public function WebcamTexture(cameraWidth:uint = 320, cameraHeight:uint = 240, materialSize:uint = 256, autoStart:Boolean = true, camera:Camera = null, smoothing:Boolean = true)
{
_materialSize = validateMaterialSize(materialSize);
super(new BitmapData(_materialSize, _materialSize, false, 0));
// Use default camera if none supplied
_camera = camera || Camera.getCamera();
_video = new Video(cameraWidth, cameraHeight);
_matrix = new Matrix();
_matrix.scale(_materialSize/cameraWidth, _materialSize/cameraHeight);
if (autoStart) {
_autoUpdate = true;
start();
}
_smoothing = smoothing;
}
/**
* Defines whether the texture should automatically update while camera stream is
* playing. If false, the update() method must be invoked for the texture to redraw.
*/
public function get autoUpdate():Boolean
{
return _autoUpdate;
}
public function set autoUpdate(val:Boolean):void
{
_autoUpdate = val;
if (_autoUpdate && _playing)
invalidateContent();
}
/**
* The Camera instance (webcam) used by this texture.
*/
public function get camera():Camera
{
return _camera;
}
/**
* Toggles smoothing on the texture as it's drawn (and potentially scaled)
* from the video stream to a BitmapData object.
*/
public function get smoothing():Boolean
{
return _smoothing;
}
public function set smoothing(value:Boolean):void
{
_smoothing = value;
}
/**
* Start subscribing to camera stream. For the texture to update the update()
* method must be repeatedly invoked, or autoUpdate set to true.
*/
public function start():void
{
_video.attachCamera(_camera);
_playing = true;
invalidateContent();
}
/**
* Detaches from the camera stream.
*/
public function stop():void
{
_playing = false;
_video.attachCamera(null);
}
/**
* Draws the video and updates the bitmap texture
* If autoUpdate is false and this function is not called the bitmap texture will not update!
*/
public function update():void
{
// draw
bitmapData.lock();
bitmapData.fillRect(bitmapData.rect, 0);
bitmapData.draw(_video, _matrix, null, null, bitmapData.rect, _smoothing);
bitmapData.unlock();
invalidateContent();
}
/**
* Flips the image from the webcam horizontally
*/
public function flipHorizontal():void
{
_matrix.a = -1*_matrix.a;
_matrix.a > 0? _matrix.tx = _video.x - _video.width*Math.abs(_matrix.a) : _matrix.tx = _video.width*Math.abs(_matrix.a) + _video.x;
}
/**
* Flips the image from the webcam vertically
*/
public function flipVertical():void
{
_matrix.d = -1*_matrix.d;
_matrix.d > 0? _matrix.ty = _video.y - _video.height*Math.abs(_matrix.d) : _matrix.ty = _video.height*Math.abs(_matrix.d) + _video.y;
}
/**
* Clean up used resources.
*/
override public function dispose():void
{
super.dispose();
stop();
bitmapData.dispose();
_video.attachCamera(null);
_camera = null;
_video = null;
_matrix = null;
}
override protected function uploadContent(texture:TextureBase):void
{
super.uploadContent(texture);
if (_playing && _autoUpdate) {
// Keep content invalid so that it will
// be updated again next render cycle
update();
}
}
private function validateMaterialSize(size:uint):int
{
if (!TextureUtils.isDimensionValid(size)) {
var oldSize:uint = size;
size = TextureUtils.getBestPowerOf2(size);
trace("Warning: " + oldSize + " is not a valid material size. Updating to the closest supported resolution: " + size);
}
return size;
}
}
}
|
////////////////////////////////////////////////////////////////////////////////
//
// ADOBE SYSTEMS INCORPORATED
// Copyright 2003-2006 Adobe Systems Incorporated
// All Rights Reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////
package spark.core
{
import flash.display.DisplayObject;
import flash.display.DisplayObjectContainer;
import mx.core.IVisualElement;
/**
* The IGraphicElement is implemented by IVisualElements that
* take advantage of the parent <code>IGraphicElementContainer</code>
* DisplayObject management.
*
* <p>One typical use case is DisplayObject sharing.
* the Group class, which implements <code>IGraphicElementContainer</code>, organizes its
* IGraphicElement children in sequences that share and draw to
* the same DisplayObject.
* The DisplayObject is created by the first element in the
* sequence.</p>
*
* <p>Another use case is when an element does not derive from
* DisplayObject but instead maintains, creates and/or destroys
* its own DisplayObject. The <code>IGraphicElementContainer</code> will
* call the element to create the DisplayObject, add the
* DisplayObject as its child at the correct index, and
* handle its removal.</p>
*
* <p>Typically, you extend the GraphicElement class
* instead of directly implementing the IGraphciElement
* interface. The GraphicElement class already provides most of the
* required functionality.</p>
*
* @see spark.core.IGraphicElementContainer
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 1.5
* @productversion Flex 4
*/
public interface IGraphicElement extends IVisualElement
{
//--------------------------------------------------------------------------
//
// Properties
//
//--------------------------------------------------------------------------
//----------------------------------
// displayObject
//----------------------------------
/**
* The shared DisplayObject where this
* IGraphicElement is drawn.
*
* <p>Implementers should not create the DisplayObject
* here, but in the <code>createDisplayObject()</code> method.</p>
*
* @see #createDisplayObject
* @see #validateDisplayList
* @see #displayObjectSharingMode
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 1.5
* @productversion Flex 4
*/
function get displayObject():DisplayObject;
//----------------------------------
// displayObjectSharingMode
//----------------------------------
/**
* Indicates the association between this IGraphicElement and its
* display objects. The <code>IGraphicElementContainer</code> manages this
* property and the values are one of the DisplayObjectSharingMode enum class.
*
* <ul>
* <li>A value of <code>DisplayObjectSharingMode.OWNS_UNSHARED_OBJECT</code>
* indicates that the IGraphicElement owns exclusively the
* DisplayObject corresponding to its <code>displayObject</code>
* property.</li>
*
* <li>A value of <code>DisplayObjectSharingMode.OWNS_SHARED_OBJECT</code>
* indicates taht the IGraphicElement owns the DisplayObject
* corresponding to its <code>displayObject</code> property but
* other IGraphicElements are using/drawing to that display object as well.
* Depending on the specific implementation, the IGraphicElement may perform
* certain management of the display object.
* For example the base class GraphicElement
* clears the transform of the display object, reset its visibility, alpha,
* etc. properties to their default values and additionally clear the
* graphics on every <code>validateDisplayList()</code> call.</li>
*
* <li>A value of <code>DisplayObjectSharingMode.USES_SHARED_OBJECT</code>
* indicates that the IGraphicElement draws into the
* DisplayObject corresponding to its <code>displayObject</code>
* property. There are one or more IGraphicElements that draw
* into that same displayObject, and the first element that draws
* has its mode set to <code>DisplayObjectMode.OWNS_SHARED_OBJECT</code></li>
* </ul>
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
function get displayObjectSharingMode():String;
/**
* @private
*/
function set displayObjectSharingMode(value:String):void;
//--------------------------------------------------------------------------
//
// Methods
//
//--------------------------------------------------------------------------
/**
* Creates a new DisplayObject where this IGraphicElement
* is drawn.
*
* <p>Subsequent calls to the getter of the <code>displayObject</code> property must
* return the same display object.</p>
*
* <p>After the DisplayObject is created, the parent <code>IGraphicElementContainer</code>
* will pass along the display objects to the rest of the elements in the sequence.</p>
*
* <p>The <code>IGraphicElementContainer</code> ensures that this method is called only when needed.</p>
*
* <p>If the element wants to participate in the DisplayObject
* sharing, then the new DisplayObject must implement IShareableDisplayObject.
* This interface is being used by the <code>IGraphicElementContainer</code> to manage invalidation and
* redrawing of the graphic element sequence and typically is not directly
* used by the developer.</p>
*
* <p>To reevaluate the shared sequences, call the
* <code>invalidateGraphicElementSharing()</code> method
* on the <code>IGraphicElementContainer</code>.</p>
*
* <p>To force the <code>IGraphicElementContainer</code> to remove the element's current
* DisplayObject from its display list and recalculate the
* display object sharing, call the
* <code>discardDisplayObject()</code> method on the <code>IGraphicElementContainer</code>.</p>
*
* @return The display object created.
*
* @see #displayObject
* @see spark.core.IGraphicElementContainer#invalidateGraphicElementSharing
* @see spark.core.IGraphicElementContainer#discardDisplayObject
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 1.5
* @productversion Flex 4
*/
function createDisplayObject():DisplayObject;
/**
* Determines whether this element can draw itself to the
* <code>sharedDisplayObject</code> of the sequence.
*
* <p>Typically implementers return <code>true</code> when this
* IGraphicElement can cumulatively draw in the shared
* DisplayObject <code>graphics</code> property.
* In all cases where this IGraphicElement needs to set
* properties on the DisplayObjects that don't apply to the
* rest of the elements in the sequence, this method must return <code>false</code>.
* Examples for such properties are rotation, scale, transform,
* mask, alpha, filters, color transform, 3D, and layer.</p>
*
* <p>When this method returns <code>true</code>, subsequent calls to the getter of the
* <code>displayObject</code> property must return the same display object.</p>
*
* <p>In certain cases, the <code>sharedDisplayObject</code> property might be
* the <code>IGraphicElementContainer</code> itself. In the rest of the cases, the
* DisplayObject is created by the first element in the sequence.</p>
*
* <p>When this IGraphicElement needs to rebuild its sequence,
* it notifies the <code>IGraphicElementContainer</code> by calling its
* <code>invalidateGraphicElementSharing()</code> method.</p>
*
* @param sharedDisplayObject The shared DisplayObject.
*
* @return Returns <code>true</code> when this IGraphicElement can draw itself
* to the shared DisplayObject of the sequence.
*
* @see #canShareWithPrevious
* @see #canShareWithNext
* @see spark.core.IGraphicElementContainer#invalidateGraphicElementSharing
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 1.5
* @productversion Flex 4
*/
function setSharedDisplayObject(sharedDisplayObject:DisplayObject):Boolean;
/**
* Returns <code>true</code> if this IGraphicElement is compatible and can
* share display objects with the previous IGraphicElement
* in the sequence.
*
* <p>In certain cases the element might be passed to the <code>IGraphicElementContainer</code>
* in a call to the <code>setSharedDisplayObject()</code> method.
* In those cases, this method is not called.</p>
*
* @param element The element that comes before this element in the sequence.
*
* @return Returns <code>true</code> when this element is compatible with the previous
* element in the sequence.
*
* @see #canShareWithNext
* @see #setSharedDisplayObject
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 1.5
* @productversion Flex 4
*/
function canShareWithPrevious(element:IGraphicElement):Boolean;
/**
* Returns <code>true</code> if this IGraphicElement is compatible and can
* share display objects with the next IGraphicElement
* in the sequence.
*
* @param element The element that comes after this element in the sequence.
*
* @return Returns <code>true</code> when this element is compatible with the previous
* element in the sequence.
*
* @see #canShareWithPrevious
* @see #setSharedDisplayObject
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 1.5
* @productversion Flex 4
*/
function canShareWithNext(element:IGraphicElement):Boolean;
/**
* Called by <code>IGraphicElementContainer</code> when an IGraphicElement
* is added to or removed from the host component.
* <p>You typically never need to call this method.</p>
*
* @param parent The <code>IGraphicElementContainer</code> of this <code>IGraphicElement</code>.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 1.5
* @productversion Flex 4
*/
function parentChanged(parent:IGraphicElementContainer):void;
/**
* Called by the <code>IGraphicElementContainer</code> to validate the properties of
* this element.
*
* <p>To ensure that this method is called, notify the <code>IGraphicElementContainer</code>
* by calling its <code>invalidateGraphicElementProperties()</code> method.</p>
*
* <p>This method might be called even if this element has not
* notified the <code>IGraphicElementContainer</code>.</p>
*
* @see #validateSize
* @see #validateDisplayList
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 1.5
* @productversion Flex 4
*/
function validateProperties():void;
/**
* Called by the <code>IGraphicElementContainer</code> to validate the size of
* this element.
*
* <p>When the size of the element changes and is going to affect the
* <code>IGraphicElementContainer</code> layout, the implementer is responsible
* for invalidating the parent's size and display list.</p>
*
* <p>To ensure that this method is called, notify the <code>IGraphicElementContainer</code>
* by calling its <code>invalidateGraphicElementSize()</code> method.</p>
*
* <p>This method might be called even if this element has not
* notified the <code>IGraphicElementContainer</code>.</p>
*
* @see #validateProperties
* @see #validateDisplayList
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 1.5
* @productversion Flex 4
*/
function validateSize():void;
/**
* Called by the <code>IGraphicElementContainer</code> to redraw this element
* in its <code>displayObject</code> property.
*
* <p>If the element is the first in the sequence (<code>displayObjectSharingMode</code>
* is set to <code>DisplayObjectSharingMode.OWNS_SHARED_OBJECT</code>)
* then it must clear the <code>displayObject</code>
* graphics and set it up as necessary for drawing the rest of the elements.</p>
*
* <p>The element must alway redraw even if it itself has not changed
* since the last time the <code>validateDisplayList()</code> method was called.
* The parent <code>IGraphicElementContainer</code> will redraw the whole sequence
* if any of its elements need to be redrawn.</p>
*
* <p>To ensure this method is called, notify the <code>IGraphicElementContainer</code>
* by calling its <code>invalidateGraphicElementSize()</code> method.</p>
*
* <p>This method might be called even if this element has not
* notified the <code>IGraphicElementContainer</code>.</p>
*
* @see #displayObject
* @see #validateProperties
* @see #validateSize
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 1.5
* @productversion Flex 4
*/
function validateDisplayList():void;
}
}
|
package cmodule.lua_wrapper
{
import avm2.intrinsics.memory.li32;
import avm2.intrinsics.memory.si32;
public final class FSM_panic extends Machine
{
public static const intRegCount:int = 4;
public static const NumberRegCount:int = 0;
public var i0:int;
public var i1:int;
public var i2:int;
public var i3:int;
public function FSM_panic()
{
super();
}
public static function start() : void
{
var _loc1_:FSM_panic = null;
_loc1_ = new FSM_panic();
gstate.gworker = _loc1_;
}
override public final function work() : void
{
switch(state)
{
case 0:
mstate.esp -= 4;
si32(mstate.ebp,mstate.esp);
mstate.ebp = mstate.esp;
mstate.esp -= 0;
this.i0 = 0;
mstate.esp -= 12;
this.i1 = li32(mstate.ebp + 8);
this.i2 = -1;
si32(this.i1,mstate.esp);
si32(this.i2,mstate.esp + 4);
si32(this.i0,mstate.esp + 8);
state = 1;
mstate.esp -= 4;
FSM_lua_tolstring.start();
return;
case 1:
this.i1 = mstate.eax;
mstate.esp += 12;
this.i2 = ___sF;
mstate.esp -= 12;
this.i3 = __2E_str25199;
this.i2 += 176;
si32(this.i2,mstate.esp);
si32(this.i3,mstate.esp + 4);
si32(this.i1,mstate.esp + 8);
state = 2;
mstate.esp -= 4;
FSM_fprintf.start();
return;
case 2:
this.i1 = mstate.eax;
mstate.esp += 12;
mstate.eax = this.i0;
mstate.esp = mstate.ebp;
mstate.ebp = li32(mstate.esp);
mstate.esp += 4;
mstate.esp += 4;
mstate.gworker = caller;
return;
default:
throw "Invalid state in _panic";
}
}
}
}
|
////////////////////////////////////////////////////////////////////////////////
//
// ADOBE SYSTEMS INCORPORATED
// Copyright 2007 Adobe Systems Incorporated
// All Rights Reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////
package mx.core
{
import flash.display.Loader;
import flash.events.Event;
import flash.events.ErrorEvent;
import flash.events.ProgressEvent;
import flash.events.IOErrorEvent;
import flash.events.SecurityErrorEvent;
import flash.net.URLRequest;
import flash.system.LoaderContext;
import flash.system.ApplicationDomain;
import flash.system.LoaderContext;
import flash.system.Security;
import flash.system.SecurityDomain;
import flash.utils.ByteArray;
import mx.events.RSLEvent;
import mx.utils.LoaderUtil;
[ExcludeClass]
/**
* @private
* RSL Item Class
*
* Contains properties to describe the RSL and methods to help load the RSL.
*/
public class RSLItem
{
include "../core/Version.as";
//--------------------------------------------------------------------------
//
// Properties
//
//--------------------------------------------------------------------------
//----------------------------------
// urlRequest
//----------------------------------
/**
* @private
* Only valid after loading has started
*/
public var urlRequest:URLRequest;
//----------------------------------
// total
//----------------------------------
/**
* @private
*/
public var total:uint = 0;
//----------------------------------
// loaded
//----------------------------------
/**
* @private
*/
public var loaded:uint = 0;
//----------------------------------
// rootURL
//----------------------------------
/**
* @private
*
* Provides the url used to locate relative RSL urls.
*/
public var rootURL:String;
//--------------------------------------------------------------------------
//
// Variables
//
//--------------------------------------------------------------------------
/**
* @private
* External handlers so the load can be
* observed by the class calling load().
*/
protected var chainedProgressHandler:Function;
protected var chainedCompleteHandler:Function;
protected var chainedIOErrorHandler:Function;
protected var chainedSecurityErrorHandler:Function;
protected var chainedRSLErrorHandler:Function;
/**
* @private
*/
private var completed:Boolean = false;
/**
* @private
*/
private var errorText:String;
/**
* @private
*/
protected var moduleFactory:IFlexModuleFactory; // application/module loading this RSL.
/**
* @private
*/
protected var url:String;
//--------------------------------------------------------------------------
//
// Constructor
//
//--------------------------------------------------------------------------
/**
* Create a RSLItem with a given URL.
*
* @param url location of RSL to load
* @param rootURL provides the url used to locate relative RSL urls.
* @param moduleFactory The module factory that is loading the RSLs. The
* RSLs will be loaded into the application domain of the given module factory.
* If a module factory is not specified, then the RSLs will be loaded into the
* application domain of where the CrossDomainRSLItem class was first loaded.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public function RSLItem(url:String, rootURL:String = null,
moduleFactory:IFlexModuleFactory = null)
{
super();
this.url = url;
this.rootURL = rootURL;
this.moduleFactory = moduleFactory;
}
//--------------------------------------------------------------------------
//
// Methods
//
//--------------------------------------------------------------------------
/**
*
* Load an RSL.
*
* @param progressHandler Receives ProgressEvent.PROGRESS events.
* May be null.
*
* @param completeHandler Receives Event.COMPLETE events.
* May be null.
*
* @param ioErrorHandler Receives IOErrorEvent.IO_ERROR events.
* May be null.
*
* @param securityErrorHandler
* Receives SecurityErrorEvent.SECURITY_ERROR events.
* May be null.
*
* @param rslErrorHandler Receives RSLEvent.RSL_ERROR events.
* May be null.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public function load(progressHandler:Function,
completeHandler:Function,
ioErrorHandler:Function,
securityErrorHandler:Function,
rslErrorHandler:Function):void
{
chainedProgressHandler = progressHandler;
chainedCompleteHandler = completeHandler;
chainedIOErrorHandler = ioErrorHandler;
chainedSecurityErrorHandler = securityErrorHandler;
chainedRSLErrorHandler = rslErrorHandler;
var loader:Loader = new Loader();
var loaderContext:LoaderContext = new LoaderContext();
urlRequest = new URLRequest(LoaderUtil.createAbsoluteURL(rootURL, url));
// The RSLItem needs to listen to certain events.
loader.contentLoaderInfo.addEventListener(
ProgressEvent.PROGRESS, itemProgressHandler);
loader.contentLoaderInfo.addEventListener(
Event.COMPLETE, itemCompleteHandler);
loader.contentLoaderInfo.addEventListener(
IOErrorEvent.IO_ERROR, itemErrorHandler);
loader.contentLoaderInfo.addEventListener(
SecurityErrorEvent.SECURITY_ERROR, itemErrorHandler);
if (moduleFactory != null)
loaderContext.applicationDomain = moduleFactory.info()["currentDomain"];
else
loaderContext.applicationDomain = ApplicationDomain.currentDomain;
loader.load(urlRequest, loaderContext);
}
//--------------------------------------------------------------------------
//
// Event handlers
//
//--------------------------------------------------------------------------
/**
* @private
*/
public function itemProgressHandler(event:ProgressEvent):void
{
// Update the loaded and total properties.
loaded = event.bytesLoaded;
total = event.bytesTotal;
// Notify an external listener
if (chainedProgressHandler != null)
chainedProgressHandler(event);
}
/**
* @private
*/
public function itemCompleteHandler(event:Event):void
{
completed = true;
// Notify an external listener
if (chainedCompleteHandler != null)
chainedCompleteHandler(event);
}
/**
* @private
*/
public function itemErrorHandler(event:ErrorEvent):void
{
errorText = decodeURI(event.text);
completed = true;
loaded = 0;
total = 0;
trace(errorText);
// Notify an external listener
if (event.type == IOErrorEvent.IO_ERROR &&
chainedIOErrorHandler != null)
{
chainedIOErrorHandler(event);
}
else if (event.type == SecurityErrorEvent.SECURITY_ERROR &&
chainedSecurityErrorHandler != null)
{
chainedSecurityErrorHandler(event);
}
else if (event.type == RSLEvent.RSL_ERROR &&
chainedRSLErrorHandler != null)
{
chainedRSLErrorHandler(event);
}
}
}
}
|
package gov.iowadot.jetfire.operations
{
public class LatLongToLrs
{
import gov.iowadot.jetfire.Jetfire;
import mx.collections.ArrayCollection;
import mx.rpc.events.ResultEvent;
protected var ws:Jetfire = new Jetfire();
//Parameters
private var _vX:Number = new Number(0.0);
private var _vY:Number = new Number(0.0);
//Returned Values
[Bindable]
public var X:String = new String();
[Bindable]
public var Y:String = new String();
//Constructor
public function LatLongToLrs()
{
}
//Constructor
//public function LatLongToLrs(pLongitude:Number, pLatitude:Number)
//{
// _vX = pLongitude;
// _vY = pLatitude;
// onParamChanged();
//}
public function set Lon(value:Number):void
{
_vX = value;
onParamChanged();
}
[Bindable]
public function get Lon():Number
{
return _vX;
}
public function set Lat(value:Number):void
{
_vY = value;
onParamChanged();
}
[Bindable]
public function get Lat():Number
{
return _vY;
}
public function onParamChanged():void
{
ws.LatLongToLrs(_vX, _vY);
ws.addEventListener(ResultEvent.RESULT,onServiceResult);
}
private function onServiceResult(event:ResultEvent):void
{
try{
X = event.result.Coordinate.X;
Y = event.result.Coordinate.Y;
}
catch(e:Error){
}
dispatchEvent(new Event("onResultReturn"));
}
}
} |
UIElement@ browserWindow;
Window@ browserFilterWindow;
ListView@ browserDirList;
ListView@ browserFileList;
LineEdit@ browserSearch;
BrowserFile@ browserDragFile;
Node@ browserDragNode;
Component@ browserDragComponent;
View3D@ resourceBrowserPreview;
Scene@ resourcePreviewScene;
Node@ resourcePreviewNode;
Node@ resourcePreviewCameraNode;
Node@ resourcePreviewLightNode;
Light@ resourcePreviewLight;
int browserSearchSortMode = 0;
BrowserDir@ rootDir;
Array<BrowserFile@> browserFiles;
Dictionary browserDirs;
Array<int> activeResourceTypeFilters;
Array<int> activeResourceDirFilters;
Array<BrowserFile@> browserFilesToScan;
const uint BROWSER_WORKER_ITEMS_PER_TICK = 10;
const uint BROWSER_SEARCH_LIMIT = 50;
const int BROWSER_SORT_MODE_ALPHA = 1;
const int BROWSER_SORT_MODE_SEARCH = 2;
const int RESOURCE_TYPE_UNUSABLE = -2;
const int RESOURCE_TYPE_UNKNOWN = -1;
const int RESOURCE_TYPE_NOTSET = 0;
const int RESOURCE_TYPE_SCENE = 1;
const int RESOURCE_TYPE_SCRIPTFILE = 2;
const int RESOURCE_TYPE_MODEL = 3;
const int RESOURCE_TYPE_MATERIAL = 4;
const int RESOURCE_TYPE_ANIMATION = 5;
const int RESOURCE_TYPE_IMAGE = 6;
const int RESOURCE_TYPE_SOUND = 7;
const int RESOURCE_TYPE_TEXTURE = 8;
const int RESOURCE_TYPE_FONT = 9;
const int RESOURCE_TYPE_PREFAB = 10;
const int RESOURCE_TYPE_TECHNIQUE = 11;
const int RESOURCE_TYPE_PARTICLEEFFECT = 12;
const int RESOURCE_TYPE_UIELEMENT = 13;
const int RESOURCE_TYPE_UIELEMENTS = 14;
const int RESOURCE_TYPE_ANIMATION_SETTINGS = 15;
const int RESOURCE_TYPE_RENDERPATH = 16;
const int RESOURCE_TYPE_TEXTURE_ATLAS = 17;
const int RESOURCE_TYPE_2D_PARTICLE_EFFECT = 18;
const int RESOURCE_TYPE_TEXTURE_3D = 19;
const int RESOURCE_TYPE_CUBEMAP = 20;
const int RESOURCE_TYPE_PARTICLEEMITTER = 21;
const int RESOURCE_TYPE_2D_ANIMATION_SET = 22;
// any resource type > 0 is valid
const int NUMBER_OF_VALID_RESOURCE_TYPES = 22;
const StringHash XML_TYPE_SCENE("scene");
const StringHash XML_TYPE_NODE("node");
const StringHash XML_TYPE_MATERIAL("material");
const StringHash XML_TYPE_TECHNIQUE("technique");
const StringHash XML_TYPE_PARTICLEEFFECT("particleeffect");
const StringHash XML_TYPE_PARTICLEEMITTER("particleemitter");
const StringHash XML_TYPE_TEXTURE("texture");
const StringHash XML_TYPE_ELEMENT("element");
const StringHash XML_TYPE_ELEMENTS("elements");
const StringHash XML_TYPE_ANIMATION_SETTINGS("animation");
const StringHash XML_TYPE_RENDERPATH("renderpath");
const StringHash XML_TYPE_TEXTURE_ATLAS("TextureAtlas");
const StringHash XML_TYPE_2D_PARTICLE_EFFECT("particleEmitterConfig");
const StringHash XML_TYPE_TEXTURE_3D("texture3d");
const StringHash XML_TYPE_CUBEMAP("cubemap");
const StringHash XML_TYPE_SPRITER_DATA("spriter_data");
const StringHash JSON_TYPE_SCENE("scene");
const StringHash JSON_TYPE_NODE("node");
const StringHash JSON_TYPE_MATERIAL("material");
const StringHash JSON_TYPE_TECHNIQUE("technique");
const StringHash JSON_TYPE_PARTICLEEFFECT("particleeffect");
const StringHash JSON_TYPE_PARTICLEEMITTER("particleemitter");
const StringHash JSON_TYPE_TEXTURE("texture");
const StringHash JSON_TYPE_ELEMENT("element");
const StringHash JSON_TYPE_ELEMENTS("elements");
const StringHash JSON_TYPE_ANIMATION_SETTINGS("animation");
const StringHash JSON_TYPE_RENDERPATH("renderpath");
const StringHash JSON_TYPE_TEXTURE_ATLAS("TextureAtlas");
const StringHash JSON_TYPE_2D_PARTICLE_EFFECT("particleEmitterConfig");
const StringHash JSON_TYPE_TEXTURE_3D("texture3d");
const StringHash JSON_TYPE_CUBEMAP("cubemap");
const StringHash JSON_TYPE_SPRITER_DATA("spriter_data");
const StringHash BINARY_TYPE_SCENE("USCN");
const StringHash BINARY_TYPE_PACKAGE("UPAK");
const StringHash BINARY_TYPE_COMPRESSED_PACKAGE("ULZ4");
const StringHash BINARY_TYPE_ANGLESCRIPT("ASBC");
const StringHash BINARY_TYPE_MODEL("UMDL");
const StringHash BINARY_TYPE_SHADER("USHD");
const StringHash BINARY_TYPE_ANIMATION("UANI");
const StringHash EXTENSION_TYPE_TTF(".ttf");
const StringHash EXTENSION_TYPE_OTF(".otf");
const StringHash EXTENSION_TYPE_OGG(".ogg");
const StringHash EXTENSION_TYPE_WAV(".wav");
const StringHash EXTENSION_TYPE_DDS(".dds");
const StringHash EXTENSION_TYPE_PNG(".png");
const StringHash EXTENSION_TYPE_JPG(".jpg");
const StringHash EXTENSION_TYPE_JPEG(".jpeg");
const StringHash EXTENSION_TYPE_HDR(".hdr");
const StringHash EXTENSION_TYPE_BMP(".bmp");
const StringHash EXTENSION_TYPE_TGA(".tga");
const StringHash EXTENSION_TYPE_KTX(".ktx");
const StringHash EXTENSION_TYPE_PVR(".pvr");
const StringHash EXTENSION_TYPE_OBJ(".obj");
const StringHash EXTENSION_TYPE_FBX(".fbx");
const StringHash EXTENSION_TYPE_COLLADA(".dae");
const StringHash EXTENSION_TYPE_BLEND(".blend");
const StringHash EXTENSION_TYPE_ANGELSCRIPT(".as");
const StringHash EXTENSION_TYPE_LUASCRIPT(".lua");
const StringHash EXTENSION_TYPE_HLSL(".hlsl");
const StringHash EXTENSION_TYPE_GLSL(".glsl");
const StringHash EXTENSION_TYPE_FRAGMENTSHADER(".frag");
const StringHash EXTENSION_TYPE_VERTEXSHADER(".vert");
const StringHash EXTENSION_TYPE_HTML(".html");
const StringHash TEXT_VAR_FILE_ID("browser_file_id");
const StringHash TEXT_VAR_DIR_ID("browser_dir_id");
const StringHash TEXT_VAR_RESOURCE_TYPE("resource_type");
const StringHash TEXT_VAR_RESOURCE_DIR_ID("resource_dir_id");
const int BROWSER_FILE_SOURCE_RESOURCE_DIR = 1;
uint browserDirIndex = 1;
uint browserFileIndex = 1;
BrowserDir@ selectedBrowserDirectory;
BrowserFile@ selectedBrowserFile;
Text@ browserStatusMessage;
Text@ browserResultsMessage;
bool ignoreRefreshBrowserResults = false;
String resourceDirsCache;
void CreateResourceBrowser()
{
if (browserWindow !is null) return;
CreateResourceBrowserUI();
InitResourceBrowserPreview();
RebuildResourceDatabase();
}
void RebuildResourceDatabase()
{
if (browserWindow is null)
return;
String newResourceDirsCache = Join(cache.resourceDirs, ';');
ScanResourceDirectories();
if (newResourceDirsCache != resourceDirsCache)
{
resourceDirsCache = newResourceDirsCache;
PopulateResourceDirFilters();
}
PopulateBrowserDirectories();
PopulateResourceBrowserFilesByDirectory(rootDir);
}
void ScanResourceDirectories()
{
browserDirs.Clear();
browserFiles.Clear();
browserFilesToScan.Clear();
rootDir = BrowserDir("");
browserDirs.Set("", @rootDir);
// collect all of the items and sort them afterwards
for(uint i=0; i < cache.resourceDirs.length; ++i)
{
if (activeResourceDirFilters.Find(i) > -1)
continue;
ScanResourceDir(i);
}
}
// used to stop ui from blocking while determining file types
void DoResourceBrowserWork()
{
if (browserFilesToScan.length == 0)
return;
int counter = 0;
bool updateBrowserUI = false;
BrowserFile@ scanItem = browserFilesToScan[0];
while(counter < BROWSER_WORKER_ITEMS_PER_TICK)
{
scanItem.DetermainResourceType();
// next
browserFilesToScan.Erase(0);
if (browserFilesToScan.length > 0)
@scanItem = browserFilesToScan[0];
else
break;
counter++;
}
if (browserFilesToScan.length > 0)
browserStatusMessage.text = localization.Get("Files left to scan: " )+ browserFilesToScan.length;
else
browserStatusMessage.text = localization.Get("Scan complete");
}
void CreateResourceBrowserUI()
{
browserWindow = LoadEditorUI("UI/EditorResourceBrowser.xml");
browserDirList = browserWindow.GetChild("DirectoryList", true);
browserFileList = browserWindow.GetChild("FileList", true);
browserSearch = browserWindow.GetChild("Search", true);
browserStatusMessage = browserWindow.GetChild("StatusMessage", true);
browserResultsMessage = browserWindow.GetChild("ResultsMessage", true);
// browserWindow.visible = false;
browserWindow.opacity = uiMaxOpacity;
browserFilterWindow = LoadEditorUI("UI/EditorResourceFilterWindow.xml");
CreateResourceFilterUI();
HideResourceFilterWindow();
int height = Min(ui.root.height / 4, 300);
browserWindow.SetSize(900, height);
browserWindow.SetPosition(35, ui.root.height - height - 25);
CloseContextMenu();
ui.root.AddChild(browserWindow);
ui.root.AddChild(browserFilterWindow);
SubscribeToEvent(browserWindow.GetChild("CloseButton", true), "Released", "HideResourceBrowserWindow");
SubscribeToEvent(browserWindow.GetChild("RescanButton", true), "Released", "HandleRescanResourceBrowserClick");
SubscribeToEvent(browserWindow.GetChild("FilterButton", true), "Released", "ToggleResourceFilterWindow");
SubscribeToEvent(browserDirList, "SelectionChanged", "HandleResourceBrowserDirListSelectionChange");
SubscribeToEvent(browserSearch, "TextChanged", "HandleResourceBrowserSearchTextChange");
SubscribeToEvent(browserFileList, "ItemClicked", "HandleBrowserFileClick");
SubscribeToEvent(browserFileList, "SelectionChanged", "HandleResourceBrowserFileListSelectionChange");
SubscribeToEvent(cache, "FileChanged", "HandleFileChanged");
}
void CreateResourceFilterUI()
{
UIElement@ options = browserFilterWindow.GetChild("TypeOptions", true);
CheckBox@ toggleAllTypes = browserFilterWindow.GetChild("ToggleAllTypes", true);
CheckBox@ toggleAllResourceDirs = browserFilterWindow.GetChild("ToggleAllResourceDirs", true);
SubscribeToEvent(toggleAllTypes, "Toggled", "HandleResourceTypeFilterToggleAllTypesToggled");
SubscribeToEvent(toggleAllResourceDirs, "Toggled", "HandleResourceDirFilterToggleAllTypesToggled");
SubscribeToEvent(browserFilterWindow.GetChild("CloseButton", true), "Released", "HideResourceFilterWindow");
int columns = 2;
UIElement@ col1 = browserFilterWindow.GetChild("TypeFilterColumn1", true);
UIElement@ col2 = browserFilterWindow.GetChild("TypeFilterColumn2", true);
// use array to get sort of items
Array<ResourceType@> sorted;
for (int i=1; i <= NUMBER_OF_VALID_RESOURCE_TYPES; ++i)
sorted.Push(ResourceType(i, ResourceTypeName(i)));
// 2 unknown types are reserved for the top, the rest are alphabetized
sorted.Sort();
sorted.Insert(0, ResourceType(RESOURCE_TYPE_UNKNOWN, ResourceTypeName(RESOURCE_TYPE_UNKNOWN)) );
sorted.Insert(0, ResourceType(RESOURCE_TYPE_UNUSABLE, ResourceTypeName(RESOURCE_TYPE_UNUSABLE)) );
uint halfColumns = uint( Ceil( float(sorted.length) / float(columns) ) );
for (uint i = 0; i < sorted.length; ++i)
{
ResourceType@ type = sorted[i];
UIElement@ resourceTypeHolder = UIElement();
if (i < halfColumns)
col1.AddChild(resourceTypeHolder);
else
col2.AddChild(resourceTypeHolder);
resourceTypeHolder.layoutMode = LM_HORIZONTAL;
resourceTypeHolder.layoutSpacing = 4;
Text@ label = Text();
label.style = "EditorAttributeText";
label.text = type.name;
CheckBox@ checkbox = CheckBox();
checkbox.name = type.id;
checkbox.SetStyleAuto();
checkbox.vars[TEXT_VAR_RESOURCE_TYPE] = i;
checkbox.checked = true;
SubscribeToEvent(checkbox, "Toggled", "HandleResourceTypeFilterToggled");
resourceTypeHolder.AddChild(checkbox);
resourceTypeHolder.AddChild(label);
}
}
void CreateDirList(BrowserDir@ dir, UIElement@ parentUI = null)
{
Text@ dirText = Text();
browserDirList.InsertItem(browserDirList.numItems, dirText, parentUI);
dirText.style = "FileSelectorListText";
dirText.text = dir.resourceKey.empty ? localization.Get("Root") : dir.name;
dirText.name = dir.resourceKey;
dirText.vars[TEXT_VAR_DIR_ID] = dir.resourceKey;
// Sort directories alphetically
browserSearchSortMode = BROWSER_SORT_MODE_ALPHA;
dir.children.Sort();
for(uint i=0; i<dir.children.length; ++i)
CreateDirList(dir.children[i], dirText);
}
void CreateFileList(BrowserFile@ file)
{
Text@ fileText = Text();
fileText.style = "FileSelectorListText";
fileText.layoutMode = LM_HORIZONTAL;
browserFileList.InsertItem(browserFileList.numItems, fileText);
file.browserFileListRow = fileText;
InitializeBrowserFileListRow(fileText, file);
}
void InitializeBrowserFileListRow(Text@ fileText, BrowserFile@ file)
{
fileText.RemoveAllChildren();
VariantMap params = VariantMap();
fileText.vars[TEXT_VAR_FILE_ID] = file.id;
fileText.vars[TEXT_VAR_RESOURCE_TYPE] = file.resourceType;
if (file.resourceType > 0)
fileText.dragDropMode = DD_SOURCE;
{
Text@ text = Text();
fileText.AddChild(text);
text.style = "FileSelectorListText";
text.text = file.fullname;
text.name = file.resourceKey;
}
{
Text@ text = Text();
fileText.AddChild(text);
text.style = "FileSelectorListText";
text.text = file.ResourceTypeName();
}
if (file.resourceType == RESOURCE_TYPE_MATERIAL ||
file.resourceType == RESOURCE_TYPE_MODEL ||
file.resourceType == RESOURCE_TYPE_PARTICLEEFFECT ||
file.resourceType == RESOURCE_TYPE_PREFAB
)
{
SubscribeToEvent(fileText, "DragBegin", "HandleBrowserFileDragBegin");
SubscribeToEvent(fileText, "DragEnd", "HandleBrowserFileDragEnd");
}
}
void InitResourceBrowserPreview()
{
resourcePreviewScene = Scene("PreviewScene");
resourcePreviewScene.CreateComponent("Octree");
PhysicsWorld@ physicsWorld = resourcePreviewScene.CreateComponent("PhysicsWorld");
physicsWorld.enabled = false;
physicsWorld.gravity = Vector3(0.0, 0.0, 0.0);
Node@ zoneNode = resourcePreviewScene.CreateChild("Zone");
Zone@ zone = zoneNode.CreateComponent("Zone");
zone.boundingBox = BoundingBox(-1000, 1000);
zone.ambientColor = Color(0.15, 0.15, 0.15);
zone.fogColor = Color(0, 0, 0);
zone.fogStart = 10.0;
zone.fogEnd = 100.0;
resourcePreviewCameraNode = resourcePreviewScene.CreateChild("PreviewCamera");
resourcePreviewCameraNode.position = Vector3(0, 0, -1.5);
Camera@ camera = resourcePreviewCameraNode.CreateComponent("Camera");
camera.nearClip = 0.1f;
camera.farClip = 100.0f;
resourcePreviewLightNode = resourcePreviewScene.CreateChild("PreviewLight");
resourcePreviewLightNode.direction = Vector3(0.5, -0.5, 0.5);
resourcePreviewLight = resourcePreviewLightNode.CreateComponent("Light");
resourcePreviewLight.lightType = LIGHT_DIRECTIONAL;
resourcePreviewLight.specularIntensity = 0.5;
resourceBrowserPreview = browserWindow.GetChild("ResourceBrowserPreview", true);
resourceBrowserPreview.SetFixedHeight(200);
resourceBrowserPreview.SetFixedWidth(266);
resourceBrowserPreview.SetView(resourcePreviewScene, camera);
resourceBrowserPreview.autoUpdate = false;
resourcePreviewNode = resourcePreviewScene.CreateChild("PreviewNodeContainer");
SubscribeToEvent(resourceBrowserPreview, "DragMove", "RotateResourceBrowserPreview");
RefreshBrowserPreview();
}
// Opens a contextual menu based on what resource item was actioned
void HandleBrowserFileClick(StringHash eventType, VariantMap& eventData)
{
if (eventData["Button"].GetInt() != MOUSEB_RIGHT)
return;
UIElement@ uiElement = eventData["Item"].GetPtr();
BrowserFile@ file = GetBrowserFileFromUIElement(uiElement);
if (file is null)
return;
Array<UIElement@> actions;
if (file.resourceType == RESOURCE_TYPE_MATERIAL)
{
actions.Push(CreateBrowserFileActionMenu("Edit", "HandleBrowserEditResource", file));
}
else if (file.resourceType == RESOURCE_TYPE_MODEL)
{
actions.Push(CreateBrowserFileActionMenu("Instance Animated Model", "HandleBrowserInstantiateAnimatedModel", file));
actions.Push(CreateBrowserFileActionMenu("Instance Static Model", "HandleBrowserInstantiateStaticModel", file));
}
else if (file.resourceType == RESOURCE_TYPE_PREFAB)
{
actions.Push(CreateBrowserFileActionMenu("Instance Prefab", "HandleBrowserInstantiatePrefab", file));
actions.Push(CreateBrowserFileActionMenu("Instance in Spawner", "HandleBrowserInstantiateInSpawnEditor", file));
}
else if (file.fileType == EXTENSION_TYPE_OBJ ||
file.fileType == EXTENSION_TYPE_COLLADA ||
file.fileType == EXTENSION_TYPE_FBX ||
file.fileType == EXTENSION_TYPE_BLEND)
{
actions.Push(CreateBrowserFileActionMenu("Import Model", "HandleBrowserImportModel", file));
actions.Push(CreateBrowserFileActionMenu("Import Scene", "HandleBrowserImportScene", file));
}
else if (file.resourceType == RESOURCE_TYPE_UIELEMENT)
{
actions.Push(CreateBrowserFileActionMenu("Open UI Layout", "HandleBrowserOpenUILayout", file));
}
else if (file.resourceType == RESOURCE_TYPE_SCENE)
{
actions.Push(CreateBrowserFileActionMenu("Load Scene", "HandleBrowserLoadScene", file));
}
else if (file.resourceType == RESOURCE_TYPE_SCRIPTFILE)
{
actions.Push(CreateBrowserFileActionMenu("Execute Script", "HandleBrowserRunScript", file));
}
else if (file.resourceType == RESOURCE_TYPE_PARTICLEEFFECT)
{
actions.Push(CreateBrowserFileActionMenu("Edit", "HandleBrowserEditResource", file));
}
actions.Push(CreateBrowserFileActionMenu("Open", "HandleBrowserOpenResource", file));
ActivateContextMenu(actions);
}
BrowserDir@ GetBrowserDir(String path)
{
BrowserDir@ browserDir;
browserDirs.Get(path, @browserDir);
return browserDir;
}
// Makes sure the entire directory tree exists and new dir is linked to parent
BrowserDir@ InitBrowserDir(String path)
{
BrowserDir@ browserDir;
if (browserDirs.Get(path, @browserDir))
return browserDir;
Array<String> parts = path.Split('/');
Array<String> finishedParts;
if (parts.length > 0)
{
BrowserDir@ parent = rootDir;
for( uint i = 0; i < parts.length; ++i )
{
finishedParts.Push(parts[i]);
String currentPath = Join(finishedParts, "/");
if (!browserDirs.Get(currentPath, @browserDir))
{
browserDir = BrowserDir(currentPath);
browserDirs.Set(currentPath, @browserDir);
parent.children.Push(browserDir);
}
@parent = browserDir;
}
return browserDir;
}
return null;
}
void ScanResourceDir(uint resourceDirIndex)
{
String resourceDir = cache.resourceDirs[resourceDirIndex];
ScanResourceDirFiles("", resourceDirIndex);
Array<String> dirs = fileSystem.ScanDir(resourceDir, "*", SCAN_DIRS, true);
for (uint i=0; i < dirs.length; ++i)
{
String path = dirs[i];
if (path.EndsWith("."))
continue;
InitBrowserDir(path);
ScanResourceDirFiles(path, resourceDirIndex);
}
}
void ScanResourceDirFiles(String path, uint resourceDirIndex)
{
String fullPath = cache.resourceDirs[resourceDirIndex] + path;
if (!fileSystem.DirExists(fullPath))
return;
BrowserDir@ dir = GetBrowserDir(path);
if (dir is null)
return;
// get files in directory
Array<String> dirFiles = fileSystem.ScanDir(fullPath, "*.*", SCAN_FILES, false);
// add new files
for (uint x=0; x < dirFiles.length; x++)
{
String filename = dirFiles[x];
BrowserFile@ browserFile = dir.AddFile(filename, resourceDirIndex, BROWSER_FILE_SOURCE_RESOURCE_DIR);
browserFiles.Push(browserFile);
browserFilesToScan.Push(browserFile);
}
}
bool ToggleResourceBrowserWindow()
{
if (browserWindow.visible == false)
ShowResourceBrowserWindow();
else
HideResourceBrowserWindow();
return true;
}
void ShowResourceBrowserWindow()
{
browserWindow.visible = true;
browserWindow.BringToFront();
ui.focusElement = browserSearch;
}
void HideResourceBrowserWindow()
{
browserWindow.visible = false;
}
void ToggleResourceFilterWindow()
{
if (browserFilterWindow.visible)
HideResourceFilterWindow();
else
ShowResourceFilterWindow();
}
void HideResourceFilterWindow()
{
browserFilterWindow.visible = false;
}
void ShowResourceFilterWindow()
{
int x = browserWindow.position.x + browserWindow.width - browserFilterWindow.width;
int y = browserWindow.position.y - browserFilterWindow.height - 1;
browserFilterWindow.position = IntVector2(x,y);
browserFilterWindow.visible = true;
browserFilterWindow.BringToFront();
}
void PopulateResourceDirFilters()
{
UIElement@ resourceDirs = browserFilterWindow.GetChild("DirFilters", true);
resourceDirs.RemoveAllChildren();
activeResourceDirFilters.Clear();
for (uint i=0; i < cache.resourceDirs.length; ++i)
{
UIElement@ resourceDirHolder = UIElement();
resourceDirs.AddChild(resourceDirHolder);
resourceDirHolder.layoutMode = LM_HORIZONTAL;
resourceDirHolder.layoutSpacing = 4;
resourceDirHolder.SetFixedHeight(16);
Text@ label = Text();
label.style = "EditorAttributeText";
label.text = cache.resourceDirs[i].Replaced(fileSystem.programDir, "");
CheckBox@ checkbox = CheckBox();
checkbox.name = i;
checkbox.SetStyleAuto();
checkbox.vars[TEXT_VAR_RESOURCE_DIR_ID] = i;
checkbox.checked = true;
SubscribeToEvent(checkbox, "Toggled", "HandleResourceDirFilterToggled");
resourceDirHolder.AddChild(checkbox);
resourceDirHolder.AddChild(label);
}
}
void PopulateBrowserDirectories()
{
browserDirList.RemoveAllItems();
CreateDirList(rootDir);
browserDirList.selection = 0;
}
void PopulateResourceBrowserFilesByDirectory(BrowserDir@ dir)
{
@selectedBrowserDirectory = dir;
browserFileList.RemoveAllItems();
if (dir is null) return;
Array<BrowserFile@> files;
for(uint x=0; x < dir.files.length; x++)
{
BrowserFile@ file = dir.files[x];
if (activeResourceTypeFilters.Find(file.resourceType) == -1)
files.Push(file);
}
// Sort alphetically
browserSearchSortMode = BROWSER_SORT_MODE_ALPHA;
files.Sort();
PopulateResourceBrowserResults(files);
browserResultsMessage.text = localization.Get("Showing files: ") + files.length;
}
void PopulateResourceBrowserBySearch()
{
String query = browserSearch.text;
Array<int> scores;
Array<BrowserFile@> scored;
Array<BrowserFile@> filtered;
{
BrowserFile@ file;
for(uint x=0; x < browserFiles.length; x++)
{
@file = browserFiles[x];
file.sortScore = -1;
if (activeResourceTypeFilters.Find(file.resourceType) > -1)
continue;
if (activeResourceDirFilters.Find(file.resourceSourceIndex) > -1)
continue;
int find = file.fullname.Find(query, 0, false);
if (find > -1)
{
int fudge = query.length - file.fullname.length;
int score = find * int(Abs(fudge*2)) + int(Abs(fudge));
file.sortScore = score;
scored.Push(file);
scores.Push(score);
}
}
}
// cut this down for a faster sort
if (scored.length > BROWSER_SEARCH_LIMIT)
{
scores.Sort();
int scoreThreshold = scores[BROWSER_SEARCH_LIMIT];
BrowserFile@ file;
for(uint x=0;x<scored.length;x++)
{
file = scored[x];
if (file.sortScore <= scoreThreshold)
filtered.Push(file);
}
}
else
filtered = scored;
browserSearchSortMode = BROWSER_SORT_MODE_ALPHA;
filtered.Sort();
PopulateResourceBrowserResults(filtered);
browserResultsMessage.text = "Showing top " + filtered.length + " of " + scored.length + " results";
}
void PopulateResourceBrowserResults(Array<BrowserFile@>@ files)
{
browserFileList.RemoveAllItems();
for(uint i=0; i < files.length; ++i)
CreateFileList(files[i]);
}
void RefreshBrowserResults()
{
if (browserSearch.text.empty)
{
browserDirList.visible = true;
PopulateResourceBrowserFilesByDirectory(selectedBrowserDirectory);
}
else
{
browserDirList.visible = false;
PopulateResourceBrowserBySearch();
}
}
void HandleResourceTypeFilterToggleAllTypesToggled(StringHash eventType, VariantMap& eventData)
{
CheckBox@ checkbox = eventData["Element"].GetPtr();
UIElement@ filterHolder = browserFilterWindow.GetChild("TypeFilters", true);
Array<UIElement@> children = filterHolder.GetChildren(true);
ignoreRefreshBrowserResults = true;
for(uint i=0; i < children.length; ++i)
{
CheckBox@ filter = children[i];
if (filter !is null)
filter.checked = checkbox.checked;
}
ignoreRefreshBrowserResults = false;
RefreshBrowserResults();
}
void HandleResourceTypeFilterToggled(StringHash eventType, VariantMap& eventData)
{
CheckBox@ checkbox = eventData["Element"].GetPtr();
if (!checkbox.vars.Contains(TEXT_VAR_RESOURCE_TYPE))
return;
int resourceType = checkbox.GetVar(TEXT_VAR_RESOURCE_TYPE).GetInt();
int find = activeResourceTypeFilters.Find(resourceType);
if (checkbox.checked && find != -1)
activeResourceTypeFilters.Erase(find);
else if (!checkbox.checked && find == -1)
activeResourceTypeFilters.Push(resourceType);
if (ignoreRefreshBrowserResults == false)
RefreshBrowserResults();
}
void HandleResourceDirFilterToggleAllTypesToggled(StringHash eventType, VariantMap& eventData)
{
CheckBox@ checkbox = eventData["Element"].GetPtr();
UIElement@ filterHolder = browserFilterWindow.GetChild("DirFilters", true);
Array<UIElement@> children = filterHolder.GetChildren(true);
ignoreRefreshBrowserResults = true;
for(uint i=0; i < children.length; ++i)
{
CheckBox@ filter = children[i];
if (filter !is null)
filter.checked = checkbox.checked;
}
ignoreRefreshBrowserResults = false;
RebuildResourceDatabase();
}
void HandleResourceDirFilterToggled(StringHash eventType, VariantMap& eventData)
{
CheckBox@ checkbox = eventData["Element"].GetPtr();
if (!checkbox.vars.Contains(TEXT_VAR_RESOURCE_DIR_ID))
return;
int resourceDir = checkbox.GetVar(TEXT_VAR_RESOURCE_DIR_ID).GetInt();
int find = activeResourceDirFilters.Find(resourceDir);
if (checkbox.checked && find != -1)
activeResourceDirFilters.Erase(find);
else if (!checkbox.checked && find == -1)
activeResourceDirFilters.Push(resourceDir);
if (ignoreRefreshBrowserResults == false)
RebuildResourceDatabase();
}
void HandleRescanResourceBrowserClick(StringHash eventType, VariantMap& eventData)
{
RebuildResourceDatabase();
}
void HandleResourceBrowserDirListSelectionChange(StringHash eventType, VariantMap& eventData)
{
if (browserDirList.selection == M_MAX_UNSIGNED)
return;
UIElement@ uiElement = browserDirList.GetItems()[browserDirList.selection];
BrowserDir@ dir = GetBrowserDir(uiElement.vars[TEXT_VAR_DIR_ID].GetString());
if (dir is null)
return;
PopulateResourceBrowserFilesByDirectory(dir);
}
void HandleResourceBrowserFileListSelectionChange(StringHash eventType, VariantMap& eventData)
{
if (browserFileList.selection == M_MAX_UNSIGNED)
return;
UIElement@ uiElement = browserFileList.GetItems()[browserFileList.selection];
BrowserFile@ file = GetBrowserFileFromUIElement(uiElement);
if (file is null)
return;
if (resourcePreviewNode !is null)
resourcePreviewNode.Remove();
resourcePreviewNode = resourcePreviewScene.CreateChild("PreviewNodeContainer");
CreateResourcePreview(file.GetFullPath(), resourcePreviewNode);
if (resourcePreviewNode !is null)
{
Array<BoundingBox> boxes;
Array<Component@> staticModels = resourcePreviewNode.GetComponents("StaticModel", true);
Array<Component@> animatedModels = resourcePreviewNode.GetComponents("AnimatedModel", true);
for (uint i = 0; i < staticModels.length; ++i)
boxes.Push(cast<StaticModel>(staticModels[i]).worldBoundingBox);
for (uint i = 0; i < animatedModels.length; ++i)
boxes.Push(cast<AnimatedModel>(animatedModels[i]).worldBoundingBox);
if (boxes.length > 0)
{
Vector3 camPosition = Vector3(0.0, 0.0, -1.2);
BoundingBox biggestBox = boxes[0];
for (uint i = 1; i < boxes.length; ++i)
{
if (boxes[i].size.length > biggestBox.size.length)
biggestBox = boxes[i];
}
resourcePreviewCameraNode.position = biggestBox.center + camPosition * biggestBox.size.length;
}
resourcePreviewScene.AddChild(resourcePreviewNode);
RefreshBrowserPreview();
}
}
void HandleResourceBrowserSearchTextChange(StringHash eventType, VariantMap& eventData)
{
RefreshBrowserResults();
}
BrowserFile@ GetBrowserFileFromId(uint id)
{
if (id == 0)
return null;
BrowserFile@ file;
for(uint i=0; i<browserFiles.length; ++i)
{
@file = @browserFiles[i];
if (file.id == id) return file;
}
return null;
}
BrowserFile@ GetBrowserFileFromUIElement(UIElement@ element)
{
if (element is null || !element.vars.Contains(TEXT_VAR_FILE_ID))
return null;
return GetBrowserFileFromId(element.vars[TEXT_VAR_FILE_ID].GetUInt());
}
BrowserFile@ GetBrowserFileFromPath(String path)
{
for (uint i=0; i < browserFiles.length; ++i)
{
BrowserFile@ file = browserFiles[i];
if (path == file.GetFullPath())
return file;
}
return null;
}
void HandleBrowserEditResource(StringHash eventType, VariantMap& eventData)
{
UIElement@ element = eventData["Element"].GetPtr();
BrowserFile@ file = GetBrowserFileFromUIElement(element);
if (file is null)
return;
if (file.resourceType == RESOURCE_TYPE_MATERIAL)
{
Material@ material = cache.GetResource("Material", file.resourceKey);
if (material !is null)
EditMaterial(material);
}
if (file.resourceType == RESOURCE_TYPE_PARTICLEEFFECT)
{
ParticleEffect@ particleEffect = cache.GetResource("ParticleEffect", file.resourceKey);
if (particleEffect !is null)
EditParticleEffect(particleEffect);
}
}
void HandleBrowserOpenResource(StringHash eventType, VariantMap& eventData)
{
UIElement@ element = eventData["Element"].GetPtr();
BrowserFile@ file = GetBrowserFileFromUIElement(element);
if (file !is null)
OpenResource(file.resourceKey);
}
void HandleBrowserImportScene(StringHash eventType, VariantMap& eventData)
{
UIElement@ element = eventData["Element"].GetPtr();
BrowserFile@ file = GetBrowserFileFromUIElement(element);
if (file !is null)
ImportScene(file.GetFullPath());
}
void HandleBrowserImportModel(StringHash eventType, VariantMap& eventData)
{
UIElement@ element = eventData["Element"].GetPtr();
BrowserFile@ file = GetBrowserFileFromUIElement(element);
if (file !is null)
ImportModel(file.GetFullPath());
}
void HandleBrowserOpenUILayout(StringHash eventType, VariantMap& eventData)
{
UIElement@ element = eventData["Element"].GetPtr();
BrowserFile@ file = GetBrowserFileFromUIElement(element);
if (file !is null)
OpenUILayout(file.GetFullPath());
}
void HandleBrowserInstantiateStaticModel(StringHash eventType, VariantMap& eventData)
{
UIElement@ element = eventData["Element"].GetPtr();
BrowserFile@ file = GetBrowserFileFromUIElement(element);
if (file !is null)
CreateModelWithStaticModel(file.resourceKey, editNode);
}
void HandleBrowserInstantiateAnimatedModel(StringHash eventType, VariantMap& eventData)
{
UIElement@ element = eventData["Element"].GetPtr();
BrowserFile@ file = GetBrowserFileFromUIElement(element);
if (file !is null)
CreateModelWithAnimatedModel(file.resourceKey, editNode);
}
void HandleBrowserInstantiatePrefab(StringHash eventType, VariantMap& eventData)
{
UIElement@ element = eventData["Element"].GetPtr();
BrowserFile@ file = GetBrowserFileFromUIElement(element);
if (file !is null)
LoadNode(file.GetFullPath());
}
void HandleBrowserInstantiateInSpawnEditor(StringHash eventType, VariantMap& eventData)
{
UIElement@ element = eventData["Element"].GetPtr();
BrowserFile@ file = GetBrowserFileFromUIElement(element);
if (file !is null)
{
spawnedObjectsNames.Resize(1);
spawnedObjectsNames[0] = VerifySpawnedObjectFile(file.GetPath());
RefreshPickedObjects();
ShowSpawnEditor();
}
}
void HandleBrowserLoadScene(StringHash eventType, VariantMap& eventData)
{
UIElement@ element = eventData["Element"].GetPtr();
BrowserFile@ file = GetBrowserFileFromUIElement(element);
if (file !is null)
LoadScene(file.GetFullPath());
}
void HandleBrowserRunScript(StringHash eventType, VariantMap& eventData)
{
UIElement@ element = eventData["Element"].GetPtr();
BrowserFile@ file = GetBrowserFileFromUIElement(element);
if (file !is null)
ExecuteScript(ExtractFileName(eventData));
}
void HandleBrowserFileDragBegin(StringHash eventType, VariantMap& eventData)
{
UIElement@ uiElement = eventData["Element"].GetPtr();
@browserDragFile = GetBrowserFileFromUIElement(uiElement);
}
void HandleBrowserFileDragEnd(StringHash eventType, VariantMap& eventData)
{
if (@browserDragFile is null)
return;
UIElement@ element = ui.GetElementAt(ui.cursor.screenPosition);
if (element !is null)
return;
if (browserDragFile.resourceType == RESOURCE_TYPE_MATERIAL)
{
StaticModel@ model = cast<StaticModel>(GetDrawableAtMousePostion());
if (model !is null)
{
AssignMaterial(model, browserDragFile.resourceKey);
}
}
browserDragFile = null;
browserDragComponent = null;
browserDragNode = null;
}
void HandleFileChanged(StringHash eventType, VariantMap& eventData)
{
String filename = eventData["FileName"].GetString();
BrowserFile@ file = GetBrowserFileFromPath(filename);
if (file is null)
{
// TODO: new file logic when watchers are supported
return;
}
else
{
file.FileChanged();
}
}
Menu@ CreateBrowserFileActionMenu(String text, String handler, BrowserFile@ browserFile = null)
{
Menu@ menu = CreateContextMenuItem(text, handler);
if (browserFile !is null)
menu.vars[TEXT_VAR_FILE_ID] = browserFile.id;
return menu;
}
int GetResourceType(String path)
{
StringHash fileType;
return GetResourceType(path, fileType);
}
int GetResourceType(String path, StringHash &out fileType, bool useCache = false)
{
if (GetExtensionType(path, fileType) || GetBinaryType(path, fileType, useCache) || GetXmlType(path, fileType, useCache))
return GetResourceType(fileType);
return RESOURCE_TYPE_UNKNOWN;
}
int GetResourceType(StringHash fileType)
{
// binary fileTypes
if (fileType == BINARY_TYPE_SCENE)
return RESOURCE_TYPE_SCENE;
else if (fileType == BINARY_TYPE_PACKAGE)
return RESOURCE_TYPE_UNUSABLE;
else if (fileType == BINARY_TYPE_COMPRESSED_PACKAGE)
return RESOURCE_TYPE_UNUSABLE;
else if (fileType == BINARY_TYPE_ANGLESCRIPT)
return RESOURCE_TYPE_SCRIPTFILE;
else if (fileType == BINARY_TYPE_MODEL)
return RESOURCE_TYPE_MODEL;
else if (fileType == BINARY_TYPE_SHADER)
return RESOURCE_TYPE_UNUSABLE;
else if (fileType == BINARY_TYPE_ANIMATION)
return RESOURCE_TYPE_ANIMATION;
// xml fileTypes
else if (fileType == XML_TYPE_SCENE)
return RESOURCE_TYPE_SCENE;
else if (fileType == XML_TYPE_NODE)
return RESOURCE_TYPE_PREFAB;
else if(fileType == XML_TYPE_MATERIAL)
return RESOURCE_TYPE_MATERIAL;
else if(fileType == XML_TYPE_TECHNIQUE)
return RESOURCE_TYPE_TECHNIQUE;
else if(fileType == XML_TYPE_PARTICLEEFFECT)
return RESOURCE_TYPE_PARTICLEEFFECT;
else if(fileType == XML_TYPE_PARTICLEEMITTER)
return RESOURCE_TYPE_PARTICLEEMITTER;
else if(fileType == XML_TYPE_TEXTURE)
return RESOURCE_TYPE_TEXTURE;
else if(fileType == XML_TYPE_ELEMENT)
return RESOURCE_TYPE_UIELEMENT;
else if(fileType == XML_TYPE_ELEMENTS)
return RESOURCE_TYPE_UIELEMENTS;
else if (fileType == XML_TYPE_ANIMATION_SETTINGS)
return RESOURCE_TYPE_ANIMATION_SETTINGS;
else if (fileType == XML_TYPE_RENDERPATH)
return RESOURCE_TYPE_RENDERPATH;
else if (fileType == XML_TYPE_TEXTURE_ATLAS)
return RESOURCE_TYPE_TEXTURE_ATLAS;
else if (fileType == XML_TYPE_2D_PARTICLE_EFFECT)
return RESOURCE_TYPE_2D_PARTICLE_EFFECT;
else if (fileType == XML_TYPE_TEXTURE_3D)
return RESOURCE_TYPE_TEXTURE_3D;
else if (fileType == XML_TYPE_CUBEMAP)
return RESOURCE_TYPE_CUBEMAP;
else if (fileType == XML_TYPE_SPRITER_DATA)
return RESOURCE_TYPE_2D_ANIMATION_SET;
// JSON fileTypes
else if (fileType == JSON_TYPE_SCENE)
return RESOURCE_TYPE_SCENE;
else if (fileType == JSON_TYPE_NODE)
return RESOURCE_TYPE_PREFAB;
else if(fileType == JSON_TYPE_MATERIAL)
return RESOURCE_TYPE_MATERIAL;
else if(fileType == JSON_TYPE_TECHNIQUE)
return RESOURCE_TYPE_TECHNIQUE;
else if(fileType == JSON_TYPE_PARTICLEEFFECT)
return RESOURCE_TYPE_PARTICLEEFFECT;
else if(fileType == JSON_TYPE_PARTICLEEMITTER)
return RESOURCE_TYPE_PARTICLEEMITTER;
else if(fileType == JSON_TYPE_TEXTURE)
return RESOURCE_TYPE_TEXTURE;
else if(fileType == JSON_TYPE_ELEMENT)
return RESOURCE_TYPE_UIELEMENT;
else if(fileType == JSON_TYPE_ELEMENTS)
return RESOURCE_TYPE_UIELEMENTS;
else if (fileType == JSON_TYPE_ANIMATION_SETTINGS)
return RESOURCE_TYPE_ANIMATION_SETTINGS;
else if (fileType == JSON_TYPE_RENDERPATH)
return RESOURCE_TYPE_RENDERPATH;
else if (fileType == JSON_TYPE_TEXTURE_ATLAS)
return RESOURCE_TYPE_TEXTURE_ATLAS;
else if (fileType == JSON_TYPE_2D_PARTICLE_EFFECT)
return RESOURCE_TYPE_2D_PARTICLE_EFFECT;
else if (fileType == JSON_TYPE_TEXTURE_3D)
return RESOURCE_TYPE_TEXTURE_3D;
else if (fileType == JSON_TYPE_CUBEMAP)
return RESOURCE_TYPE_CUBEMAP;
else if (fileType == JSON_TYPE_SPRITER_DATA)
return RESOURCE_TYPE_2D_ANIMATION_SET;
// extension fileTypes
else if (fileType == EXTENSION_TYPE_TTF)
return RESOURCE_TYPE_FONT;
else if (fileType == EXTENSION_TYPE_OTF)
return RESOURCE_TYPE_FONT;
else if (fileType == EXTENSION_TYPE_OGG)
return RESOURCE_TYPE_SOUND;
else if(fileType == EXTENSION_TYPE_WAV)
return RESOURCE_TYPE_SOUND;
else if(fileType == EXTENSION_TYPE_DDS)
return RESOURCE_TYPE_IMAGE;
else if(fileType == EXTENSION_TYPE_PNG)
return RESOURCE_TYPE_IMAGE;
else if(fileType == EXTENSION_TYPE_JPG)
return RESOURCE_TYPE_IMAGE;
else if(fileType == EXTENSION_TYPE_JPEG)
return RESOURCE_TYPE_IMAGE;
else if(fileType == EXTENSION_TYPE_HDR)
return RESOURCE_TYPE_IMAGE;
else if(fileType == EXTENSION_TYPE_BMP)
return RESOURCE_TYPE_IMAGE;
else if(fileType == EXTENSION_TYPE_TGA)
return RESOURCE_TYPE_IMAGE;
else if(fileType == EXTENSION_TYPE_KTX)
return RESOURCE_TYPE_IMAGE;
else if(fileType == EXTENSION_TYPE_PVR)
return RESOURCE_TYPE_IMAGE;
else if(fileType == EXTENSION_TYPE_OBJ)
return RESOURCE_TYPE_UNUSABLE;
else if(fileType == EXTENSION_TYPE_FBX)
return RESOURCE_TYPE_UNUSABLE;
else if(fileType == EXTENSION_TYPE_COLLADA)
return RESOURCE_TYPE_UNUSABLE;
else if(fileType == EXTENSION_TYPE_BLEND)
return RESOURCE_TYPE_UNUSABLE;
else if(fileType == EXTENSION_TYPE_ANGELSCRIPT)
return RESOURCE_TYPE_SCRIPTFILE;
else if(fileType == EXTENSION_TYPE_LUASCRIPT)
return RESOURCE_TYPE_SCRIPTFILE;
else if(fileType == EXTENSION_TYPE_HLSL)
return RESOURCE_TYPE_UNUSABLE;
else if(fileType == EXTENSION_TYPE_GLSL)
return RESOURCE_TYPE_UNUSABLE;
else if(fileType == EXTENSION_TYPE_FRAGMENTSHADER)
return RESOURCE_TYPE_UNUSABLE;
else if(fileType == EXTENSION_TYPE_VERTEXSHADER)
return RESOURCE_TYPE_UNUSABLE;
else if(fileType == EXTENSION_TYPE_HTML)
return RESOURCE_TYPE_UNUSABLE;
return RESOURCE_TYPE_UNKNOWN;
}
bool GetExtensionType(String path, StringHash &out fileType)
{
StringHash type = StringHash(GetExtension(path));
if (type == EXTENSION_TYPE_TTF)
fileType = EXTENSION_TYPE_TTF;
else if (type == EXTENSION_TYPE_OTF)
fileType = EXTENSION_TYPE_OTF;
else if (type == EXTENSION_TYPE_OGG)
fileType = EXTENSION_TYPE_OGG;
else if(type == EXTENSION_TYPE_WAV)
fileType = EXTENSION_TYPE_WAV;
else if(type == EXTENSION_TYPE_DDS)
fileType = EXTENSION_TYPE_DDS;
else if(type == EXTENSION_TYPE_PNG)
fileType = EXTENSION_TYPE_PNG;
else if(type == EXTENSION_TYPE_JPG)
fileType = EXTENSION_TYPE_JPG;
else if(type == EXTENSION_TYPE_JPEG)
fileType = EXTENSION_TYPE_JPEG;
else if(type == EXTENSION_TYPE_HDR)
fileType = EXTENSION_TYPE_HDR;
else if(type == EXTENSION_TYPE_BMP)
fileType = EXTENSION_TYPE_BMP;
else if(type == EXTENSION_TYPE_TGA)
fileType = EXTENSION_TYPE_TGA;
else if(type == EXTENSION_TYPE_KTX)
fileType = EXTENSION_TYPE_KTX;
else if(type == EXTENSION_TYPE_PVR)
fileType = EXTENSION_TYPE_PVR;
else if(type == EXTENSION_TYPE_OBJ)
fileType = EXTENSION_TYPE_OBJ;
else if(type == EXTENSION_TYPE_FBX)
fileType = EXTENSION_TYPE_FBX;
else if(type == EXTENSION_TYPE_COLLADA)
fileType = EXTENSION_TYPE_COLLADA;
else if(type == EXTENSION_TYPE_BLEND)
fileType = EXTENSION_TYPE_BLEND;
else if(type == EXTENSION_TYPE_ANGELSCRIPT)
fileType = EXTENSION_TYPE_ANGELSCRIPT;
else if(type == EXTENSION_TYPE_LUASCRIPT)
fileType = EXTENSION_TYPE_LUASCRIPT;
else if(type == EXTENSION_TYPE_HLSL)
fileType = EXTENSION_TYPE_HLSL;
else if(type == EXTENSION_TYPE_GLSL)
fileType = EXTENSION_TYPE_GLSL;
else if(type == EXTENSION_TYPE_FRAGMENTSHADER)
fileType = EXTENSION_TYPE_FRAGMENTSHADER;
else if(type == EXTENSION_TYPE_VERTEXSHADER)
fileType = EXTENSION_TYPE_VERTEXSHADER;
else if(type == EXTENSION_TYPE_HTML)
fileType = EXTENSION_TYPE_HTML;
else
return false;
return true;
}
bool GetBinaryType(String path, StringHash &out fileType, bool useCache = false)
{
StringHash type;
if (useCache)
{
File@ file = cache.GetFile(path);
if (file is null)
return false;
if (file.size == 0)
return false;
type = StringHash(file.ReadFileID());
}
else
{
File@ file = File();
if (!file.Open(path))
return false;
if (file.size == 0)
return false;
type = StringHash(file.ReadFileID());
}
if (type == BINARY_TYPE_SCENE)
fileType = BINARY_TYPE_SCENE;
else if (type == BINARY_TYPE_PACKAGE)
fileType = BINARY_TYPE_PACKAGE;
else if (type == BINARY_TYPE_COMPRESSED_PACKAGE)
fileType = BINARY_TYPE_COMPRESSED_PACKAGE;
else if (type == BINARY_TYPE_ANGLESCRIPT)
fileType = BINARY_TYPE_ANGLESCRIPT;
else if (type == BINARY_TYPE_MODEL)
fileType = BINARY_TYPE_MODEL;
else if (type == BINARY_TYPE_SHADER)
fileType = BINARY_TYPE_SHADER;
else if (type == BINARY_TYPE_ANIMATION)
fileType = BINARY_TYPE_ANIMATION;
else
return false;
return true;
}
bool GetXmlType(String path, StringHash &out fileType, bool useCache = false)
{
String extension = GetExtension(path);
if (extension == ".txt" || extension == ".json" || extension == ".icns" || extension == ".atlas")
return false;
String name;
if (useCache)
{
XMLFile@ xml = cache.GetResource("XMLFile", path);
if (xml is null)
return false;
name = xml.root.name;
}
else
{
File@ file = File();
if (!file.Open(path))
return false;
if (file.size == 0)
return false;
XMLFile@ xml = XMLFile();
if (xml.Load(file))
name = xml.root.name;
else
return false;
}
bool found = false;
if (!name.empty)
{
found = true;
StringHash type = StringHash(name);
if (type == XML_TYPE_SCENE)
fileType = XML_TYPE_SCENE;
else if (type == XML_TYPE_NODE)
fileType = XML_TYPE_NODE;
else if(type == XML_TYPE_MATERIAL)
fileType = XML_TYPE_MATERIAL;
else if(type == XML_TYPE_TECHNIQUE)
fileType = XML_TYPE_TECHNIQUE;
else if(type == XML_TYPE_PARTICLEEFFECT)
fileType = XML_TYPE_PARTICLEEFFECT;
else if(type == XML_TYPE_PARTICLEEMITTER)
fileType = XML_TYPE_PARTICLEEMITTER;
else if(type == XML_TYPE_TEXTURE)
fileType = XML_TYPE_TEXTURE;
else if(type == XML_TYPE_ELEMENT)
fileType = XML_TYPE_ELEMENT;
else if(type == XML_TYPE_ELEMENTS)
fileType = XML_TYPE_ELEMENTS;
else if (type == XML_TYPE_ANIMATION_SETTINGS)
fileType = XML_TYPE_ANIMATION_SETTINGS;
else if (type == XML_TYPE_RENDERPATH)
fileType = XML_TYPE_RENDERPATH;
else if (type == XML_TYPE_TEXTURE_ATLAS)
fileType = XML_TYPE_TEXTURE_ATLAS;
else if (type == XML_TYPE_2D_PARTICLE_EFFECT)
fileType = XML_TYPE_2D_PARTICLE_EFFECT;
else if (type == XML_TYPE_TEXTURE_3D)
fileType = XML_TYPE_TEXTURE_3D;
else if (type == XML_TYPE_CUBEMAP)
fileType = XML_TYPE_CUBEMAP;
else if (type == XML_TYPE_SPRITER_DATA)
fileType = XML_TYPE_SPRITER_DATA;
else
found = false;
}
return found;
}
String ResourceTypeName(int resourceType)
{
if (resourceType == RESOURCE_TYPE_UNUSABLE)
return "Unusable";
else if (resourceType == RESOURCE_TYPE_UNKNOWN)
return "Unknown";
else if (resourceType == RESOURCE_TYPE_NOTSET)
return "Uninitialized";
else if (resourceType == RESOURCE_TYPE_SCENE)
return "Scene";
else if (resourceType == RESOURCE_TYPE_SCRIPTFILE)
return "Script File";
else if (resourceType == RESOURCE_TYPE_MODEL)
return "Model";
else if (resourceType == RESOURCE_TYPE_MATERIAL)
return "Material";
else if (resourceType == RESOURCE_TYPE_ANIMATION)
return "Animation";
else if (resourceType == RESOURCE_TYPE_IMAGE)
return "Image";
else if (resourceType == RESOURCE_TYPE_SOUND)
return "Sound";
else if (resourceType == RESOURCE_TYPE_TEXTURE)
return "Texture";
else if (resourceType == RESOURCE_TYPE_FONT)
return "Font";
else if (resourceType == RESOURCE_TYPE_PREFAB)
return "Prefab";
else if (resourceType == RESOURCE_TYPE_TECHNIQUE)
return "Render Technique";
else if (resourceType == RESOURCE_TYPE_PARTICLEEFFECT)
return "Particle Effect";
else if (resourceType == RESOURCE_TYPE_PARTICLEEMITTER)
return "Particle Emitter";
else if (resourceType == RESOURCE_TYPE_UIELEMENT)
return "UI Element";
else if (resourceType == RESOURCE_TYPE_UIELEMENTS)
return "UI Elements";
else if (resourceType == RESOURCE_TYPE_ANIMATION_SETTINGS)
return "Animation Settings";
else if (resourceType == RESOURCE_TYPE_RENDERPATH)
return "Render Path";
else if (resourceType == RESOURCE_TYPE_TEXTURE_ATLAS)
return "Texture Atlas";
else if (resourceType == RESOURCE_TYPE_2D_PARTICLE_EFFECT)
return "2D Particle Effect";
else if (resourceType == RESOURCE_TYPE_TEXTURE_3D)
return "Texture 3D";
else if (resourceType == RESOURCE_TYPE_CUBEMAP)
return "Cubemap";
else if (resourceType == RESOURCE_TYPE_2D_ANIMATION_SET)
return "2D Animation Set";
else
return "";
}
class BrowserDir
{
uint id;
String resourceKey;
String name;
Array<BrowserDir@> children;
Array<BrowserFile@> files;
BrowserDir(String path_)
{
resourceKey = path_;
String parent = GetParentPath(path_);
name = path_;
name.Replace(parent, "");
id = browserDirIndex++;
}
int opCmp(BrowserDir@ b)
{
return name.opCmp(b.name);
}
BrowserFile@ AddFile(String name, uint resourceSourceIndex, uint sourceType)
{
String path = resourceKey + "/" + name;
BrowserFile@ file = BrowserFile(path, resourceSourceIndex, sourceType);
files.Push(file);
return file;
}
}
class BrowserFile
{
uint id;
uint resourceSourceIndex;
String resourceKey;
String name;
String fullname;
String extension;
StringHash fileType;
int resourceType = 0;
int sourceType = 0;
int sortScore = 0;
WeakHandle browserFileListRow;
BrowserFile(String path_, uint resourceSourceIndex_, int sourceType_)
{
sourceType = sourceType_;
resourceSourceIndex = resourceSourceIndex_;
resourceKey = path_;
name = GetFileName(path_);
extension = GetExtension(path_);
fullname = GetFileNameAndExtension(path_);
id = browserFileIndex++;
}
int opCmp(BrowserFile@ b)
{
if (browserSearchSortMode == 1)
return fullname.opCmp(b.fullname);
else
return sortScore - b.sortScore;
}
String GetResourceSource()
{
if (sourceType == BROWSER_FILE_SOURCE_RESOURCE_DIR)
return cache.resourceDirs[resourceSourceIndex];
else
return "Unknown";
}
String GetFullPath()
{
return String(cache.resourceDirs[resourceSourceIndex] + resourceKey);
}
String GetPath()
{
return resourceKey;
}
void DetermainResourceType()
{
resourceType = GetResourceType(GetFullPath(), fileType, false);
Text@ browserFileListRow_ = browserFileListRow.Get();
if (browserFileListRow_ !is null)
{
InitializeBrowserFileListRow(browserFileListRow_, this);
}
}
String ResourceTypeName()
{
return ::ResourceTypeName(resourceType);
}
void FileChanged()
{
if (!fileSystem.FileExists(GetFullPath()))
{
}
else
{
}
}
}
void CreateResourcePreview(String path, Node@ previewNode)
{
resourceBrowserPreview.autoUpdate = false;
int resourceType = GetResourceType(path);
if (resourceType > 0)
{
File file;
file.Open(path);
if (resourceType == RESOURCE_TYPE_MODEL)
{
Model@ model = Model();
if (model.Load(file))
{
StaticModel@ staticModel = previewNode.CreateComponent("StaticModel");
staticModel.model = model;
return;
}
}
else if (resourceType == RESOURCE_TYPE_MATERIAL)
{
Material@ material = Material();
if (material.Load(file))
{
StaticModel@ staticModel = previewNode.CreateComponent("StaticModel");
staticModel.model = cache.GetResource("Model", "Models/Sphere.mdl");
staticModel.material = material;
return;
}
}
else if (resourceType == RESOURCE_TYPE_IMAGE)
{
Image@ image = Image();
if (image.Load(file))
{
StaticModel@ staticModel = previewNode.CreateComponent("StaticModel");
staticModel.model = cache.GetResource("Model", "Models/Editor/ImagePlane.mdl");
Material@ material = cache.GetResource("Material", "Materials/Editor/TexturedUnlit.xml");
Texture2D@ texture = Texture2D();
texture.SetData(@image, true);
material.textures[0] = texture;
staticModel.material = material;
return;
}
}
else if (resourceType == RESOURCE_TYPE_PREFAB)
{
if (GetExtension(path) == ".xml")
{
XMLFile xmlFile;
if(xmlFile.Load(file))
if(previewNode.LoadXML(xmlFile.root, true) && (previewNode.GetComponents("StaticModel", true).length > 0 || previewNode.GetComponents("AnimatedModel", true).length > 0))
{
return;
}
}
else if(previewNode.Load(file, true) && (previewNode.GetComponents("StaticModel", true).length > 0 || previewNode.GetComponents("AnimatedModel", true).length > 0))
return;
previewNode.RemoveAllChildren();
previewNode.RemoveAllComponents();
}
else if (resourceType == RESOURCE_TYPE_PARTICLEEFFECT)
{
ParticleEffect@ particleEffect = ParticleEffect();
if (particleEffect.Load(file))
{
ParticleEmitter@ particleEmitter = previewNode.CreateComponent("ParticleEmitter");
particleEmitter.effect = particleEffect;
particleEffect.activeTime = 0.0;
particleEmitter.Reset();
resourceBrowserPreview.autoUpdate = true;
return;
}
}
}
StaticModel@ staticModel = previewNode.CreateComponent("StaticModel");
staticModel.model = cache.GetResource("Model", "Models/Editor/ImagePlane.mdl");
Material@ material = cache.GetResource("Material", "Materials/Editor/TexturedUnlit.xml");
Texture2D@ texture = Texture2D();
Image@ noPreviewImage = cache.GetResource("Image", "Textures/Editor/NoPreviewAvailable.png");
texture.SetData(noPreviewImage, false);
material.textures[0] = texture;
staticModel.material = material;
return;
}
void RotateResourceBrowserPreview(StringHash eventType, VariantMap& eventData)
{
int elemX = eventData["ElementX"].GetInt();
int elemY = eventData["ElementY"].GetInt();
if (resourceBrowserPreview.height > 0 && resourceBrowserPreview.width > 0)
{
float yaw = ((resourceBrowserPreview.height / 2) - elemY) * (90.0 / resourceBrowserPreview.height);
float pitch = ((resourceBrowserPreview.width / 2) - elemX) * (90.0 / resourceBrowserPreview.width);
resourcePreviewNode.rotation = resourcePreviewNode.rotation.Slerp(Quaternion(yaw, pitch, 0), 0.1);
RefreshBrowserPreview();
}
}
void RefreshBrowserPreview()
{
resourceBrowserPreview.QueueUpdate();
}
class ResourceType
{
int id;
String name;
ResourceType(int id_, String name_)
{
id = id_;
name = name_;
}
int opCmp(ResourceType@ b)
{
return name.opCmp(b.name);
}
}
|
package com.playfab.ServerModels
{
public class SavePushNotificationTemplateRequest
{
public var AndroidPayload:String;
public var Id:String;
public var IOSPayload:String;
public var LocalizedPushNotificationTemplates:Object;
public var Name:String;
public function SavePushNotificationTemplateRequest(data:Object=null)
{
if(data == null)
return;
AndroidPayload = data.AndroidPayload;
Id = data.Id;
IOSPayload = data.IOSPayload;
if(data.LocalizedPushNotificationTemplates) { LocalizedPushNotificationTemplates = {}; for(var LocalizedPushNotificationTemplates_iter:String in data.LocalizedPushNotificationTemplates) { LocalizedPushNotificationTemplates[LocalizedPushNotificationTemplates_iter] = new LocalizedPushNotificationProperties(data.LocalizedPushNotificationTemplates[LocalizedPushNotificationTemplates_iter]); }}
Name = data.Name;
}
}
}
|
package visuals.ui.elements.movie
{
import com.playata.framework.display.Sprite;
import com.playata.framework.display.lib.flash.FlashDisplayObjectContainer;
import com.playata.framework.display.lib.flash.FlashLabelArea;
import com.playata.framework.display.lib.flash.FlashSprite;
import com.playata.framework.display.ui.controls.ILabelArea;
import flash.display.MovieClip;
import visuals.ui.base.SymbolUiButtonDefaultCheckGeneric;
public class SymbolMovieSelectGeneric extends Sprite
{
private var _nativeObject:SymbolMovieSelect = null;
public var btnSelect:SymbolUiButtonDefaultCheckGeneric = null;
public var cover:SymbolCoverImagePlaceholderGeneric = null;
public var txtDateCaption:ILabelArea = null;
public var txtDate:ILabelArea = null;
public var txtSetCaption:ILabelArea = null;
public var txtSet:ILabelArea = null;
public function SymbolMovieSelectGeneric(param1:MovieClip = null)
{
if(param1)
{
_nativeObject = param1 as SymbolMovieSelect;
}
else
{
_nativeObject = new SymbolMovieSelect();
}
super(null,FlashSprite.fromNative(_nativeObject));
var _loc2_:FlashDisplayObjectContainer = _sprite as FlashDisplayObjectContainer;
btnSelect = new SymbolUiButtonDefaultCheckGeneric(_nativeObject.btnSelect);
cover = new SymbolCoverImagePlaceholderGeneric(_nativeObject.cover);
txtDateCaption = FlashLabelArea.fromNative(_nativeObject.txtDateCaption);
txtDate = FlashLabelArea.fromNative(_nativeObject.txtDate);
txtSetCaption = FlashLabelArea.fromNative(_nativeObject.txtSetCaption);
txtSet = FlashLabelArea.fromNative(_nativeObject.txtSet);
}
public function setNativeInstance(param1:SymbolMovieSelect) : void
{
FlashSprite.setNativeInstance(_sprite,param1);
_nativeObject = param1;
syncInstances();
}
public function syncInstances() : void
{
if(_nativeObject.btnSelect)
{
btnSelect.setNativeInstance(_nativeObject.btnSelect);
}
if(_nativeObject.cover)
{
cover.setNativeInstance(_nativeObject.cover);
}
FlashLabelArea.setNativeInstance(txtDateCaption,_nativeObject.txtDateCaption);
FlashLabelArea.setNativeInstance(txtDate,_nativeObject.txtDate);
FlashLabelArea.setNativeInstance(txtSetCaption,_nativeObject.txtSetCaption);
FlashLabelArea.setNativeInstance(txtSet,_nativeObject.txtSet);
}
}
}
|
package sunag.sea3d.modules
{
import sunag.sunag;
import sunag.sea3d.objects.SEAABC;
use namespace sunag;
public class ByteCodeModuleBase extends ModuleBase
{
public function ByteCodeModuleBase()
{
regClass(SEAABC);
}
}
} |
package com.stuffwithstuff.bantam.expressions
{
import com.stuffwithstuff.bantam.TokenType;
import com.stuffwithstuff.bantam.utils.StringBuilder;
/**
* @author Simon Richardson - me@simonrichardson.info
*/
public final class OperatorExpression implements Expression
{
private var _left : Expression;
private var _operator : TokenType;
private var _right : Expression;
public function OperatorExpression(left : Expression, operator : TokenType, right : Expression)
{
_left = left;
_operator = operator;
_right = right;
}
public function print(builder : StringBuilder) : void
{
builder.append("(");
_left.print(builder);
builder.append(" ").append(_operator.punctuator).append(" ");
_right.print(builder);
builder.append(")");
}
}
}
|
package com.ankamagames.dofus.network.messages.game.shortcut
{
import com.ankamagames.dofus.network.ProtocolTypeManager;
import com.ankamagames.dofus.network.types.game.shortcut.Shortcut;
import com.ankamagames.jerakine.network.CustomDataWrapper;
import com.ankamagames.jerakine.network.ICustomDataInput;
import com.ankamagames.jerakine.network.ICustomDataOutput;
import com.ankamagames.jerakine.network.INetworkMessage;
import com.ankamagames.jerakine.network.NetworkMessage;
import com.ankamagames.jerakine.network.utils.FuncTree;
import flash.utils.ByteArray;
public class ShortcutBarReplacedMessage extends NetworkMessage implements INetworkMessage
{
public static const protocolId:uint = 5103;
private var _isInitialized:Boolean = false;
public var barType:uint = 0;
public var shortcut:Shortcut;
private var _shortcuttree:FuncTree;
public function ShortcutBarReplacedMessage()
{
this.shortcut = new Shortcut();
super();
}
override public function get isInitialized() : Boolean
{
return this._isInitialized;
}
override public function getMessageId() : uint
{
return 5103;
}
public function initShortcutBarReplacedMessage(barType:uint = 0, shortcut:Shortcut = null) : ShortcutBarReplacedMessage
{
this.barType = barType;
this.shortcut = shortcut;
this._isInitialized = true;
return this;
}
override public function reset() : void
{
this.barType = 0;
this.shortcut = new Shortcut();
this._isInitialized = false;
}
override public function pack(output:ICustomDataOutput) : void
{
var data:ByteArray = new ByteArray();
this.serialize(new CustomDataWrapper(data));
writePacket(output,this.getMessageId(),data);
}
override public function unpack(input:ICustomDataInput, length:uint) : void
{
this.deserialize(input);
}
override public function unpackAsync(input:ICustomDataInput, length:uint) : FuncTree
{
var tree:FuncTree = new FuncTree();
tree.setRoot(input);
this.deserializeAsync(tree);
return tree;
}
public function serialize(output:ICustomDataOutput) : void
{
this.serializeAs_ShortcutBarReplacedMessage(output);
}
public function serializeAs_ShortcutBarReplacedMessage(output:ICustomDataOutput) : void
{
output.writeByte(this.barType);
output.writeShort(this.shortcut.getTypeId());
this.shortcut.serialize(output);
}
public function deserialize(input:ICustomDataInput) : void
{
this.deserializeAs_ShortcutBarReplacedMessage(input);
}
public function deserializeAs_ShortcutBarReplacedMessage(input:ICustomDataInput) : void
{
this._barTypeFunc(input);
var _id2:uint = input.readUnsignedShort();
this.shortcut = ProtocolTypeManager.getInstance(Shortcut,_id2);
this.shortcut.deserialize(input);
}
public function deserializeAsync(tree:FuncTree) : void
{
this.deserializeAsyncAs_ShortcutBarReplacedMessage(tree);
}
public function deserializeAsyncAs_ShortcutBarReplacedMessage(tree:FuncTree) : void
{
tree.addChild(this._barTypeFunc);
this._shortcuttree = tree.addChild(this._shortcuttreeFunc);
}
private function _barTypeFunc(input:ICustomDataInput) : void
{
this.barType = input.readByte();
if(this.barType < 0)
{
throw new Error("Forbidden value (" + this.barType + ") on element of ShortcutBarReplacedMessage.barType.");
}
}
private function _shortcuttreeFunc(input:ICustomDataInput) : void
{
var _id:uint = input.readUnsignedShort();
this.shortcut = ProtocolTypeManager.getInstance(Shortcut,_id);
this.shortcut.deserializeAsync(this._shortcuttree);
}
}
}
|
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package
{
//test groups
import flexUnitTests.*;
public class TestClasses
{
public static function get testClasses():Array {
return [
LanguageTester
,CoreTester
,ReflectionTester
,ObservedBugsTester
,GithubIssuesTester
,NetworkTester
,XMLTester
,MXRoyaleTester
,BindingTester
];
}
}
}
|
package sandy.core.data
{
import sandy.util.BezierUtil;
/**
* A 3D Bézier path.
*
* <p>The Bézier path is built form an array of 3D points, by using Bézier equations<br />
* With two points the path is degenereated to a straight line. To get a curved line, you need
* at least three points. The mid point is used as a control point which gives the curvature.<br />
* After that you will have to add three point segments</p>
*
* @author Thomas Pfeiffer - kiroukou
* @since 1.0
* @version 3.1
* @date 24.08.2007
*/
public class BezierPath
{
/**
* Creates a new Bézier path.
*/
public function BezierPath( /*pbBoucle:Boolean*/ )
{
_aContainer = new Array();
_aSegments = new Array();
_nCrtSegment = 0;
_bBoucle = false;
_bCompiled = false;
}
/**
* Returns a segment of this path identified by its sequence number.
*
* <p>The Bézier path is made up of a sequence of segments which are internally numbered.
* This method returns the n:th segment, where n is the passed in number.</p>
*
* @param p_nId The index of the desired segment in the segments array.
*
* @return An array containing the Bézier curve points [startPoint, controlPoint, endPoint]
*/
public function getSegment( p_nId:uint ):Array
{
if( p_nId >= 0 && p_nId < _nNbSegments )
{
return _aSegments[ int(p_nId) ];
}
else
{
return null;
}
}
/**
* Returns the position in the 3D space at a specific portion of this path.
*
* If length of the path is regarded as <code>1.0</code> (100%) and the position at 10% of the path is desired
* <code>0.1</code> is passed as the.
*
* @param p_nP The position of the path length as a percentage ( 0 - 1 ).
*
* @return The 3D position on the path at the desired position.
*/
public function getPosition( p_nP:Number ):Point3D
{
var id:Number = Math.floor(p_nP/_nRatio);
if( id == _nNbSegments )
{
id --;
p_nP = 1.0;
}
var seg:Array = getSegment( id );
return BezierUtil.getPointsOnQuadCurve( (p_nP-id*_nRatio)/_nRatio, seg[0], seg[1], seg[2] );
}
/**
* Adds a 3D point to this path.
*
* <p>At least three points are required for a a curved segment. The first point added must be the control point,
* followed by segments added in sets of two points.
*
* <p><strong>Note:</strong> You can't add a point to the path once it has been compiled.</p>
*
* @param p_nX The x coordinate of the 3D point.
* @param p_nY The y coordinate of the 3D point.
* @param p_nZ The z coordinate of the 3D point.
*
* @return Whether the point was added.
*/
public function addPoint( p_nX:Number, p_nY:Number, p_nZ:Number ):Boolean
{
if( _bCompiled )
{
return false;
}
else
{
_aContainer.push( new Point3D( p_nX, p_nY, p_nZ ) );
return true;
}
}
/**
* Computes the control points for this path.
*
* <p>Must be called after all segments have been added and before the scene is rendered.</p>
*/
public function compile():void
{
_nNbPoints = _aContainer.length;
if( _nNbPoints >= 3 && _nNbPoints%2 == 1 )
{
trace('sandy.core.data.BezierPath ERROR: Number of points incompatible');
return;
}
_bCompiled = true;
_nNbSegments = 0;
var a:Point3D, b:Point3D, c:Point3D;
for (var i:Number = 0; i <= _nNbPoints-2; i+=2 )
{
a = _aContainer[int(i)];
b = _aContainer[int(i+1)];
c = _aContainer[int(i+2)];
_aSegments.push( [ a, b, c ] );
}
if( _bBoucle )
{
_aSegments.push([
_aContainer[ int(_nNbPoints) ],
BezierUtil.getQuadControlPoints(_aContainer[ int(_nNbPoints) ],_aContainer[ 0 ],_aContainer[ 1 ]),
_aContainer[ 0 ]
]);
}
// --
_nNbSegments = _aSegments.length;
_nRatio = 1 / _nNbSegments;
}
/**
* Returns the number of segments for this path.
*
* @return The number of segments in this path.
*/
public function getNumberOfSegments():uint
{
return _nNbSegments;
}
/**
* Returns a string representation of this object.
*
* @return The fully qualified name of this object.
*/
public function toString():String
{
return "sandy.core.data.BezierPath";
}
/**
* Transformed coordinates in the local frame of the object.
*/
private var _aContainer:Array;
/**
* Array of segments.
*/
private var _aSegments:Array;
/**
* Current segment id.
*/
private var _nCrtSegment:uint;
/**
* Number of segments of this path.
*/
private var _nNbSegments:uint;
/**
* Number of points of this path.
*/
private var _nNbPoints:uint;
/**
* Should this path be closed? True if it should false otherwise, default - false
*/
private var _bBoucle:Boolean;
/**
* Is this path compiled? True if it is, false otherwise.
*/
private var _bCompiled:Boolean;
private var _nRatio:Number;
}
} |
g:
mov %r13, %r14
ret
f:
//add $1, %r12
add $1, %r11
mov %r11, %r12
add $8, %r12
//add $8, %r11
ret
main:
add $2, %r11
call f
mov %r12, %rax
ret
|
package ageb.modules.ae.dnd
{
/**
* 用于产生一个拖拽期间的缩略图
* @author zhanghaocong
*
*/
public class ObjectDragThumb extends BgDragThumb
{
/**
* constructor
*
*/
public function ObjectDragThumb()
{
super();
}
}
}
|
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package mx.effects.effectClasses
{
import mx.core.IUIComponent;
/**
* The PropertyChanges class defines the start and end values
* for a set of properties of a target component of a transition.
* The <code>start</code> and <code>end</code> fields
* of the PropertyChanges class contain the same set of properties,
* but with different values.
*
* <p>Target properties that have the same start and end values
* are not included in the <code>start</code> and <code>end</code> fields.</p>
*
* @see mx.states.Transition
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public class PropertyChanges
{
include "../../core/Version.as";
//--------------------------------------------------------------------------
//
// Constructor
//
//--------------------------------------------------------------------------
/**
* The PropertyChanges constructor.
*
* @param target Object that is a target of an effect.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public function PropertyChanges(target:Object)
{
super();
this.target = target;
}
//--------------------------------------------------------------------------
//
// Properties
//
//--------------------------------------------------------------------------
//----------------------------------
// end
//----------------------------------
/**
* An Object containing the ending properties of the <code>target</code>
* component modified by the change in view state.
*
* <p>For example, for a <code>target</code> component that is both
* moved and resized by a change to the view state, <code>end</code>
* contains the ending position and size of the component,
* as the following example shows:
* <pre>{ x: 100, y: 100, width: 200, height: 200 }</pre></p>
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public var end:Object = {};
//----------------------------------
// start
//----------------------------------
/**
* An Object containing the starting properties of the <code>target</code>
* component modified by the change in view state.
*
* <p>For example, for a <code>target</code> component that is both
* moved and resized by a change to the view state, <code>start</code>
* contains the starting position and size of the component,
* as the following example shows:
* <pre>{ x: 0, y: 0, width: 100, height: 100}</pre></p>
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public var start:Object = {};
//----------------------------------
// target
//----------------------------------
/**
* A target component of a transition.
* The <code>start</code> and <code>end</code> fields
* of the PropertyChanges object define how the target component
* is modified by the change to the view state.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public var target:Object;
// TODO (chaase): This flag is currently used by the transform-related
// effects. We should investigate whether we really need it, or can get
// by without it
/**
* This flag controls whether values that are the same in the
* start and end states are stripped from those objects.
*
* @default true
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public var stripUnchangedValues:Boolean = true;
}
}
|
// =================================================================================================
//
// Created by Rodrigo Lopez [roipeker™] on 22/06/2018.
//
// =================================================================================================
package com.roipeker.utils.adl.collections.brands {
import com.roipeker.utils.adl.ScreenSpecifier;
public class CollectionImobile {
public function CollectionImobile() {
}
private var _i_mobile_8500:ScreenSpecifier;
public function get i_mobile_8500():ScreenSpecifier {
return _i_mobile_8500 ||= new ScreenSpecifier("i-mobile 8500", 320, 480, 180, "Android OS", "phone", 3.2, "i-mobile", "i_mobile_8500");
}
private var _i858:ScreenSpecifier;
public function get i858():ScreenSpecifier {
return _i858 ||= new ScreenSpecifier("i-mobile i858", 480, 800, 217, "Android 2.0", "phone", 4.3, "i-mobile", "i858");
}
}
}
|
package com.arxterra.utils
{
import flash.events.Event;
import flash.events.IOErrorEvent;
import flash.events.ProgressEvent;
import flash.events.SecurityErrorEvent;
import flash.events.ServerSocketConnectEvent;
import flash.net.ServerSocket;
import flash.net.Socket;
import flash.utils.ByteArray;
import com.arxterra.vo.McuConnectModes;
/**
* Singleton class extending McuConnector
* to implement connection with USB Microbridge
* via ServerSocket.
*/
[Bindable]
public class McuConnectorSocket extends McuConnectorBase
{
// STATIC CONSTANTS AND PROPERTIES
private static var __instance:McuConnectorSocket;
// CONSTRUCTOR / DESTRUCTOR
/**
* singleton instance
*/
public static function get instance ( ) : McuConnectorSocket
{
if ( !__instance )
{
__instance = new McuConnectorSocket ( new SingletonEnforcer() );
}
return __instance;
}
/**
* Singleton: use static property <b>instance</b> to access singleton instance.
*/
public function McuConnectorSocket ( enforcer:SingletonEnforcer )
{
super ( );
}
override public function dismiss ( ) : void
{
if ( hasClient )
{
_socketMcu.removeEventListener ( Event.CLOSE, _Closed );
_socketMcu.removeEventListener ( ProgressEvent.SOCKET_DATA, _DataReceived );
_socketMcu.removeEventListener ( IOErrorEvent.IO_ERROR, _IoError );
_socketMcu.removeEventListener ( SecurityErrorEvent.SECURITY_ERROR, _SecurityError );
_socketMcu.close ( );
_socketMcu = null;
}
if ( _socketServer != null )
{
_socketServer.removeEventListener ( ServerSocketConnectEvent.CONNECT, _Connected );
_socketServer.close ( );
_socketServer = null;
}
super.dismiss ( );
__instance = null;
}
override public function init ( ) : void
{
super.init ( );
_modeSet ( McuConnectModes.USB_ADB );
listen ( 4567 );
}
// PROTECTED METHODS
override protected function _send ( bytes:ByteArray ) : Boolean
{
var bOk:Boolean = false;
if ( _socketMcu != null && _socketMcu.connected )
{
bytes.position = 0;
try
{
_socketMcu.writeBytes ( bytes );
_socketMcu.flush ( );
}
catch ( err:Error )
{
_debugOut ( 'error_ss_send', true, [ err.message ] );
}
bOk = true;
}
else
{
_debugOut ( 'error_ss_no_conn', true );
}
super._send ( bytes ); // pass through for ping check
return bOk;
}
// PROTECTED PROPERTIES AND GET/SET METHOD GROUPS
protected function get bound ( ) : Boolean
{
return ( _socketServer != null && _socketServer.bound );
}
protected function get hasClient ( ) : Boolean
{
return ( _socketMcu != null && _socketMcu.connected );
}
protected function get listening ( ) : Boolean
{
return ( _socketServer != null && _socketServer.listening );
}
protected function get port ( ) : int
{
var iPort:int;
if ( bound )
iPort = _socketServer.localPort;
return iPort;
}
// OTHER PROTECTED METHODS
/**
* Binds the server socket to the supplied port number and starts it listening
* @param port The port number where the Mcu will connect
*/
protected function listen ( port:int ) : void
{
if ( _socketServer != null )
{
if ( _socketServer.listening && _socketServer.localPort == port )
{
// already listening on that port
return;
}
// if get here, need to dismiss existing sockets
if ( _socketMcu.connected )
{
_socketMcu.close ( );
}
_socketServer.removeEventListener ( ServerSocketConnectEvent.CONNECT, _Connected );
_socketServer.close ( );
}
_socketServer = new ServerSocket ( );
_socketServer.addEventListener ( ServerSocketConnectEvent.CONNECT, _Connected );
try
{
_socketServer.bind ( port );
_socketServer.listen ( );
}
catch ( err:Error )
{
_debugOut ( 'error_ss_init', true, [ err.message ] );
}
}
// PRIVATE PROPERTIES
private var _socketMcu:Socket;
private var _socketServer:ServerSocket;
// PRIVATE METHODS
private function _Closed ( event:Event ) : void
{
if ( _socketMcu != null )
{
// remove event listeners
_socketMcu.removeEventListener ( Event.CLOSE, _Closed );
_socketMcu.removeEventListener ( ProgressEvent.SOCKET_DATA, _DataReceived );
_socketMcu.removeEventListener ( IOErrorEvent.IO_ERROR, _IoError );
_socketMcu.removeEventListener ( SecurityErrorEvent.SECURITY_ERROR, _SecurityError );
_socketMcu = null;
_debugOut ( 'status_ss_disconn', true );
}
}
private function _Connected ( event:ServerSocketConnectEvent ) : void
{
// store reference to socket and add event listeners
_socketMcu = event.socket;
_socketMcu.addEventListener ( Event.CLOSE, _Closed );
_socketMcu.addEventListener ( ProgressEvent.SOCKET_DATA, _DataReceived );
_socketMcu.addEventListener ( IOErrorEvent.IO_ERROR, _IoError );
_socketMcu.addEventListener ( SecurityErrorEvent.SECURITY_ERROR, _SecurityError );
_debugOut ( 'status_ss_conn', true );
}
private function _DataReceived ( event:ProgressEvent ) : void
{
var ba:ByteArray = new ByteArray ( );
try
{
_socketMcu.readBytes ( ba );
_telemetryInputQueuePush ( ba );
}
catch ( err:Error )
{
_debugOut ( 'error_ss_receive', true, [ err.message ] );
}
}
private function _IoError ( event:IOErrorEvent ) : void
{
_debugOut ( 'error_ss_io', true, [ event.text ] );
}
private function _SecurityError ( event:SecurityErrorEvent ) : void
{
_debugOut ( 'error_ss_security', true, [ event.text ] );
}
}
}
class SingletonEnforcer {}
|
package laugh_fla
{
import flash.display.*;
dynamic public class MainTimeline extends MovieClip
{
public var theUpper:MovieClip;
public function MainTimeline()
{
return;
}// end function
}
}
|
/* Copyright (c) 2012-2013 EL-EMENT saharan
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this
* software and associated documentation * files (the "Software"), to deal in the Software
* without restriction, including without limitation the rights to use, copy, * modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to
* whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or
* substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
* PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.element.oimo.physics.demo {
import com.element.oimo.physics.collision.shape.BoxShape;
import com.element.oimo.physics.collision.shape.ShapeConfig;
import com.element.oimo.physics.collision.shape.SphereShape;
import com.element.oimo.physics.dynamics.RigidBody;
/**
* ...
* @author saharan
*/
public class FrictionDemo extends DemoBase {
public function FrictionDemo() {
title = "Varying friction";
}
override public function reset():void {
var sc:ShapeConfig = new ShapeConfig();
var body:RigidBody;
body = new RigidBody(0, 1, 0, -15 * Math.PI / 180, 0, 0, 1); // 斜めの床を用意
body.addShape(new BoxShape(sc, 8, 0.2, 6));
body.setupMass(RigidBody.BODY_STATIC);
world.addRigidBody(body);
for (var i:int = 0; i < 5; i++) {
sc.friction = 0.5 - i * 0.1; // 摩擦係数を変更
body = new RigidBody(-3, 3, i - 2);
body.addShape(new BoxShape(sc, 0.7, 0.5, 0.5));
body.setupMass();
world.addRigidBody(body);
}
sc.friction = 2;
sc.density = 10;
control = new RigidBody(0, 0.75, 6);
control.addShape(new SphereShape(sc, 0.75));
control.setupMass();
world.addRigidBody(control);
}
}
} |
Vec3f MAP_SIZE(126, 126, 126);
u8[] mapData = {
-40,-40,0,202,122,44,-39,-40,0,202,122,44,-38,-40,0,202,122,44,-37,-40,0,202,122,44,-36,-40,0,202,122,44,-35,-40,0,202,122,44,-34,-40,0,202,122,44,-33,-40,0,202,122,44,-32,-40,0,202,122,44,-31,-40,0,202,122,44,-30,-40,0,202,122,44,-29,-40,0,202,122,44,-28,-40,0,202,122,44,-27,-40,0,202,122,44,-26,-40,0,202,122,44,-25,-40,0,202,122,44,-24,-40,0,202,122,44,-23,-40,0,202,122,44,-22,-40,0,202,122,44,-21,-40,0,202,122,44,-20,-40,0,202,122,44,-19,-40,0,202,122,44,-18,-40,0,202,122,44,-17,-40,0,202,122,44,-16,-40,0,202,122,44,-15,-40,0,202,122,44,-14,-40,0,202,122,44,-13,-40,0,202,122,44,-12,-40,0,202,122,44,-11,-40,0,202,122,44,-10,-40,0,202,122,44,-9,-40,0,202,122,44,-8,-40,0,202,122,44,-7,-40,0,202,122,44,-6,-40,0,202,122,44,-5,-40,0,202,122,44,-4,-40,0,202,122,44,-3,-40,0,202,122,44,-2,-40,0,202,122,44,-1,-40,0,202,122,44,0,-40,0,202,122,44,1,-40,0,202,122,44,2,-40,0,202,122,44,3,-40,0,202,122,44,4,-40,0,202,122,44,5,-40,0,202,122,44,6,-40,0,202,122,44,7,-40,0,202,122,44,8,-40,0,202,122,44,9,-40,0,202,122,44,10,-40,0,202,122,44,11,-40,0,202,122,44,12,-40,0,202,122,44,13,-40,0,202,122,44,14,-40,0,202,122,44,15,-40,0,202,122,44,16,-40,0,202,122,44,17,-40,0,202,122,44,18,-40,0,202,122,44,19,-40,0,202,122,44,20,-40,0,202,122,44,21,-40,0,202,122,44,22,-40,0,202,122,44,23,-40,0,202,122,44,24,-40,0,202,122,44,25,-40,0,202,122,44,26,-40,0,202,122,44,27,-40,0,202,122,44,28,-40,0,202,122,44,29,-40,0,202,122,44,30,-40,0,202,122,44,31,-40,0,202,122,44,32,-40,0,202,122,44,33,-40,0,202,122,44,34,-40,0,202,122,44,35,-40,0,202,122,44,36,-40,0,202,122,44,37,-40,0,202,122,44,38,-40,0,202,122,44,39,-40,0,202,122,44,40,-40,0,202,122,44,41,-40,0,202,122,44,42,-40,0,202,122,44,43,-40,0,202,122,44,44,-40,0,202,122,44,45,-40,0,202,122,44,46,-40,0,202,122,44,47,-40,0,202,122,44,48,-40,0,202,122,44,49,-40,0,202,122,44,50,-40,0,202,122,44,51,-40,0,202,122,44,52,-40,0,202,122,44,53,-40,0,202,122,44,54,-40,0,202,122,44,55,-40,0,202,122,44,56,-40,0,202,122,44,57,-40,0,202,122,44,58,-40,0,202,122,44,59,-40,0,202,122,44,60,-40,0,202,122,44,61,-40,0,202,122,44,62,-40,0,202,122,44,63,-40,0,202,122,44,64,-40,0,202,122,44,65,-40,0,202,122,44,66,-40,0,202,122,44,67,-40,0,202,122,44,68,-40,0,202,122,44,69,-40,0,202,122,44,70,-40,0,202,122,44,71,-40,0,202,122,44,72,-40,0,202,122,44,73,-40,0,202,122,44,74,-40,0,202,122,44,75,-40,0,202,122,44,76,-40,0,202,122,44,77,-40,0,202,122,44,78,-40,0,202,122,44,79,-40,0,202,122,44,80,-40,0,202,122,44,81,-40,0,202,122,44,82,-40,0,202,122,44,83,-40,0,202,122,44,84,-40,0,202,122,44,85,-40,0,202,122,44,-40,-39,0,202,122,44,-39,-39,0,202,122,44,-38,-39,0,202,122,44,-37,-39,0,202,122,44,-36,-39,0,202,122,44,-35,-39,0,202,122,44,-34,-39,0,202,122,44,-33,-39,0,202,122,44,-32,-39,0,202,122,44,-31,-39,0,202,122,44,-30,-39,0,202,122,44,-29,-39,0,202,122,44,-28,-39,0,202,122,44,-27,-39,0,202,122,44,-26,-39,0,202,122,44,-25,-39,0,202,122,44,-24,-39,0,202,122,44,-23,-39,0,202,122,44,-22,-39,0,202,122,44,-21,-39,0,202,122,44,-20,-39,0,202,122,44,-19,-39,0,202,122,44,-18,-39,0,202,122,44,-17,-39,0,202,122,44,-16,-39,0,202,122,44,-15,-39,0,202,122,44,-14,-39,0,202,122,44,-13,-39,0,202,122,44,-12,-39,0,202,122,44,-11,-39,0,202,122,44,-10,-39,0,202,122,44,-9,-39,0,202,122,44,-8,-39,0,202,122,44,-7,-39,0,202,122,44,-6,-39,0,202,122,44,-5,-39,0,202,122,44,-4,-39,0,202,122,44,-3,-39,0,202,122,44,-2,-39,0,202,122,44,-1,-39,0,202,122,44,0,-39,0,202,122,44,1,-39,0,202,122,44,2,-39,0,202,122,44,3,-39,0,202,122,44,4,-39,0,202,122,44,5,-39,0,202,122,44,6,-39,0,202,122,44,7,-39,0,202,122,44,8,-39,0,202,122,44,9,-39,0,202,122,44,10,-39,0,202,122,44,11,-39,0,202,122,44,12,-39,0,202,122,44,13,-39,0,202,122,44,14,-39,0,202,122,44,15,-39,0,202,122,44,16,-39,0,202,122,44,17,-39,0,202,122,44,18,-39,0,202,122,44,19,-39,0,202,122,44,20,-39,0,202,122,44,21,-39,0,202,122,44,22,-39,0,202,122,44,23,-39,0,202,122,44,24,-39,0,202,122,44,25,-39,0,202,122,44,26,-39,0,202,122,44,27,-39,0,202,122,44,28,-39,0,202,122,44,29,-39,0,202,122,44,30,-39,0,202,122,44,31,-39,0,202,122,44,32,-39,0,202,122,44,33,-39,0,202,122,44,34,-39,0,202,122,44,35,-39,0,202,122,44,36,-39,0,202,122,44,37,-39,0,202,122,44,38,-39,0,202,122,44,39,-39,0,202,122,44,40,-39,0,202,122,44,41,-39,0,202,122,44,42,-39,0,202,122,44,43,-39,0,202,122,44,44,-39,0,202,122,44,45,-39,0,202,122,44,46,-39,0,202,122,44,47,-39,0,202,122,44,48,-39,0,202,122,44,49,-39,0,202,122,44,50,-39,0,202,122,44,51,-39,0,202,122,44,52,-39,0,202,122,44,53,-39,0,202,122,44,54,-39,0,202,122,44,55,-39,0,202,122,44,56,-39,0,202,122,44,57,-39,0,202,122,44,58,-39,0,202,122,44,59,-39,0,202,122,44,60,-39,0,202,122,44,61,-39,0,202,122,44,62,-39,0,202,122,44,63,-39,0,202,122,44,64,-39,0,202,122,44,65,-39,0,202,122,44,66,-39,0,202,122,44,67,-39,0,202,122,44,68,-39,0,202,122,44,69,-39,0,202,122,44,70,-39,0,202,122,44,71,-39,0,202,122,44,72,-39,0,202,122,44,73,-39,0,202,122,44,74,-39,0,202,122,44,75,-39,0,202,122,44,76,-39,0,202,122,44,77,-39,0,202,122,44,78,-39,0,202,122,44,79,-39,0,202,122,44,80,-39,0,202,122,44,81,-39,0,202,122,44,82,-39,0,202,122,44,83,-39,0,202,122,44,84,-39,0,202,122,44,85,-39,0,202,122,44,-40,-38,0,202,122,44,-39,-38,0,202,122,44,-38,-38,0,202,122,44,-37,-38,0,202,122,44,-36,-38,0,202,122,44,-35,-38,0,202,122,44,-34,-38,0,202,122,44,-33,-38,0,202,122,44,-32,-38,0,202,122,44,-31,-38,0,202,122,44,-30,-38,0,202,122,44,-29,-38,0,202,122,44,-28,-38,0,202,122,44,-27,-38,0,202,122,44,-26,-38,0,202,122,44,-25,-38,0,202,122,44,-24,-38,0,202,122,44,-23,-38,0,202,122,44,-22,-38,0,202,122,44,-21,-38,0,202,122,44,-20,-38,0,202,122,44,-19,-38,0,202,122,44,-18,-38,0,202,122,44,-17,-38,0,202,122,44,-16,-38,0,202,122,44,-15,-38,0,202,122,44,-14,-38,0,202,122,44,-13,-38,0,202,122,44,-12,-38,0,202,122,44,-11,-38,0,202,122,44,-10,-38,0,202,122,44,-9,-38,0,202,122,44,-8,-38,0,202,122,44,-7,-38,0,202,122,44,-6,-38,0,202,122,44,-5,-38,0,202,122,44,-4,-38,0,202,122,44,-3,-38,0,202,122,44,-2,-38,0,202,122,44,-1,-38,0,202,122,44,0,-38,0,202,122,44,1,-38,0,202,122,44,2,-38,0,202,122,44,3,-38,0,202,122,44,4,-38,0,202,122,44,5,-38,0,202,122,44,6,-38,0,202,122,44,7,-38,0,202,122,44,8,-38,0,202,122,44,9,-38,0,202,122,44,10,-38,0,202,122,44,11,-38,0,202,122,44,12,-38,0,202,122,44,13,-38,0,202,122,44,14,-38,0,202,122,44,15,-38,0,202,122,44,16,-38,0,202,122,44,17,-38,0,202,122,44,18,-38,0,202,122,44,19,-38,0,202,122,44,20,-38,0,202,122,44,21,-38,0,202,122,44,22,-38,0,202,122,44,23,-38,0,202,122,44,24,-38,0,202,122,44,25,-38,0,202,122,44,26,-38,0,202,122,44,27,-38,0,202,122,44,28,-38,0,202,122,44,29,-38,0,202,122,44,30,-38,0,202,122,44,31,-38,0,202,122,44,32,-38,0,202,122,44,33,-38,0,202,122,44,34,-38,0,202,122,44,35,-38,0,202,122,44,36,-38,0,202,122,44,37,-38,0,202,122,44,38,-38,0,202,122,44,39,-38,0,202,122,44,40,-38,0,202,122,44,41,-38,0,202,122,44,42,-38,0,202,122,44,43,-38,0,202,122,44,44,-38,0,202,122,44,45,-38,0,202,122,44,46,-38,0,202,122,44,47,-38,0,202,122,44,48,-38,0,202,122,44,49,-38,0,202,122,44,50,-38,0,202,122,44,51,-38,0,202,122,44,52,-38,0,202,122,44,53,-38,0,202,122,44,54,-38,0,202,122,44,55,-38,0,202,122,44,56,-38,0,202,122,44,57,-38,0,202,122,44,58,-38,0,202,122,44,59,-38,0,202,122,44,60,-38,0,202,122,44,61,-38,0,202,122,44,62,-38,0,202,122,44,63,-38,0,202,122,44,64,-38,0,202,122,44,65,-38,0,202,122,44,66,-38,0,202,122,44,67,-38,0,202,122,44,68,-38,0,202,122,44,69,-38,0,202,122,44,70,-38,0,202,122,44,71,-38,0,202,122,44,72,-38,0,202,122,44,73,-38,0,202,122,44,74,-38,0,202,122,44,75,-38,0,202,122,44,76,-38,0,202,122,44,77,-38,0,202,122,44,78,-38,0,202,122,44,79,-38,0,202,122,44,80,-38,0,202,122,44,81,-38,0,202,122,44,82,-38,0,202,122,44,83,-38,0,202,122,44,84,-38,0,202,122,44,85,-38,0,202,122,44,-40,-37,0,202,122,44,-39,-37,0,202,122,44,-38,-37,0,202,122,44,-37,-37,0,202,122,44,-36,-37,0,202,122,44,-35,-37,0,202,122,44,-34,-37,0,202,122,44,-33,-37,0,202,122,44,-32,-37,0,202,122,44,-31,-37,0,202,122,44,-30,-37,0,202,122,44,-29,-37,0,202,122,44,-28,-37,0,202,122,44,-27,-37,0,202,122,44,-26,-37,0,202,122,44,-25,-37,0,202,122,44,-24,-37,0,202,122,44,-23,-37,0,202,122,44,-22,-37,0,202,122,44,-21,-37,0,202,122,44,-20,-37,0,202,122,44,-19,-37,0,202,122,44,-18,-37,0,202,122,44,-17,-37,0,202,122,44,-16,-37,0,202,122,44,-15,-37,0,202,122,44,-14,-37,0,202,122,44,-13,-37,0,202,122,44,-12,-37,0,202,122,44,-11,-37,0,202,122,44,-10,-37,0,202,122,44,-9,-37,0,202,122,44,-8,-37,0,202,122,44,-7,-37,0,202,122,44,-6,-37,0,202,122,44,-5,-37,0,202,122,44,-4,-37,0,202,122,44,-3,-37,0,202,122,44,-2,-37,0,202,122,44,-1,-37,0,202,122,44,0,-37,0,202,122,44,1,-37,0,202,122,44,2,-37,0,202,122,44,3,-37,0,202,122,44,4,-37,0,202,122,44,5,-37,0,202,122,44,6,-37,0,202,122,44,7,-37,0,202,122,44,8,-37,0,202,122,44,9,-37,0,202,122,44,10,-37,0,202,122,44,11,-37,0,202,122,44,12,-37,0,202,122,44,13,-37,0,202,122,44,14,-37,0,202,122,44,15,-37,0,202,122,44,16,-37,0,202,122,44,17,-37,0,202,122,44,18,-37,0,202,122,44,19,-37,0,202,122,44,20,-37,0,202,122,44,21,-37,0,202,122,44,22,-37,0,202,122,44,23,-37,0,202,122,44,24,-37,0,202,122,44,25,-37,0,202,122,44,26,-37,0,202,122,44,27,-37,0,202,122,44,28,-37,0,202,122,44,29,-37,0,202,122,44,30,-37,0,202,122,44,31,-37,0,202,122,44,32,-37,0,202,122,44,33,-37,0,202,122,44,34,-37,0,202,122,44,35,-37,0,202,122,44,36,-37,0,202,122,44,37,-37,0,202,122,44,38,-37,0,202,122,44,39,-37,0,202,122,44,40,-37,0,202,122,44,41,-37,0,202,122,44,42,-37,0,202,122,44,43,-37,0,202,122,44,44,-37,0,202,122,44,45,-37,0,202,122,44,46,-37,0,202,122,44,47,-37,0,202,122,44,48,-37,0,202,122,44,49,-37,0,202,122,44,50,-37,0,202,122,44,51,-37,0,202,122,44,52,-37,0,202,122,44,53,-37,0,202,122,44,54,-37,0,202,122,44,55,-37,0,202,122,44,56,-37,0,202,122,44,57,-37,0,202,122,44,58,-37,0,202,122,44,59,-37,0,202,122,44,60,-37,0,202,122,44,61,-37,0,202,122,44,62,-37,0,202,122,44,63,-37,0,202,122,44,64,-37,0,202,122,44,65,-37,0,202,122,44,66,-37,0,202,122,44,67,-37,0,202,122,44,68,-37,0,202,122,44,69,-37,0,202,122,44,70,-37,0,202,122,44,71,-37,0,202,122,44,72,-37,0,202,122,44,73,-37,0,202,122,44,74,-37,0,202,122,44,75,-37,0,202,122,44,76,-37,0,202,122,44,77,-37,0,202,122,44,78,-37,0,202,122,44,79,-37,0,202,122,44,80,-37,0,202,122,44,81,-37,0,202,122,44,82,-37,0,202,122,44,83,-37,0,202,122,44,84,-37,0,202,122,44,85,-37,0,202,122,44,-40,-36,0,202,122,44,-39,-36,0,202,122,44,-38,-36,0,202,122,44,-37,-36,0,202,122,44,-36,-36,0,202,122,44,-35,-36,0,202,122,44,-34,-36,0,202,122,44,-33,-36,0,202,122,44,-32,-36,0,202,122,44,-31,-36,0,202,122,44,-30,-36,0,202,122,44,-29,-36,0,202,122,44,-28,-36,0,202,122,44,-27,-36,0,202,122,44,-26,-36,0,202,122,44,-25,-36,0,202,122,44,-24,-36,0,202,122,44,-23,-36,0,202,122,44,-22,-36,0,202,122,44,-21,-36,0,202,122,44,-20,-36,0,202,122,44,-19,-36,0,202,122,44,-18,-36,0,202,122,44,-17,-36,0,202,122,44,-16,-36,0,202,122,44,-15,-36,0,202,122,44,-14,-36,0,202,122,44,-13,-36,0,202,122,44,-12,-36,0,202,122,44,-11,-36,0,202,122,44,-10,-36,0,202,122,44,-9,-36,0,202,122,44,-8,-36,0,202,122,44,-7,-36,0,202,122,44,-6,-36,0,202,122,44,-5,-36,0,202,122,44,-4,-36,0,202,122,44,-3,-36,0,202,122,44,-2,-36,0,202,122,44,-1,-36,0,202,122,44,0,-36,0,202,122,44,1,-36,0,202,122,44,2,-36,0,202,122,44,3,-36,0,202,122,44,4,-36,0,202,122,44,5,-36,0,202,122,44,6,-36,0,202,122,44,7,-36,0,202,122,44,8,-36,0,202,122,44,9,-36,0,202,122,44,10,-36,0,202,122,44,11,-36,0,202,122,44,12,-36,0,202,122,44,13,-36,0,202,122,44,14,-36,0,202,122,44,15,-36,0,202,122,44,16,-36,0,202,122,44,17,-36,0,202,122,44,18,-36,0,202,122,44,19,-36,0,202,122,44,20,-36,0,202,122,44,21,-36,0,202,122,44,22,-36,0,202,122,44,23,-36,0,202,122,44,24,-36,0,202,122,44,25,-36,0,202,122,44,26,-36,0,202,122,44,27,-36,0,202,122,44,28,-36,0,202,122,44,29,-36,0,202,122,44,30,-36,0,202,122,44,31,-36,0,202,122,44,32,-36,0,202,122,44,33,-36,0,202,122,44,34,-36,0,202,122,44,35,-36,0,202,122,44,36,-36,0,202,122,44,37,-36,0,202,122,44,38,-36,0,202,122,44,39,-36,0,202,122,44,40,-36,0,202,122,44,41,-36,0,202,122,44,42,-36,0,202,122,44,43,-36,0,202,122,44,44,-36,0,202,122,44,45,-36,0,202,122,44,46,-36,0,202,122,44,47,-36,0,202,122,44,48,-36,0,202,122,44,49,-36,0,202,122,44,50,-36,0,202,122,44,51,-36,0,202,122,44,52,-36,0,202,122,44,53,-36,0,202,122,44,54,-36,0,202,122,44,55,-36,0,202,122,44,56,-36,0,202,122,44,57,-36,0,202,122,44,58,-36,0,202,122,44,59,-36,0,202,122,44,60,-36,0,202,122,44,61,-36,0,202,122,44,62,-36,0,202,122,44,63,-36,0,202,122,44,64,-36,0,202,122,44,65,-36,0,202,122,44,66,-36,0,202,122,44,67,-36,0,202,122,44,68,-36,0,202,122,44,69,-36,0,202,122,44,70,-36,0,202,122,44,71,-36,0,202,122,44,72,-36,0,202,122,44,73,-36,0,202,122,44,74,-36,0,202,122,44,75,-36,0,202,122,44,76,-36,0,202,122,44,77,-36,0,202,122,44,78,-36,0,202,122,44,79,-36,0,202,122,44,80,-36,0,202,122,44,81,-36,0,202,122,44,82,-36,0,202,122,44,83,-36,0,202,122,44,84,-36,0,202,122,44,85,-36,0,202,122,44,-40,-35,0,202,122,44,-39,-35,0,202,122,44,-38,-35,0,202,122,44,-37,-35,0,202,122,44,-36,-35,0,202,122,44,-35,-35,0,202,122,44,-34,-35,0,202,122,44,-33,-35,0,202,122,44,-32,-35,0,202,122,44,-31,-35,0,202,122,44,-30,-35,0,202,122,44,-29,-35,0,202,122,44,-28,-35,0,202,122,44,-27,-35,0,202,122,44,-26,-35,0,202,122,44,-25,-35,0,202,122,44,-24,-35,0,202,122,44,-23,-35,0,202,122,44,-22,-35,0,202,122,44,-21,-35,0,202,122,44,-20,-35,0,202,122,44,-19,-35,0,202,122,44,-18,-35,0,202,122,44,-17,-35,0,202,122,44,-16,-35,0,202,122,44,-15,-35,0,202,122,44,-14,-35,0,202,122,44,-13,-35,0,202,122,44,-12,-35,0,202,122,44,-11,-35,0,202,122,44,-10,-35,0,202,122,44,-9,-35,0,202,122,44,-8,-35,0,202,122,44,-7,-35,0,202,122,44,-6,-35,0,202,122,44,-5,-35,0,202,122,44,-4,-35,0,202,122,44,-3,-35,0,202,122,44,-2,-35,0,202,122,44,-1,-35,0,202,122,44,0,-35,0,202,122,44,1,-35,0,202,122,44,2,-35,0,202,122,44,3,-35,0,202,122,44,4,-35,0,202,122,44,5,-35,0,202,122,44,6,-35,0,202,122,44,7,-35,0,202,122,44,8,-35,0,202,122,44,9,-35,0,202,122,44,10,-35,0,202,122,44,11,-35,0,202,122,44,12,-35,0,202,122,44,13,-35,0,202,122,44,14,-35,0,202,122,44,15,-35,0,202,122,44,16,-35,0,202,122,44,17,-35,0,202,122,44,18,-35,0,202,122,44,19,-35,0,202,122,44,20,-35,0,202,122,44,21,-35,0,202,122,44,22,-35,0,202,122,44,23,-35,0,202,122,44,24,-35,0,202,122,44,25,-35,0,202,122,44,26,-35,0,202,122,44,27,-35,0,202,122,44,28,-35,0,202,122,44,29,-35,0,202,122,44,30,-35,0,202,122,44,31,-35,0,202,122,44,32,-35,0,202,122,44,33,-35,0,202,122,44,34,-35,0,202,122,44,35,-35,0,202,122,44,36,-35,0,202,122,44,37,-35,0,202,122,44,38,-35,0,202,122,44,39,-35,0,202,122,44,40,-35,0,202,122,44,41,-35,0,202,122,44,42,-35,0,202,122,44,43,-35,0,202,122,44,44,-35,0,202,122,44,45,-35,0,202,122,44,46,-35,0,202,122,44,47,-35,0,202,122,44,48,-35,0,202,122,44,49,-35,0,202,122,44,50,-35,0,202,122,44,51,-35,0,202,122,44,52,-35,0,202,122,44,53,-35,0,202,122,44,54,-35,0,202,122,44,55,-35,0,202,122,44,56,-35,0,202,122,44,57,-35,0,202,122,44,58,-35,0,202,122,44,59,-35,0,202,122,44,60,-35,0,202,122,44,61,-35,0,202,122,44,62,-35,0,202,122,44,63,-35,0,202,122,44,64,-35,0,202,122,44,65,-35,0,202,122,44,66,-35,0,202,122,44,67,-35,0,202,122,44,68,-35,0,202,122,44,69,-35,0,202,122,44,70,-35,0,202,122,44,71,-35,0,202,122,44,72,-35,0,202,122,44,73,-35,0,202,122,44,74,-35,0,202,122,44,75,-35,0,202,122,44,76,-35,0,202,122,44,77,-35,0,202,122,44,78,-35,0,202,122,44,79,-35,0,202,122,44,80,-35,0,202,122,44,81,-35,0,202,122,44,82,-35,0,202,122,44,83,-35,0,202,122,44,84,-35,0,202,122,44,85,-35,0,202,122,44,-40,-34,0,202,122,44,-39,-34,0,202,122,44,-38,-34,0,202,122,44,-37,-34,0,202,122,44,-36,-34,0,202,122,44,-35,-34,0,202,122,44,-34,-34,0,202,122,44,-33,-34,0,202,122,44,-32,-34,0,202,122,44,-31,-34,0,202,122,44,-30,-34,0,202,122,44,-29,-34,0,202,122,44,-28,-34,0,202,122,44,-27,-34,0,202,122,44,-26,-34,0,202,122,44,-25,-34,0,202,122,44,-24,-34,0,202,122,44,-23,-34,0,202,122,44,-22,-34,0,202,122,44,-21,-34,0,202,122,44,-20,-34,0,202,122,44,-19,-34,0,202,122,44,-18,-34,0,202,122,44,-17,-34,0,202,122,44,-16,-34,0,202,122,44,-15,-34,0,202,122,44,-14,-34,0,202,122,44,-13,-34,0,202,122,44,-12,-34,0,202,122,44,-11,-34,0,202,122,44,-10,-34,0,202,122,44,-9,-34,0,202,122,44,-8,-34,0,202,122,44,-7,-34,0,202,122,44,-6,-34,0,202,122,44,-5,-34,0,202,122,44,-4,-34,0,202,122,44,-3,-34,0,202,122,44,-2,-34,0,202,122,44,-1,-34,0,202,122,44,0,-34,0,202,122,44,1,-34,0,202,122,44,2,-34,0,202,122,44,3,-34,0,202,122,44,4,-34,0,202,122,44,5,-34,0,202,122,44,6,-34,0,202,122,44,7,-34,0,202,122,44,8,-34,0,202,122,44,9,-34,0,202,122,44,10,-34,0,202,122,44,11,-34,0,202,122,44,12,-34,0,202,122,44,13,-34,0,202,122,44,14,-34,0,202,122,44,15,-34,0,202,122,44,16,-34,0,202,122,44,17,-34,0,202,122,44,18,-34,0,202,122,44,19,-34,0,202,122,44,20,-34,0,202,122,44,21,-34,0,202,122,44,22,-34,0,202,122,44,23,-34,0,202,122,44,24,-34,0,202,122,44,25,-34,0,202,122,44,26,-34,0,202,122,44,27,-34,0,202,122,44,28,-34,0,202,122,44,29,-34,0,202,122,44,30,-34,0,202,122,44,31,-34,0,202,122,44,32,-34,0,202,122,44,33,-34,0,202,122,44,34,-34,0,202,122,44,35,-34,0,202,122,44,36,-34,0,202,122,44,37,-34,0,202,122,44,38,-34,0,202,122,44,39,-34,0,202,122,44,40,-34,0,202,122,44,41,-34,0,202,122,44,42,-34,0,202,122,44,43,-34,0,202,122,44,44,-34,0,202,122,44,45,-34,0,202,122,44,46,-34,0,202,122,44,47,-34,0,202,122,44,48,-34,0,202,122,44,49,-34,0,202,122,44,50,-34,0,202,122,44,51,-34,0,202,122,44,52,-34,0,202,122,44,53,-34,0,202,122,44,54,-34,0,202,122,44,55,-34,0,202,122,44,56,-34,0,202,122,44,57,-34,0,202,122,44,58,-34,0,202,122,44,59,-34,0,202,122,44,60,-34,0,202,122,44,61,-34,0,202,122,44,62,-34,0,202,122,44,63,-34,0,202,122,44,64,-34,0,202,122,44,65,-34,0,202,122,44,66,-34,0,202,122,44,67,-34,0,202,122,44,68,-34,0,202,122,44,69,-34,0,202,122,44,70,-34,0,202,122,44,71,-34,0,202,122,44,72,-34,0,202,122,44,73,-34,0,202,122,44,74,-34,0,202,122,44,75,-34,0,202,122,44,76,-34,0,202,122,44,77,-34,0,202,122,44,78,-34,0,202,122,44,79,-34,0,202,122,44,80,-34,0,202,122,44,81,-34,0,202,122,44,82,-34,0,202,122,44,83,-34,0,202,122,44,84,-34,0,202,122,44,85,-34,0,202,122,44,-40,-33,0,202,122,44,-39,-33,0,202,122,44,-38,-33,0,202,122,44,-37,-33,0,202,122,44,-36,-33,0,202,122,44,-35,-33,0,202,122,44,-34,-33,0,202,122,44,-33,-33,0,202,122,44,-32,-33,0,202,122,44,-31,-33,0,202,122,44,-30,-33,0,202,122,44,-29,-33,0,202,122,44,-28,-33,0,202,122,44,-27,-33,0,202,122,44,-26,-33,0,202,122,44,-25,-33,0,202,122,44,-24,-33,0,202,122,44,-23,-33,0,202,122,44,-22,-33,0,202,122,44,-21,-33,0,202,122,44,-20,-33,0,202,122,44,-19,-33,0,202,122,44,-18,-33,0,202,122,44,-17,-33,0,202,122,44,-16,-33,0,202,122,44,-15,-33,0,202,122,44,-14,-33,0,202,122,44,-13,-33,0,202,122,44,-12,-33,0,202,122,44,-11,-33,0,202,122,44,-10,-33,0,202,122,44,-9,-33,0,202,122,44,-8,-33,0,202,122,44,-7,-33,0,202,122,44,-6,-33,0,202,122,44,-5,-33,0,202,122,44,-4,-33,0,202,122,44,-3,-33,0,202,122,44,-2,-33,0,202,122,44,-1,-33,0,202,122,44,0,-33,0,202,122,44,1,-33,0,202,122,44,2,-33,0,202,122,44,3,-33,0,202,122,44,4,-33,0,202,122,44,5,-33,0,202,122,44,6,-33,0,202,122,44,7,-33,0,202,122,44,8,-33,0,202,122,44,9,-33,0,202,122,44,10,-33,0,202,122,44,11,-33,0,202,122,44,12,-33,0,202,122,44,13,-33,0,202,122,44,14,-33,0,202,122,44,15,-33,0,202,122,44,16,-33,0,202,122,44,17,-33,0,202,122,44,18,-33,0,202,122,44,19,-33,0,202,122,44,20,-33,0,202,122,44,21,-33,0,202,122,44,22,-33,0,202,122,44,23,-33,0,202,122,44,24,-33,0,202,122,44,25,-33,0,202,122,44,26,-33,0,202,122,44,27,-33,0,202,122,44,28,-33,0,202,122,44,29,-33,0,202,122,44,30,-33,0,202,122,44,31,-33,0,202,122,44,32,-33,0,202,122,44,33,-33,0,202,122,44,34,-33,0,202,122,44,35,-33,0,202,122,44,36,-33,0,202,122,44,37,-33,0,202,122,44,38,-33,0,202,122,44,39,-33,0,202,122,44,40,-33,0,202,122,44,41,-33,0,202,122,44,42,-33,0,202,122,44,43,-33,0,202,122,44,44,-33,0,202,122,44,45,-33,0,202,122,44,46,-33,0,202,122,44,47,-33,0,202,122,44,48,-33,0,202,122,44,49,-33,0,202,122,44,50,-33,0,202,122,44,51,-33,0,202,122,44,52,-33,0,202,122,44,53,-33,0,202,122,44,54,-33,0,202,122,44,55,-33,0,202,122,44,56,-33,0,202,122,44,57,-33,0,202,122,44,58,-33,0,202,122,44,59,-33,0,202,122,44,60,-33,0,202,122,44,61,-33,0,202,122,44,62,-33,0,202,122,44,63,-33,0,202,122,44,64,-33,0,202,122,44,65,-33,0,202,122,44,66,-33,0,202,122,44,67,-33,0,202,122,44,68,-33,0,202,122,44,69,-33,0,202,122,44,70,-33,0,202,122,44,71,-33,0,202,122,44,72,-33,0,202,122,44,73,-33,0,202,122,44,74,-33,0,202,122,44,75,-33,0,202,122,44,76,-33,0,202,122,44,77,-33,0,202,122,44,78,-33,0,202,122,44,79,-33,0,202,122,44,80,-33,0,202,122,44,81,-33,0,202,122,44,82,-33,0,202,122,44,83,-33,0,202,122,44,84,-33,0,202,122,44,85,-33,0,202,122,44,-40,-32,0,202,122,44,-39,-32,0,202,122,44,-38,-32,0,202,122,44,-37,-32,0,202,122,44,-36,-32,0,202,122,44,-35,-32,0,202,122,44,-34,-32,0,202,122,44,-33,-32,0,202,122,44,-32,-32,0,202,122,44,-31,-32,0,202,122,44,-30,-32,0,202,122,44,-29,-32,0,202,122,44,-28,-32,0,202,122,44,-27,-32,0,202,122,44,-26,-32,0,202,122,44,-25,-32,0,202,122,44,-24,-32,0,202,122,44,-23,-32,0,202,122,44,-22,-32,0,202,122,44,-21,-32,0,202,122,44,-20,-32,0,202,122,44,-19,-32,0,202,122,44,-18,-32,0,202,122,44,-17,-32,0,202,122,44,-16,-32,0,202,122,44,-15,-32,0,202,122,44,-14,-32,0,202,122,44,-13,-32,0,202,122,44,-12,-32,0,202,122,44,-11,-32,0,202,122,44,-10,-32,0,202,122,44,-9,-32,0,202,122,44,-8,-32,0,202,122,44,-7,-32,0,202,122,44,-6,-32,0,202,122,44,-5,-32,0,202,122,44,-4,-32,0,202,122,44,-3,-32,0,202,122,44,-2,-32,0,202,122,44,-1,-32,0,202,122,44,0,-32,0,202,122,44,1,-32,0,202,122,44,2,-32,0,202,122,44,3,-32,0,202,122,44,4,-32,0,202,122,44,5,-32,0,202,122,44,6,-32,0,202,122,44,7,-32,0,202,122,44,8,-32,0,202,122,44,9,-32,0,202,122,44,10,-32,0,202,122,44,11,-32,0,202,122,44,12,-32,0,202,122,44,13,-32,0,202,122,44,14,-32,0,202,122,44,15,-32,0,202,122,44,16,-32,0,202,122,44,17,-32,0,202,122,44,18,-32,0,202,122,44,19,-32,0,202,122,44,20,-32,0,202,122,44,21,-32,0,202,122,44,22,-32,0,202,122,44,23,-32,0,202,122,44,24,-32,0,202,122,44,25,-32,0,202,122,44,26,-32,0,202,122,44,27,-32,0,202,122,44,28,-32,0,202,122,44,29,-32,0,202,122,44,30,-32,0,202,122,44,31,-32,0,202,122,44,32,-32,0,202,122,44,33,-32,0,202,122,44,34,-32,0,202,122,44,35,-32,0,202,122,44,36,-32,0,202,122,44,37,-32,0,202,122,44,38,-32,0,202,122,44,39,-32,0,202,122,44,40,-32,0,202,122,44,41,-32,0,202,122,44,42,-32,0,202,122,44,43,-32,0,202,122,44,44,-32,0,202,122,44,45,-32,0,202,122,44,46,-32,0,202,122,44,47,-32,0,202,122,44,48,-32,0,202,122,44,49,-32,0,202,122,44,50,-32,0,202,122,44,51,-32,0,202,122,44,52,-32,0,202,122,44,53,-32,0,202,122,44,54,-32,0,202,122,44,55,-32,0,202,122,44,56,-32,0,202,122,44,57,-32,0,202,122,44,58,-32,0,202,122,44,59,-32,0,202,122,44,60,-32,0,202,122,44,61,-32,0,202,122,44,62,-32,0,202,122,44,63,-32,0,202,122,44,64,-32,0,202,122,44,65,-32,0,202,122,44,66,-32,0,202,122,44,67,-32,0,202,122,44,68,-32,0,202,122,44,69,-32,0,202,122,44,70,-32,0,202,122,44,71,-32,0,202,122,44,72,-32,0,202,122,44,73,-32,0,202,122,44,74,-32,0,202,122,44,75,-32,0,202,122,44,76,-32,0,202,122,44,77,-32,0,202,122,44,78,-32,0,202,122,44,79,-32,0,202,122,44,80,-32,0,202,122,44,81,-32,0,202,122,44,82,-32,0,202,122,44,83,-32,0,202,122,44,84,-32,0,202,122,44,85,-32,0,202,122,44,-40,-31,0,202,122,44,-39,-31,0,202,122,44,-38,-31,0,202,122,44,-37,-31,0,202,122,44,-36,-31,0,202,122,44,-35,-31,0,202,122,44,-34,-31,0,202,122,44,-33,-31,0,202,122,44,-32,-31,0,202,122,44,-31,-31,0,202,122,44,-30,-31,0,202,122,44,-29,-31,0,202,122,44,-28,-31,0,202,122,44,-27,-31,0,202,122,44,-26,-31,0,202,122,44,-25,-31,0,202,122,44,-24,-31,0,202,122,44,-23,-31,0,202,122,44,-22,-31,0,202,122,44,-21,-31,0,202,122,44,-20,-31,0,202,122,44,-19,-31,0,202,122,44,-18,-31,0,202,122,44,-17,-31,0,202,122,44,-16,-31,0,202,122,44,-15,-31,0,202,122,44,-14,-31,0,202,122,44,-13,-31,0,202,122,44,-12,-31,0,202,122,44,-11,-31,0,202,122,44,-10,-31,0,202,122,44,-9,-31,0,202,122,44,-8,-31,0,202,122,44,-7,-31,0,202,122,44,-6,-31,0,202,122,44,-5,-31,0,202,122,44,-4,-31,0,202,122,44,-3,-31,0,202,122,44,-2,-31,0,202,122,44,-1,-31,0,202,122,44,0,-31,0,202,122,44,1,-31,0,202,122,44,2,-31,0,202,122,44,3,-31,0,202,122,44,4,-31,0,202,122,44,5,-31,0,202,122,44,6,-31,0,202,122,44,7,-31,0,202,122,44,8,-31,0,202,122,44,9,-31,0,202,122,44,10,-31,0,202,122,44,11,-31,0,202,122,44,12,-31,0,202,122,44,13,-31,0,202,122,44,14,-31,0,202,122,44,15,-31,0,202,122,44,16,-31,0,202,122,44,17,-31,0,202,122,44,18,-31,0,202,122,44,19,-31,0,202,122,44,20,-31,0,202,122,44,21,-31,0,202,122,44,22,-31,0,202,122,44,23,-31,0,202,122,44,24,-31,0,202,122,44,25,-31,0,202,122,44,26,-31,0,202,122,44,27,-31,0,202,122,44,28,-31,0,202,122,44,29,-31,0,202,122,44,30,-31,0,202,122,44,31,-31,0,202,122,44,32,-31,0,202,122,44,33,-31,0,202,122,44,34,-31,0,202,122,44,35,-31,0,202,122,44,36,-31,0,202,122,44,37,-31,0,202,122,44,38,-31,0,202,122,44,39,-31,0,202,122,44,40,-31,0,202,122,44,41,-31,0,202,122,44,42,-31,0,202,122,44,43,-31,0,202,122,44,44,-31,0,202,122,44,45,-31,0,202,122,44,46,-31,0,202,122,44,47,-31,0,202,122,44,48,-31,0,202,122,44,49,-31,0,202,122,44,50,-31,0,202,122,44,51,-31,0,202,122,44,52,-31,0,202,122,44,53,-31,0,202,122,44,54,-31,0,202,122,44,55,-31,0,202,122,44,56,-31,0,202,122,44,57,-31,0,202,122,44,58,-31,0,202,122,44,59,-31,0,202,122,44,60,-31,0,202,122,44,61,-31,0,202,122,44,62,-31,0,202,122,44,63,-31,0,202,122,44,64,-31,0,202,122,44,65,-31,0,202,122,44,66,-31,0,202,122,44,67,-31,0,202,122,44,68,-31,0,202,122,44,69,-31,0,202,122,44,70,-31,0,202,122,44,71,-31,0,202,122,44,72,-31,0,202,122,44,73,-31,0,202,122,44,74,-31,0,202,122,44,75,-31,0,202,122,44,76,-31,0,202,122,44,77,-31,0,202,122,44,78,-31,0,202,122,44,79,-31,0,202,122,44,80,-31,0,202,122,44,81,-31,0,202,122,44,82,-31,0,202,122,44,83,-31,0,202,122,44,84,-31,0,202,122,44,85,-31,0,202,122,44,-40,-30,0,202,122,44,-39,-30,0,202,122,44,-38,-30,0,202,122,44,-37,-30,0,202,122,44,-36,-30,0,202,122,44,-35,-30,0,202,122,44,-34,-30,0,202,122,44,-33,-30,0,202,122,44,-32,-30,0,202,122,44,-31,-30,0,202,122,44,-30,-30,0,202,122,44,-29,-30,0,202,122,44,-28,-30,0,202,122,44,-27,-30,0,202,122,44,-26,-30,0,202,122,44,-25,-30,0,202,122,44,-24,-30,0,202,122,44,-23,-30,0,202,122,44,-22,-30,0,202,122,44,-21,-30,0,202,122,44,-20,-30,0,202,122,44,-19,-30,0,202,122,44,-18,-30,0,202,122,44,-17,-30,0,202,122,44,-16,-30,0,202,122,44,-15,-30,0,202,122,44,-14,-30,0,202,122,44,-13,-30,0,202,122,44,-12,-30,0,202,122,44,-11,-30,0,202,122,44,-10,-30,0,202,122,44,-9,-30,0,202,122,44,-8,-30,0,202,122,44,-7,-30,0,202,122,44,-6,-30,0,202,122,44,-5,-30,0,202,122,44,-4,-30,0,202,122,44,-3,-30,0,202,122,44,-2,-30,0,202,122,44,-1,-30,0,202,122,44,0,-30,0,202,122,44,1,-30,0,202,122,44,2,-30,0,202,122,44,3,-30,0,202,122,44,4,-30,0,202,122,44,5,-30,0,202,122,44,6,-30,0,202,122,44,7,-30,0,202,122,44,8,-30,0,202,122,44,9,-30,0,202,122,44,10,-30,0,202,122,44,11,-30,0,202,122,44,12,-30,0,202,122,44,13,-30,0,202,122,44,14,-30,0,202,122,44,15,-30,0,202,122,44,16,-30,0,202,122,44,17,-30,0,202,122,44,18,-30,0,202,122,44,19,-30,0,202,122,44,20,-30,0,202,122,44,21,-30,0,202,122,44,22,-30,0,202,122,44,23,-30,0,202,122,44,24,-30,0,202,122,44,25,-30,0,202,122,44,26,-30,0,202,122,44,27,-30,0,202,122,44,28,-30,0,202,122,44,29,-30,0,202,122,44,30,-30,0,202,122,44,31,-30,0,202,122,44,32,-30,0,202,122,44,33,-30,0,202,122,44,34,-30,0,202,122,44,35,-30,0,202,122,44,36,-30,0,202,122,44,37,-30,0,202,122,44,38,-30,0,202,122,44,39,-30,0,202,122,44,40,-30,0,202,122,44,41,-30,0,202,122,44,42,-30,0,202,122,44,43,-30,0,202,122,44,44,-30,0,202,122,44,45,-30,0,202,122,44,46,-30,0,202,122,44,47,-30,0,202,122,44,48,-30,0,202,122,44,49,-30,0,202,122,44,50,-30,0,202,122,44,51,-30,0,202,122,44,52,-30,0,202,122,44,53,-30,0,202,122,44,54,-30,0,202,122,44,55,-30,0,202,122,44,56,-30,0,202,122,44,57,-30,0,202,122,44,58,-30,0,202,122,44,59,-30,0,202,122,44,60,-30,0,202,122,44,61,-30,0,202,122,44,62,-30,0,202,122,44,63,-30,0,202,122,44,64,-30,0,202,122,44,65,-30,0,202,122,44,66,-30,0,202,122,44,67,-30,0,202,122,44,68,-30,0,202,122,44,69,-30,0,202,122,44,70,-30,0,202,122,44,71,-30,0,202,122,44,72,-30,0,202,122,44,73,-30,0,202,122,44,74,-30,0,202,122,44,75,-30,0,202,122,44,76,-30,0,202,122,44,77,-30,0,202,122,44,78,-30,0,202,122,44,79,-30,0,202,122,44,80,-30,0,202,122,44,81,-30,0,202,122,44,82,-30,0,202,122,44,83,-30,0,202,122,44,84,-30,0,202,122,44,85,-30,0,202,122,44,-40,-29,0,202,122,44,-39,-29,0,202,122,44,-38,-29,0,202,122,44,-37,-29,0,202,122,44,-36,-29,0,202,122,44,-35,-29,0,202,122,44,-34,-29,0,202,122,44,-33,-29,0,202,122,44,-32,-29,0,202,122,44,-31,-29,0,202,122,44,-30,-29,0,202,122,44,-29,-29,0,202,122,44,-28,-29,0,202,122,44,-27,-29,0,202,122,44,-26,-29,0,202,122,44,-25,-29,0,202,122,44,-24,-29,0,202,122,44,-23,-29,0,202,122,44,-22,-29,0,202,122,44,-21,-29,0,202,122,44,-20,-29,0,202,122,44,-19,-29,0,202,122,44,-18,-29,0,202,122,44,-17,-29,0,202,122,44,-16,-29,0,202,122,44,-15,-29,0,202,122,44,-14,-29,0,202,122,44,-13,-29,0,202,122,44,-12,-29,0,202,122,44,-11,-29,0,202,122,44,-10,-29,0,202,122,44,-9,-29,0,202,122,44,-8,-29,0,202,122,44,-7,-29,0,202,122,44,-6,-29,0,202,122,44,-5,-29,0,202,122,44,-4,-29,0,202,122,44,-3,-29,0,202,122,44,-2,-29,0,202,122,44,-1,-29,0,202,122,44,0,-29,0,202,122,44,1,-29,0,202,122,44,2,-29,0,202,122,44,3,-29,0,202,122,44,4,-29,0,202,122,44,5,-29,0,202,122,44,6,-29,0,202,122,44,7,-29,0,202,122,44,8,-29,0,202,122,44,9,-29,0,202,122,44,10,-29,0,202,122,44,11,-29,0,202,122,44,12,-29,0,202,122,44,13,-29,0,202,122,44,14,-29,0,202,122,44,15,-29,0,202,122,44,16,-29,0,202,122,44,17,-29,0,202,122,44,18,-29,0,202,122,44,19,-29,0,202,122,44,20,-29,0,202,122,44,21,-29,0,202,122,44,22,-29,0,202,122,44,23,-29,0,202,122,44,24,-29,0,202,122,44,25,-29,0,202,122,44,26,-29,0,202,122,44,27,-29,0,202,122,44,28,-29,0,202,122,44,29,-29,0,202,122,44,30,-29,0,202,122,44,31,-29,0,202,122,44,32,-29,0,202,122,44,33,-29,0,202,122,44,34,-29,0,202,122,44,35,-29,0,202,122,44,36,-29,0,202,122,44,37,-29,0,202,122,44,38,-29,0,202,122,44,39,-29,0,202,122,44,40,-29,0,202,122,44,41,-29,0,202,122,44,42,-29,0,202,122,44,43,-29,0,202,122,44,44,-29,0,202,122,44,45,-29,0,202,122,44,46,-29,0,202,122,44,47,-29,0,202,122,44,48,-29,0,202,122,44,49,-29,0,202,122,44,50,-29,0,202,122,44,51,-29,0,202,122,44,52,-29,0,202,122,44,53,-29,0,202,122,44,54,-29,0,202,122,44,55,-29,0,202,122,44,56,-29,0,202,122,44,57,-29,0,202,122,44,58,-29,0,202,122,44,59,-29,0,202,122,44,60,-29,0,202,122,44,61,-29,0,202,122,44,62,-29,0,202,122,44,63,-29,0,202,122,44,64,-29,0,202,122,44,65,-29,0,202,122,44,66,-29,0,202,122,44,67,-29,0,202,122,44,68,-29,0,202,122,44,69,-29,0,202,122,44,70,-29,0,202,122,44,71,-29,0,202,122,44,72,-29,0,202,122,44,73,-29,0,202,122,44,74,-29,0,202,122,44,75,-29,0,202,122,44,76,-29,0,202,122,44,77,-29,0,202,122,44,78,-29,0,202,122,44,79,-29,0,202,122,44,80,-29,0,202,122,44,81,-29,0,202,122,44,82,-29,0,202,122,44,83,-29,0,202,122,44,84,-29,0,202,122,44,85,-29,0,202,122,44,-40,-28,0,202,122,44,-39,-28,0,202,122,44,-38,-28,0,202,122,44,-37,-28,0,202,122,44,-36,-28,0,202,122,44,-35,-28,0,202,122,44,-34,-28,0,202,122,44,-33,-28,0,202,122,44,-32,-28,0,202,122,44,-31,-28,0,202,122,44,-30,-28,0,202,122,44,-29,-28,0,202,122,44,-28,-28,0,202,122,44,-27,-28,0,202,122,44,-26,-28,0,202,122,44,-25,-28,0,202,122,44,-24,-28,0,202,122,44,-23,-28,0,202,122,44,-22,-28,0,202,122,44,-21,-28,0,202,122,44,-20,-28,0,202,122,44,-19,-28,0,202,122,44,-18,-28,0,202,122,44,-17,-28,0,202,122,44,-16,-28,0,202,122,44,-15,-28,0,202,122,44,-14,-28,0,202,122,44,-13,-28,0,202,122,44,-12,-28,0,202,122,44,-11,-28,0,202,122,44,-10,-28,0,202,122,44,-9,-28,0,202,122,44,-8,-28,0,202,122,44,-7,-28,0,202,122,44,-6,-28,0,202,122,44,-5,-28,0,202,122,44,-4,-28,0,202,122,44,-3,-28,0,202,122,44,-2,-28,0,202,122,44,-1,-28,0,202,122,44,0,-28,0,202,122,44,1,-28,0,202,122,44,2,-28,0,202,122,44,3,-28,0,202,122,44,4,-28,0,202,122,44,5,-28,0,202,122,44,6,-28,0,202,122,44,7,-28,0,202,122,44,8,-28,0,202,122,44,9,-28,0,202,122,44,10,-28,0,202,122,44,11,-28,0,202,122,44,12,-28,0,202,122,44,13,-28,0,202,122,44,14,-28,0,202,122,44,15,-28,0,202,122,44,16,-28,0,202,122,44,17,-28,0,202,122,44,18,-28,0,202,122,44,19,-28,0,202,122,44,20,-28,0,202,122,44,21,-28,0,202,122,44,22,-28,0,202,122,44,23,-28,0,202,122,44,24,-28,0,202,122,44,25,-28,0,202,122,44,26,-28,0,202,122,44,27,-28,0,202,122,44,28,-28,0,202,122,44,29,-28,0,202,122,44,30,-28,0,202,122,44,31,-28,0,202,122,44,32,-28,0,202,122,44,33,-28,0,202,122,44,34,-28,0,202,122,44,35,-28,0,202,122,44,36,-28,0,202,122,44,37,-28,0,202,122,44,38,-28,0,202,122,44,39,-28,0,202,122,44,40,-28,0,202,122,44,41,-28,0,202,122,44,42,-28,0,202,122,44,43,-28,0,202,122,44,44,-28,0,202,122,44,45,-28,0,202,122,44,46,-28,0,202,122,44,47,-28,0,202,122,44,48,-28,0,202,122,44,49,-28,0,202,122,44,50,-28,0,202,122,44,51,-28,0,202,122,44,52,-28,0,202,122,44,53,-28,0,202,122,44,54,-28,0,202,122,44,55,-28,0,202,122,44,56,-28,0,202,122,44,57,-28,0,202,122,44,58,-28,0,202,122,44,59,-28,0,202,122,44,60,-28,0,202,122,44,61,-28,0,202,122,44,62,-28,0,202,122,44,63,-28,0,202,122,44,64,-28,0,202,122,44,65,-28,0,202,122,44,66,-28,0,202,122,44,67,-28,0,202,122,44,68,-28,0,202,122,44,69,-28,0,202,122,44,70,-28,0,202,122,44,71,-28,0,202,122,44,72,-28,0,202,122,44,73,-28,0,202,122,44,74,-28,0,202,122,44,75,-28,0,202,122,44,76,-28,0,202,122,44,77,-28,0,202,122,44,78,-28,0,202,122,44,79,-28,0,202,122,44,80,-28,0,202,122,44,81,-28,0,202,122,44,82,-28,0,202,122,44,83,-28,0,202,122,44,84,-28,0,202,122,44,85,-28,0,202,122,44,-40,-27,0,202,122,44,-39,-27,0,202,122,44,-38,-27,0,202,122,44,-37,-27,0,202,122,44,-36,-27,0,202,122,44,-35,-27,0,202,122,44,-34,-27,0,202,122,44,-33,-27,0,202,122,44,-32,-27,0,202,122,44,-31,-27,0,202,122,44,-30,-27,0,202,122,44,-29,-27,0,202,122,44,-28,-27,0,202,122,44,-27,-27,0,202,122,44,-26,-27,0,202,122,44,-25,-27,0,202,122,44,-24,-27,0,202,122,44,-23,-27,0,202,122,44,-22,-27,0,202,122,44,-21,-27,0,202,122,44,-20,-27,0,202,122,44,-19,-27,0,202,122,44,-18,-27,0,202,122,44,-17,-27,0,202,122,44,-16,-27,0,202,122,44,-15,-27,0,202,122,44,-14,-27,0,202,122,44,-13,-27,0,202,122,44,-12,-27,0,202,122,44,-11,-27,0,202,122,44,-10,-27,0,202,122,44,-9,-27,0,202,122,44,-8,-27,0,202,122,44,-7,-27,0,202,122,44,-6,-27,0,202,122,44,-5,-27,0,202,122,44,-4,-27,0,202,122,44,-3,-27,0,202,122,44,-2,-27,0,202,122,44,-1,-27,0,202,122,44,0,-27,0,202,122,44,1,-27,0,202,122,44,2,-27,0,202,122,44,3,-27,0,202,122,44,4,-27,0,202,122,44,5,-27,0,202,122,44,6,-27,0,202,122,44,7,-27,0,202,122,44,8,-27,0,202,122,44,9,-27,0,202,122,44,10,-27,0,202,122,44,11,-27,0,202,122,44,12,-27,0,202,122,44,13,-27,0,202,122,44,14,-27,0,202,122,44,15,-27,0,202,122,44,16,-27,0,202,122,44,17,-27,0,202,122,44,18,-27,0,202,122,44,19,-27,0,202,122,44,20,-27,0,202,122,44,21,-27,0,202,122,44,22,-27,0,202,122,44,23,-27,0,202,122,44,24,-27,0,202,122,44,25,-27,0,202,122,44,26,-27,0,202,122,44,27,-27,0,202,122,44,28,-27,0,202,122,44,29,-27,0,202,122,44,30,-27,0,202,122,44,31,-27,0,202,122,44,32,-27,0,202,122,44,33,-27,0,202,122,44,34,-27,0,202,122,44,35,-27,0,202,122,44,36,-27,0,202,122,44,37,-27,0,202,122,44,38,-27,0,202,122,44,39,-27,0,202,122,44,40,-27,0,202,122,44,41,-27,0,202,122,44,42,-27,0,202,122,44,43,-27,0,202,122,44,44,-27,0,202,122,44,45,-27,0,202,122,44,46,-27,0,202,122,44,47,-27,0,202,122,44,48,-27,0,202,122,44,49,-27,0,202,122,44,50,-27,0,202,122,44,51,-27,0,202,122,44,52,-27,0,202,122,44,53,-27,0,202,122,44,54,-27,0,202,122,44,55,-27,0,202,122,44,56,-27,0,202,122,44,57,-27,0,202,122,44,58,-27,0,202,122,44,59,-27,0,202,122,44,60,-27,0,202,122,44,61,-27,0,202,122,44,62,-27,0,202,122,44,63,-27,0,202,122,44,64,-27,0,202,122,44,65,-27,0,202,122,44,66,-27,0,202,122,44,67,-27,0,202,122,44,68,-27,0,202,122,44,69,-27,0,202,122,44,70,-27,0,202,122,44,71,-27,0,202,122,44,72,-27,0,202,122,44,73,-27,0,202,122,44,74,-27,0,202,122,44,75,-27,0,202,122,44,76,-27,0,202,122,44,77,-27,0,202,122,44,78,-27,0,202,122,44,79,-27,0,202,122,44,80,-27,0,202,122,44,81,-27,0,202,122,44,82,-27,0,202,122,44,83,-27,0,202,122,44,84,-27,0,202,122,44,85,-27,0,202,122,44,-40,-26,0,202,122,44,-39,-26,0,202,122,44,-38,-26,0,202,122,44,-37,-26,0,202,122,44,-36,-26,0,202,122,44,-35,-26,0,202,122,44,-34,-26,0,202,122,44,-33,-26,0,202,122,44,-32,-26,0,202,122,44,-31,-26,0,202,122,44,-30,-26,0,202,122,44,-29,-26,0,202,122,44,-28,-26,0,202,122,44,-27,-26,0,202,122,44,-26,-26,0,202,122,44,-25,-26,0,202,122,44,-24,-26,0,202,122,44,-23,-26,0,202,122,44,-22,-26,0,202,122,44,-21,-26,0,202,122,44,-20,-26,0,202,122,44,-19,-26,0,202,122,44,-18,-26,0,202,122,44,-17,-26,0,202,122,44,-16,-26,0,202,122,44,-15,-26,0,202,122,44,-14,-26,0,202,122,44,-13,-26,0,202,122,44,-12,-26,0,202,122,44,-11,-26,0,202,122,44,-10,-26,0,202,122,44,-9,-26,0,202,122,44,-8,-26,0,202,122,44,-7,-26,0,202,122,44,-6,-26,0,202,122,44,-5,-26,0,202,122,44,-4,-26,0,202,122,44,-3,-26,0,202,122,44,-2,-26,0,202,122,44,-1,-26,0,202,122,44,0,-26,0,202,122,44,1,-26,0,202,122,44,2,-26,0,202,122,44,3,-26,0,202,122,44,4,-26,0,202,122,44,5,-26,0,202,122,44,6,-26,0,202,122,44,7,-26,0,202,122,44,8,-26,0,202,122,44,9,-26,0,202,122,44,10,-26,0,202,122,44,11,-26,0,202,122,44,12,-26,0,202,122,44,13,-26,0,202,122,44,14,-26,0,202,122,44,15,-26,0,202,122,44,16,-26,0,202,122,44,17,-26,0,202,122,44,18,-26,0,202,122,44,19,-26,0,202,122,44,20,-26,0,202,122,44,21,-26,0,202,122,44,22,-26,0,202,122,44,23,-26,0,202,122,44,24,-26,0,202,122,44,25,-26,0,202,122,44,26,-26,0,202,122,44,27,-26,0,202,122,44,28,-26,0,202,122,44,29,-26,0,202,122,44,30,-26,0,202,122,44,31,-26,0,202,122,44,32,-26,0,202,122,44,33,-26,0,202,122,44,34,-26,0,202,122,44,35,-26,0,202,122,44,36,-26,0,202,122,44,37,-26,0,202,122,44,38,-26,0,202,122,44,39,-26,0,202,122,44,40,-26,0,202,122,44,41,-26,0,202,122,44,42,-26,0,202,122,44,43,-26,0,202,122,44,44,-26,0,202,122,44,45,-26,0,202,122,44,46,-26,0,202,122,44,47,-26,0,202,122,44,48,-26,0,202,122,44,49,-26,0,202,122,44,50,-26,0,202,122,44,51,-26,0,202,122,44,52,-26,0,202,122,44,53,-26,0,202,122,44,54,-26,0,202,122,44,55,-26,0,202,122,44,56,-26,0,202,122,44,57,-26,0,202,122,44,58,-26,0,202,122,44,59,-26,0,202,122,44,60,-26,0,202,122,44,61,-26,0,202,122,44,62,-26,0,202,122,44,63,-26,0,202,122,44,64,-26,0,202,122,44,65,-26,0,202,122,44,66,-26,0,202,122,44,67,-26,0,202,122,44,68,-26,0,202,122,44,69,-26,0,202,122,44,70,-26,0,202,122,44,71,-26,0,202,122,44,72,-26,0,202,122,44,73,-26,0,202,122,44,74,-26,0,202,122,44,75,-26,0,202,122,44,76,-26,0,202,122,44,77,-26,0,202,122,44,78,-26,0,202,122,44,79,-26,0,202,122,44,80,-26,0,202,122,44,81,-26,0,202,122,44,82,-26,0,202,122,44,83,-26,0,202,122,44,84,-26,0,202,122,44,85,-26,0,202,122,44,-40,-25,0,202,122,44,-39,-25,0,202,122,44,-38,-25,0,202,122,44,-37,-25,0,202,122,44,-36,-25,0,202,122,44,-35,-25,0,202,122,44,-34,-25,0,202,122,44,-33,-25,0,202,122,44,-32,-25,0,202,122,44,-31,-25,0,202,122,44,-30,-25,0,202,122,44,-29,-25,0,202,122,44,-28,-25,0,202,122,44,-27,-25,0,202,122,44,-26,-25,0,202,122,44,-25,-25,0,202,122,44,-24,-25,0,202,122,44,-23,-25,0,202,122,44,-22,-25,0,202,122,44,-21,-25,0,202,122,44,-20,-25,0,202,122,44,-19,-25,0,202,122,44,-18,-25,0,202,122,44,-17,-25,0,202,122,44,-16,-25,0,202,122,44,-15,-25,0,202,122,44,-14,-25,0,202,122,44,-13,-25,0,202,122,44,-12,-25,0,202,122,44,-11,-25,0,202,122,44,-10,-25,0,202,122,44,-9,-25,0,202,122,44,-8,-25,0,202,122,44,-7,-25,0,202,122,44,-6,-25,0,202,122,44,-5,-25,0,202,122,44,-4,-25,0,202,122,44,-3,-25,0,202,122,44,-2,-25,0,202,122,44,-1,-25,0,202,122,44,0,-25,0,202,122,44,1,-25,0,202,122,44,2,-25,0,202,122,44,3,-25,0,202,122,44,4,-25,0,202,122,44,5,-25,0,202,122,44,6,-25,0,202,122,44,7,-25,0,202,122,44,8,-25,0,202,122,44,9,-25,0,202,122,44,10,-25,0,202,122,44,11,-25,0,202,122,44,12,-25,0,202,122,44,13,-25,0,202,122,44,14,-25,0,202,122,44,15,-25,0,202,122,44,16,-25,0,202,122,44,17,-25,0,202,122,44,18,-25,0,202,122,44,19,-25,0,202,122,44,20,-25,0,202,122,44,21,-25,0,202,122,44,22,-25,0,202,122,44,23,-25,0,202,122,44,24,-25,0,202,122,44,25,-25,0,202,122,44,26,-25,0,202,122,44,27,-25,0,202,122,44,28,-25,0,202,122,44,29,-25,0,202,122,44,30,-25,0,202,122,44,31,-25,0,202,122,44,32,-25,0,202,122,44,33,-25,0,202,122,44,34,-25,0,202,122,44,35,-25,0,202,122,44,36,-25,0,202,122,44,37,-25,0,202,122,44,38,-25,0,202,122,44,39,-25,0,202,122,44,40,-25,0,202,122,44,41,-25,0,202,122,44,42,-25,0,202,122,44,43,-25,0,202,122,44,44,-25,0,202,122,44,45,-25,0,202,122,44,46,-25,0,202,122,44,47,-25,0,202,122,44,48,-25,0,202,122,44,49,-25,0,202,122,44,50,-25,0,202,122,44,51,-25,0,202,122,44,52,-25,0,202,122,44,53,-25,0,202,122,44,54,-25,0,202,122,44,55,-25,0,202,122,44,56,-25,0,202,122,44,57,-25,0,202,122,44,58,-25,0,202,122,44,59,-25,0,202,122,44,60,-25,0,202,122,44,61,-25,0,202,122,44,62,-25,0,202,122,44,63,-25,0,202,122,44,64,-25,0,202,122,44,65,-25,0,202,122,44,66,-25,0,202,122,44,67,-25,0,202,122,44,68,-25,0,202,122,44,69,-25,0,202,122,44,70,-25,0,202,122,44,71,-25,0,202,122,44,72,-25,0,202,122,44,73,-25,0,202,122,44,74,-25,0,202,122,44,75,-25,0,202,122,44,76,-25,0,202,122,44,77,-25,0,202,122,44,78,-25,0,202,122,44,79,-25,0,202,122,44,80,-25,0,202,122,44,81,-25,0,202,122,44,82,-25,0,202,122,44,83,-25,0,202,122,44,84,-25,0,202,122,44,85,-25,0,202,122,44,-40,-24,0,202,122,44,-39,-24,0,202,122,44,-38,-24,0,202,122,44,-37,-24,0,202,122,44,-36,-24,0,202,122,44,-35,-24,0,202,122,44,-34,-24,0,202,122,44,-33,-24,0,202,122,44,-32,-24,0,202,122,44,-31,-24,0,202,122,44,-30,-24,0,202,122,44,-29,-24,0,202,122,44,-28,-24,0,202,122,44,-27,-24,0,202,122,44,-26,-24,0,202,122,44,-25,-24,0,202,122,44,-24,-24,0,202,122,44,-23,-24,0,202,122,44,-22,-24,0,202,122,44,-21,-24,0,202,122,44,-20,-24,0,202,122,44,-19,-24,0,202,122,44,-18,-24,0,202,122,44,-17,-24,0,202,122,44,-16,-24,0,202,122,44,-15,-24,0,202,122,44,-14,-24,0,202,122,44,-13,-24,0,202,122,44,-12,-24,0,202,122,44,-11,-24,0,202,122,44,-10,-24,0,202,122,44,-9,-24,0,202,122,44,-8,-24,0,202,122,44,-7,-24,0,202,122,44,-6,-24,0,202,122,44,-5,-24,0,202,122,44,-4,-24,0,202,122,44,-3,-24,0,202,122,44,-2,-24,0,202,122,44,-1,-24,0,202,122,44,0,-24,0,202,122,44,1,-24,0,202,122,44,2,-24,0,202,122,44,3,-24,0,202,122,44,4,-24,0,202,122,44,5,-24,0,202,122,44,6,-24,0,202,122,44,7,-24,0,202,122,44,8,-24,0,202,122,44,9,-24,0,202,122,44,10,-24,0,202,122,44,11,-24,0,202,122,44,12,-24,0,202,122,44,13,-24,0,202,122,44,14,-24,0,202,122,44,15,-24,0,202,122,44,16,-24,0,202,122,44,17,-24,0,202,122,44,18,-24,0,202,122,44,19,-24,0,202,122,44,20,-24,0,202,122,44,21,-24,0,202,122,44,22,-24,0,202,122,44,23,-24,0,202,122,44,24,-24,0,202,122,44,25,-24,0,202,122,44,26,-24,0,202,122,44,27,-24,0,202,122,44,28,-24,0,202,122,44,29,-24,0,202,122,44,30,-24,0,202,122,44,31,-24,0,202,122,44,32,-24,0,202,122,44,33,-24,0,202,122,44,34,-24,0,202,122,44,35,-24,0,202,122,44,36,-24,0,202,122,44,37,-24,0,202,122,44,38,-24,0,202,122,44,39,-24,0,202,122,44,40,-24,0,202,122,44,41,-24,0,202,122,44,42,-24,0,202,122,44,43,-24,0,202,122,44,44,-24,0,202,122,44,45,-24,0,202,122,44,46,-24,0,202,122,44,47,-24,0,202,122,44,48,-24,0,202,122,44,49,-24,0,202,122,44,50,-24,0,202,122,44,51,-24,0,202,122,44,52,-24,0,202,122,44,53,-24,0,202,122,44,54,-24,0,202,122,44,55,-24,0,202,122,44,56,-24,0,202,122,44,57,-24,0,202,122,44,58,-24,0,202,122,44,59,-24,0,202,122,44,60,-24,0,202,122,44,61,-24,0,202,122,44,62,-24,0,202,122,44,63,-24,0,202,122,44,64,-24,0,202,122,44,65,-24,0,202,122,44,66,-24,0,202,122,44,67,-24,0,202,122,44,68,-24,0,202,122,44,69,-24,0,202,122,44,70,-24,0,202,122,44,71,-24,0,202,122,44,72,-24,0,202,122,44,73,-24,0,202,122,44,74,-24,0,202,122,44,75,-24,0,202,122,44,76,-24,0,202,122,44,77,-24,0,202,122,44,78,-24,0,202,122,44,79,-24,0,202,122,44,80,-24,0,202,122,44,81,-24,0,202,122,44,82,-24,0,202,122,44,83,-24,0,202,122,44,84,-24,0,202,122,44,85,-24,0,202,122,44,-40,-23,0,202,122,44,-39,-23,0,202,122,44,-38,-23,0,202,122,44,-37,-23,0,202,122,44,-36,-23,0,202,122,44,-35,-23,0,202,122,44,-34,-23,0,202,122,44,-33,-23,0,202,122,44,-32,-23,0,202,122,44,-31,-23,0,202,122,44,-30,-23,0,202,122,44,-29,-23,0,202,122,44,-28,-23,0,202,122,44,-27,-23,0,202,122,44,-26,-23,0,202,122,44,-25,-23,0,202,122,44,-24,-23,0,202,122,44,-23,-23,0,202,122,44,-22,-23,0,202,122,44,-21,-23,0,202,122,44,-20,-23,0,202,122,44,-19,-23,0,202,122,44,-18,-23,0,202,122,44,-17,-23,0,202,122,44,-16,-23,0,202,122,44,-15,-23,0,202,122,44,-14,-23,0,202,122,44,-13,-23,0,202,122,44,-12,-23,0,202,122,44,-11,-23,0,202,122,44,-10,-23,0,202,122,44,-9,-23,0,202,122,44,-8,-23,0,202,122,44,-7,-23,0,202,122,44,-6,-23,0,202,122,44,-5,-23,0,202,122,44,-4,-23,0,202,122,44,-3,-23,0,202,122,44,-2,-23,0,202,122,44,-1,-23,0,202,122,44,0,-23,0,202,122,44,1,-23,0,202,122,44,2,-23,0,202,122,44,3,-23,0,202,122,44,4,-23,0,202,122,44,5,-23,0,202,122,44,6,-23,0,202,122,44,7,-23,0,202,122,44,8,-23,0,202,122,44,9,-23,0,202,122,44,10,-23,0,202,122,44,11,-23,0,202,122,44,12,-23,0,202,122,44,13,-23,0,202,122,44,14,-23,0,202,122,44,15,-23,0,202,122,44,16,-23,0,202,122,44,17,-23,0,202,122,44,18,-23,0,202,122,44,19,-23,0,202,122,44,20,-23,0,202,122,44,21,-23,0,202,122,44,22,-23,0,202,122,44,23,-23,0,202,122,44,24,-23,0,202,122,44,25,-23,0,202,122,44,26,-23,0,202,122,44,27,-23,0,202,122,44,28,-23,0,202,122,44,29,-23,0,202,122,44,30,-23,0,202,122,44,31,-23,0,202,122,44,32,-23,0,202,122,44,33,-23,0,202,122,44,34,-23,0,202,122,44,35,-23,0,202,122,44,36,-23,0,202,122,44,37,-23,0,202,122,44,38,-23,0,202,122,44,39,-23,0,202,122,44,40,-23,0,202,122,44,41,-23,0,202,122,44,42,-23,0,202,122,44,43,-23,0,202,122,44,44,-23,0,202,122,44,45,-23,0,202,122,44,46,-23,0,202,122,44,47,-23,0,202,122,44,48,-23,0,202,122,44,49,-23,0,202,122,44,50,-23,0,202,122,44,51,-23,0,202,122,44,52,-23,0,202,122,44,53,-23,0,202,122,44,54,-23,0,202,122,44,55,-23,0,202,122,44,56,-23,0,202,122,44,57,-23,0,202,122,44,58,-23,0,202,122,44,59,-23,0,202,122,44,60,-23,0,202,122,44,61,-23,0,202,122,44,62,-23,0,202,122,44,63,-23,0,202,122,44,64,-23,0,202,122,44,65,-23,0,202,122,44,66,-23,0,202,122,44,67,-23,0,202,122,44,68,-23,0,202,122,44,69,-23,0,202,122,44,70,-23,0,202,122,44,71,-23,0,202,122,44,72,-23,0,202,122,44,73,-23,0,202,122,44,74,-23,0,202,122,44,75,-23,0,202,122,44,76,-23,0,202,122,44,77,-23,0,202,122,44,78,-23,0,202,122,44,79,-23,0,202,122,44,80,-23,0,202,122,44,81,-23,0,202,122,44,82,-23,0,202,122,44,83,-23,0,202,122,44,84,-23,0,202,122,44,85,-23,0,202,122,44,-40,-22,0,202,122,44,-39,-22,0,202,122,44,-38,-22,0,202,122,44,-37,-22,0,202,122,44,-36,-22,0,202,122,44,-35,-22,0,202,122,44,-34,-22,0,202,122,44,-33,-22,0,202,122,44,-32,-22,0,202,122,44,-31,-22,0,202,122,44,-30,-22,0,202,122,44,-29,-22,0,202,122,44,-28,-22,0,202,122,44,-27,-22,0,202,122,44,-26,-22,0,202,122,44,-25,-22,0,202,122,44,-24,-22,0,202,122,44,-23,-22,0,202,122,44,-22,-22,0,202,122,44,-21,-22,0,202,122,44,-20,-22,0,202,122,44,-19,-22,0,202,122,44,-18,-22,0,202,122,44,-17,-22,0,202,122,44,-16,-22,0,202,122,44,-15,-22,0,202,122,44,-14,-22,0,202,122,44,-13,-22,0,202,122,44,-12,-22,0,202,122,44,-11,-22,0,202,122,44,-10,-22,0,202,122,44,-9,-22,0,202,122,44,-8,-22,0,202,122,44,-7,-22,0,202,122,44,-6,-22,0,202,122,44,-5,-22,0,202,122,44,-4,-22,0,202,122,44,-3,-22,0,202,122,44,-2,-22,0,202,122,44,-1,-22,0,202,122,44,0,-22,0,202,122,44,1,-22,0,202,122,44,2,-22,0,202,122,44,3,-22,0,202,122,44,4,-22,0,202,122,44,5,-22,0,202,122,44,6,-22,0,202,122,44,7,-22,0,202,122,44,8,-22,0,202,122,44,9,-22,0,202,122,44,10,-22,0,202,122,44,11,-22,0,202,122,44,12,-22,0,202,122,44,13,-22,0,202,122,44,14,-22,0,202,122,44,15,-22,0,202,122,44,16,-22,0,202,122,44,17,-22,0,202,122,44,18,-22,0,202,122,44,19,-22,0,202,122,44,20,-22,0,202,122,44,21,-22,0,202,122,44,22,-22,0,202,122,44,23,-22,0,202,122,44,24,-22,0,202,122,44,25,-22,0,202,122,44,26,-22,0,202,122,44,27,-22,0,202,122,44,28,-22,0,202,122,44,29,-22,0,202,122,44,30,-22,0,202,122,44,31,-22,0,202,122,44,32,-22,0,202,122,44,33,-22,0,202,122,44,34,-22,0,202,122,44,35,-22,0,202,122,44,36,-22,0,202,122,44,37,-22,0,202,122,44,38,-22,0,202,122,44,39,-22,0,202,122,44,40,-22,0,202,122,44,41,-22,0,202,122,44,42,-22,0,202,122,44,43,-22,0,202,122,44,44,-22,0,202,122,44,45,-22,0,202,122,44,46,-22,0,202,122,44,47,-22,0,202,122,44,48,-22,0,202,122,44,49,-22,0,202,122,44,50,-22,0,202,122,44,51,-22,0,202,122,44,52,-22,0,202,122,44,53,-22,0,202,122,44,54,-22,0,202,122,44,55,-22,0,202,122,44,56,-22,0,202,122,44,57,-22,0,202,122,44,58,-22,0,202,122,44,59,-22,0,202,122,44,60,-22,0,202,122,44,61,-22,0,202,122,44,62,-22,0,202,122,44,63,-22,0,202,122,44,64,-22,0,202,122,44,65,-22,0,202,122,44,66,-22,0,202,122,44,67,-22,0,202,122,44,68,-22,0,202,122,44,69,-22,0,202,122,44,70,-22,0,202,122,44,71,-22,0,202,122,44,72,-22,0,202,122,44,73,-22,0,202,122,44,74,-22,0,202,122,44,75,-22,0,202,122,44,76,-22,0,202,122,44,77,-22,0,202,122,44,78,-22,0,202,122,44,79,-22,0,202,122,44,80,-22,0,202,122,44,81,-22,0,202,122,44,82,-22,0,202,122,44,83,-22,0,202,122,44,84,-22,0,202,122,44,85,-22,0,202,122,44,-40,-21,0,202,122,44,-39,-21,0,202,122,44,-38,-21,0,202,122,44,-37,-21,0,202,122,44,-36,-21,0,202,122,44,-35,-21,0,202,122,44,-34,-21,0,202,122,44,-33,-21,0,202,122,44,-32,-21,0,202,122,44,-31,-21,0,202,122,44,-30,-21,0,202,122,44,-29,-21,0,202,122,44,-28,-21,0,202,122,44,-27,-21,0,202,122,44,-26,-21,0,202,122,44,-25,-21,0,202,122,44,-24,-21,0,202,122,44,-23,-21,0,202,122,44,-22,-21,0,202,122,44,-21,-21,0,202,122,44,-20,-21,0,202,122,44,-19,-21,0,202,122,44,-18,-21,0,202,122,44,-17,-21,0,202,122,44,-16,-21,0,202,122,44,-15,-21,0,202,122,44,-14,-21,0,202,122,44,-13,-21,0,202,122,44,-12,-21,0,202,122,44,-11,-21,0,202,122,44,-10,-21,0,202,122,44,-9,-21,0,202,122,44,-8,-21,0,202,122,44,-7,-21,0,202,122,44,-6,-21,0,202,122,44,-5,-21,0,202,122,44,-4,-21,0,202,122,44,-3,-21,0,202,122,44,-2,-21,0,202,122,44,-1,-21,0,202,122,44,0,-21,0,202,122,44,1,-21,0,202,122,44,2,-21,0,202,122,44,3,-21,0,202,122,44,4,-21,0,202,122,44,5,-21,0,202,122,44,6,-21,0,202,122,44,7,-21,0,202,122,44,8,-21,0,202,122,44,9,-21,0,202,122,44,10,-21,0,202,122,44,11,-21,0,202,122,44,12,-21,0,202,122,44,13,-21,0,202,122,44,14,-21,0,202,122,44,15,-21,0,202,122,44,16,-21,0,202,122,44,17,-21,0,202,122,44,18,-21,0,202,122,44,19,-21,0,202,122,44,20,-21,0,202,122,44,21,-21,0,202,122,44,22,-21,0,202,122,44,23,-21,0,202,122,44,24,-21,0,202,122,44,25,-21,0,202,122,44,26,-21,0,202,122,44,27,-21,0,202,122,44,28,-21,0,202,122,44,29,-21,0,202,122,44,30,-21,0,202,122,44,31,-21,0,202,122,44,32,-21,0,202,122,44,33,-21,0,202,122,44,34,-21,0,202,122,44,35,-21,0,202,122,44,36,-21,0,202,122,44,37,-21,0,202,122,44,38,-21,0,202,122,44,39,-21,0,202,122,44,40,-21,0,202,122,44,41,-21,0,202,122,44,42,-21,0,202,122,44,43,-21,0,202,122,44,44,-21,0,202,122,44,45,-21,0,202,122,44,46,-21,0,202,122,44,47,-21,0,202,122,44,48,-21,0,202,122,44,49,-21,0,202,122,44,50,-21,0,202,122,44,51,-21,0,202,122,44,52,-21,0,202,122,44,53,-21,0,202,122,44,54,-21,0,202,122,44,55,-21,0,202,122,44,56,-21,0,202,122,44,57,-21,0,202,122,44,58,-21,0,202,122,44,59,-21,0,202,122,44,60,-21,0,202,122,44,61,-21,0,202,122,44,62,-21,0,202,122,44,63,-21,0,202,122,44,64,-21,0,202,122,44,65,-21,0,202,122,44,66,-21,0,202,122,44,67,-21,0,202,122,44,68,-21,0,202,122,44,69,-21,0,202,122,44,70,-21,0,202,122,44,71,-21,0,202,122,44,72,-21,0,202,122,44,73,-21,0,202,122,44,74,-21,0,202,122,44,75,-21,0,202,122,44,76,-21,0,202,122,44,77,-21,0,202,122,44,78,-21,0,202,122,44,79,-21,0,202,122,44,80,-21,0,202,122,44,81,-21,0,202,122,44,82,-21,0,202,122,44,83,-21,0,202,122,44,84,-21,0,202,122,44,85,-21,0,202,122,44,-40,-20,0,202,122,44,-39,-20,0,202,122,44,-38,-20,0,202,122,44,-37,-20,0,202,122,44,-36,-20,0,202,122,44,-35,-20,0,202,122,44,-34,-20,0,202,122,44,-33,-20,0,202,122,44,-32,-20,0,202,122,44,-31,-20,0,202,122,44,-30,-20,0,202,122,44,-29,-20,0,202,122,44,-28,-20,0,202,122,44,-27,-20,0,202,122,44,-26,-20,0,202,122,44,-25,-20,0,202,122,44,-24,-20,0,202,122,44,-23,-20,0,202,122,44,-22,-20,0,202,122,44,-21,-20,0,202,122,44,-20,-20,0,202,122,44,-19,-20,0,202,122,44,-18,-20,0,202,122,44,-17,-20,0,202,122,44,-16,-20,0,202,122,44,-15,-20,0,202,122,44,-14,-20,0,202,122,44,-13,-20,0,202,122,44,-12,-20,0,202,122,44,-11,-20,0,202,122,44,-10,-20,0,202,122,44,-9,-20,0,202,122,44,-8,-20,0,202,122,44,-7,-20,0,202,122,44,-6,-20,0,202,122,44,-5,-20,0,202,122,44,-4,-20,0,202,122,44,-3,-20,0,202,122,44,-2,-20,0,202,122,44,-1,-20,0,202,122,44,0,-20,0,202,122,44,1,-20,0,202,122,44,2,-20,0,202,122,44,3,-20,0,202,122,44,4,-20,0,202,122,44,5,-20,0,202,122,44,6,-20,0,202,122,44,7,-20,0,202,122,44,8,-20,0,202,122,44,9,-20,0,202,122,44,10,-20,0,202,122,44,11,-20,0,202,122,44,12,-20,0,202,122,44,13,-20,0,202,122,44,14,-20,0,202,122,44,15,-20,0,202,122,44,16,-20,0,202,122,44,17,-20,0,202,122,44,18,-20,0,202,122,44,19,-20,0,202,122,44,20,-20,0,202,122,44,21,-20,0,202,122,44,22,-20,0,202,122,44,23,-20,0,202,122,44,24,-20,0,202,122,44,25,-20,0,202,122,44,26,-20,0,202,122,44,27,-20,0,202,122,44,28,-20,0,202,122,44,29,-20,0,202,122,44,30,-20,0,202,122,44,31,-20,0,202,122,44,32,-20,0,202,122,44,33,-20,0,202,122,44,34,-20,0,202,122,44,35,-20,0,202,122,44,36,-20,0,202,122,44,37,-20,0,202,122,44,38,-20,0,202,122,44,39,-20,0,202,122,44,40,-20,0,202,122,44,41,-20,0,202,122,44,42,-20,0,202,122,44,43,-20,0,202,122,44,44,-20,0,202,122,44,45,-20,0,202,122,44,46,-20,0,202,122,44,47,-20,0,202,122,44,48,-20,0,202,122,44,49,-20,0,202,122,44,50,-20,0,202,122,44,51,-20,0,202,122,44,52,-20,0,202,122,44,53,-20,0,202,122,44,54,-20,0,202,122,44,55,-20,0,202,122,44,56,-20,0,202,122,44,57,-20,0,202,122,44,58,-20,0,202,122,44,59,-20,0,202,122,44,60,-20,0,202,122,44,61,-20,0,202,122,44,62,-20,0,202,122,44,63,-20,0,202,122,44,64,-20,0,202,122,44,65,-20,0,202,122,44,66,-20,0,202,122,44,67,-20,0,202,122,44,68,-20,0,202,122,44,69,-20,0,202,122,44,70,-20,0,202,122,44,71,-20,0,202,122,44,72,-20,0,202,122,44,73,-20,0,202,122,44,74,-20,0,202,122,44,75,-20,0,202,122,44,76,-20,0,202,122,44,77,-20,0,202,122,44,78,-20,0,202,122,44,79,-20,0,202,122,44,80,-20,0,202,122,44,81,-20,0,202,122,44,82,-20,0,202,122,44,83,-20,0,202,122,44,84,-20,0,202,122,44,85,-20,0,202,122,44,-40,-19,0,202,122,44,-39,-19,0,202,122,44,-38,-19,0,202,122,44,-37,-19,0,202,122,44,-36,-19,0,202,122,44,-35,-19,0,202,122,44,-34,-19,0,202,122,44,-33,-19,0,202,122,44,-32,-19,0,202,122,44,-31,-19,0,202,122,44,-30,-19,0,202,122,44,-29,-19,0,202,122,44,-28,-19,0,202,122,44,-27,-19,0,202,122,44,-26,-19,0,202,122,44,-25,-19,0,202,122,44,-24,-19,0,202,122,44,-23,-19,0,202,122,44,-22,-19,0,202,122,44,-21,-19,0,202,122,44,-20,-19,0,202,122,44,-19,-19,0,202,122,44,-18,-19,0,202,122,44,-17,-19,0,202,122,44,-16,-19,0,202,122,44,-15,-19,0,202,122,44,-14,-19,0,202,122,44,-13,-19,0,202,122,44,-12,-19,0,202,122,44,-11,-19,0,202,122,44,-10,-19,0,202,122,44,-9,-19,0,202,122,44,-8,-19,0,202,122,44,-7,-19,0,202,122,44,-6,-19,0,202,122,44,-5,-19,0,202,122,44,-4,-19,0,202,122,44,-3,-19,0,202,122,44,-2,-19,0,202,122,44,-1,-19,0,202,122,44,0,-19,0,202,122,44,1,-19,0,202,122,44,2,-19,0,202,122,44,3,-19,0,202,122,44,4,-19,0,202,122,44,5,-19,0,202,122,44,6,-19,0,202,122,44,7,-19,0,202,122,44,8,-19,0,202,122,44,9,-19,0,202,122,44,10,-19,0,202,122,44,11,-19,0,202,122,44,12,-19,0,202,122,44,13,-19,0,202,122,44,14,-19,0,202,122,44,15,-19,0,202,122,44,16,-19,0,202,122,44,17,-19,0,202,122,44,18,-19,0,202,122,44,19,-19,0,202,122,44,20,-19,0,202,122,44,21,-19,0,202,122,44,22,-19,0,202,122,44,23,-19,0,202,122,44,24,-19,0,202,122,44,25,-19,0,202,122,44,26,-19,0,202,122,44,27,-19,0,202,122,44,28,-19,0,202,122,44,29,-19,0,202,122,44,30,-19,0,202,122,44,31,-19,0,202,122,44,32,-19,0,202,122,44,33,-19,0,202,122,44,34,-19,0,202,122,44,35,-19,0,202,122,44,36,-19,0,202,122,44,37,-19,0,202,122,44,38,-19,0,202,122,44,39,-19,0,202,122,44,40,-19,0,202,122,44,41,-19,0,202,122,44,42,-19,0,202,122,44,43,-19,0,202,122,44,44,-19,0,202,122,44,45,-19,0,202,122,44,46,-19,0,202,122,44,47,-19,0,202,122,44,48,-19,0,202,122,44,49,-19,0,202,122,44,50,-19,0,202,122,44,51,-19,0,202,122,44,52,-19,0,202,122,44,53,-19,0,202,122,44,54,-19,0,202,122,44,55,-19,0,202,122,44,56,-19,0,202,122,44,57,-19,0,202,122,44,58,-19,0,202,122,44,59,-19,0,202,122,44,60,-19,0,202,122,44,61,-19,0,202,122,44,62,-19,0,202,122,44,63,-19,0,202,122,44,64,-19,0,202,122,44,65,-19,0,202,122,44,66,-19,0,202,122,44,67,-19,0,202,122,44,68,-19,0,202,122,44,69,-19,0,202,122,44,70,-19,0,202,122,44,71,-19,0,202,122,44,72,-19,0,202,122,44,73,-19,0,202,122,44,74,-19,0,202,122,44,75,-19,0,202,122,44,76,-19,0,202,122,44,77,-19,0,202,122,44,78,-19,0,202,122,44,79,-19,0,202,122,44,80,-19,0,202,122,44,81,-19,0,202,122,44,82,-19,0,202,122,44,83,-19,0,202,122,44,84,-19,0,202,122,44,85,-19,0,202,122,44,-40,-18,0,202,122,44,-39,-18,0,202,122,44,-38,-18,0,202,122,44,-37,-18,0,202,122,44,-36,-18,0,202,122,44,-35,-18,0,202,122,44,-34,-18,0,202,122,44,-33,-18,0,202,122,44,-32,-18,0,202,122,44,-31,-18,0,202,122,44,-30,-18,0,202,122,44,-29,-18,0,202,122,44,-28,-18,0,202,122,44,-27,-18,0,202,122,44,-26,-18,0,202,122,44,-25,-18,0,202,122,44,-24,-18,0,202,122,44,-23,-18,0,202,122,44,-22,-18,0,202,122,44,-21,-18,0,202,122,44,-20,-18,0,202,122,44,-19,-18,0,202,122,44,-18,-18,0,202,122,44,-17,-18,0,202,122,44,-16,-18,0,202,122,44,-15,-18,0,202,122,44,-14,-18,0,202,122,44,-13,-18,0,202,122,44,-12,-18,0,202,122,44,-11,-18,0,202,122,44,-10,-18,0,202,122,44,-9,-18,0,202,122,44,-8,-18,0,202,122,44,-7,-18,0,202,122,44,-6,-18,0,202,122,44,-5,-18,0,202,122,44,-4,-18,0,202,122,44,-3,-18,0,202,122,44,-2,-18,0,202,122,44,-1,-18,0,202,122,44,0,-18,0,202,122,44,1,-18,0,202,122,44,2,-18,0,202,122,44,3,-18,0,202,122,44,4,-18,0,202,122,44,5,-18,0,202,122,44,6,-18,0,202,122,44,7,-18,0,202,122,44,8,-18,0,202,122,44,9,-18,0,202,122,44,10,-18,0,202,122,44,11,-18,0,202,122,44,12,-18,0,202,122,44,13,-18,0,202,122,44,14,-18,0,202,122,44,15,-18,0,202,122,44,16,-18,0,202,122,44,17,-18,0,202,122,44,18,-18,0,202,122,44,19,-18,0,202,122,44,20,-18,0,202,122,44,21,-18,0,202,122,44,22,-18,0,202,122,44,23,-18,0,202,122,44,24,-18,0,202,122,44,25,-18,0,202,122,44,26,-18,0,202,122,44,27,-18,0,202,122,44,28,-18,0,202,122,44,29,-18,0,202,122,44,30,-18,0,202,122,44,31,-18,0,202,122,44,32,-18,0,202,122,44,33,-18,0,202,122,44,34,-18,0,202,122,44,35,-18,0,202,122,44,36,-18,0,202,122,44,37,-18,0,202,122,44,38,-18,0,202,122,44,39,-18,0,202,122,44,40,-18,0,202,122,44,41,-18,0,202,122,44,42,-18,0,202,122,44,43,-18,0,202,122,44,44,-18,0,202,122,44,45,-18,0,202,122,44,46,-18,0,202,122,44,47,-18,0,202,122,44,48,-18,0,202,122,44,49,-18,0,202,122,44,50,-18,0,202,122,44,51,-18,0,202,122,44,52,-18,0,202,122,44,53,-18,0,202,122,44,54,-18,0,202,122,44,55,-18,0,202,122,44,56,-18,0,202,122,44,57,-18,0,202,122,44,58,-18,0,202,122,44,59,-18,0,202,122,44,60,-18,0,202,122,44,61,-18,0,202,122,44,62,-18,0,202,122,44,63,-18,0,202,122,44,64,-18,0,202,122,44,65,-18,0,202,122,44,66,-18,0,202,122,44,67,-18,0,202,122,44,68,-18,0,202,122,44,69,-18,0,202,122,44,70,-18,0,202,122,44,71,-18,0,202,122,44,72,-18,0,202,122,44,73,-18,0,202,122,44,74,-18,0,202,122,44,75,-18,0,202,122,44,76,-18,0,202,122,44,77,-18,0,202,122,44,78,-18,0,202,122,44,79,-18,0,202,122,44,80,-18,0,202,122,44,81,-18,0,202,122,44,82,-18,0,202,122,44,83,-18,0,202,122,44,84,-18,0,202,122,44,85,-18,0,202,122,44,-40,-17,0,202,122,44,-39,-17,0,202,122,44,-38,-17,0,202,122,44,-37,-17,0,202,122,44,-36,-17,0,202,122,44,-35,-17,0,202,122,44,-34,-17,0,202,122,44,-33,-17,0,202,122,44,-32,-17,0,202,122,44,-31,-17,0,202,122,44,-30,-17,0,202,122,44,-29,-17,0,202,122,44,-28,-17,0,202,122,44,-27,-17,0,202,122,44,-26,-17,0,202,122,44,-25,-17,0,202,122,44,-24,-17,0,202,122,44,-23,-17,0,202,122,44,-22,-17,0,202,122,44,-21,-17,0,202,122,44,-20,-17,0,202,122,44,-19,-17,0,202,122,44,-18,-17,0,202,122,44,-17,-17,0,202,122,44,-16,-17,0,202,122,44,-15,-17,0,202,122,44,-14,-17,0,202,122,44,-13,-17,0,202,122,44,-12,-17,0,202,122,44,-11,-17,0,202,122,44,-10,-17,0,202,122,44,-9,-17,0,202,122,44,-8,-17,0,202,122,44,-7,-17,0,202,122,44,-6,-17,0,202,122,44,-5,-17,0,202,122,44,-4,-17,0,202,122,44,-3,-17,0,202,122,44,-2,-17,0,202,122,44,-1,-17,0,202,122,44,0,-17,0,202,122,44,1,-17,0,202,122,44,2,-17,0,202,122,44,3,-17,0,202,122,44,4,-17,0,202,122,44,5,-17,0,202,122,44,6,-17,0,202,122,44,7,-17,0,202,122,44,8,-17,0,202,122,44,9,-17,0,202,122,44,10,-17,0,202,122,44,11,-17,0,202,122,44,12,-17,0,202,122,44,13,-17,0,202,122,44,14,-17,0,202,122,44,15,-17,0,202,122,44,16,-17,0,202,122,44,17,-17,0,202,122,44,18,-17,0,202,122,44,19,-17,0,202,122,44,20,-17,0,202,122,44,21,-17,0,202,122,44,22,-17,0,202,122,44,23,-17,0,202,122,44,24,-17,0,202,122,44,25,-17,0,202,122,44,26,-17,0,202,122,44,27,-17,0,202,122,44,28,-17,0,202,122,44,29,-17,0,202,122,44,30,-17,0,202,122,44,31,-17,0,202,122,44,32,-17,0,202,122,44,33,-17,0,202,122,44,34,-17,0,202,122,44,35,-17,0,202,122,44,36,-17,0,202,122,44,37,-17,0,202,122,44,38,-17,0,202,122,44,39,-17,0,202,122,44,40,-17,0,202,122,44,41,-17,0,202,122,44,42,-17,0,202,122,44,43,-17,0,202,122,44,44,-17,0,202,122,44,45,-17,0,202,122,44,46,-17,0,202,122,44,47,-17,0,202,122,44,48,-17,0,202,122,44,49,-17,0,202,122,44,50,-17,0,202,122,44,51,-17,0,202,122,44,52,-17,0,202,122,44,53,-17,0,202,122,44,54,-17,0,202,122,44,55,-17,0,202,122,44,56,-17,0,202,122,44,57,-17,0,202,122,44,58,-17,0,202,122,44,59,-17,0,202,122,44,60,-17,0,202,122,44,61,-17,0,202,122,44,62,-17,0,202,122,44,63,-17,0,202,122,44,64,-17,0,202,122,44,65,-17,0,202,122,44,66,-17,0,202,122,44,67,-17,0,202,122,44,68,-17,0,202,122,44,69,-17,0,202,122,44,70,-17,0,202,122,44,71,-17,0,202,122,44,72,-17,0,202,122,44,73,-17,0,202,122,44,74,-17,0,202,122,44,75,-17,0,202,122,44,76,-17,0,202,122,44,77,-17,0,202,122,44,78,-17,0,202,122,44,79,-17,0,202,122,44,80,-17,0,202,122,44,81,-17,0,202,122,44,82,-17,0,202,122,44,83,-17,0,202,122,44,84,-17,0,202,122,44,85,-17,0,202,122,44,-40,-16,0,202,122,44,-39,-16,0,202,122,44,-38,-16,0,202,122,44,-37,-16,0,202,122,44,-36,-16,0,202,122,44,-35,-16,0,202,122,44,-34,-16,0,202,122,44,-33,-16,0,202,122,44,-32,-16,0,202,122,44,-31,-16,0,202,122,44,-30,-16,0,202,122,44,-29,-16,0,202,122,44,-28,-16,0,202,122,44,-27,-16,0,202,122,44,-26,-16,0,202,122,44,-25,-16,0,202,122,44,-24,-16,0,202,122,44,-23,-16,0,202,122,44,-22,-16,0,202,122,44,-21,-16,0,202,122,44,-20,-16,0,202,122,44,-19,-16,0,202,122,44,-18,-16,0,202,122,44,-17,-16,0,202,122,44,-16,-16,0,202,122,44,-15,-16,0,202,122,44,-14,-16,0,202,122,44,-13,-16,0,202,122,44,-12,-16,0,202,122,44,-11,-16,0,202,122,44,-10,-16,0,202,122,44,-9,-16,0,202,122,44,-8,-16,0,202,122,44,-7,-16,0,202,122,44,-6,-16,0,202,122,44,-5,-16,0,202,122,44,-4,-16,0,202,122,44,-3,-16,0,202,122,44,-2,-16,0,202,122,44,-1,-16,0,202,122,44,0,-16,0,202,122,44,1,-16,0,202,122,44,2,-16,0,202,122,44,3,-16,0,202,122,44,4,-16,0,202,122,44,5,-16,0,202,122,44,6,-16,0,202,122,44,7,-16,0,202,122,44,8,-16,0,202,122,44,9,-16,0,202,122,44,10,-16,0,202,122,44,11,-16,0,202,122,44,12,-16,0,202,122,44,13,-16,0,202,122,44,14,-16,0,202,122,44,15,-16,0,202,122,44,16,-16,0,202,122,44,17,-16,0,202,122,44,18,-16,0,202,122,44,19,-16,0,202,122,44,20,-16,0,202,122,44,21,-16,0,202,122,44,22,-16,0,202,122,44,23,-16,0,202,122,44,24,-16,0,202,122,44,25,-16,0,202,122,44,26,-16,0,202,122,44,27,-16,0,202,122,44,28,-16,0,202,122,44,29,-16,0,202,122,44,30,-16,0,202,122,44,31,-16,0,202,122,44,32,-16,0,202,122,44,33,-16,0,202,122,44,34,-16,0,202,122,44,35,-16,0,202,122,44,36,-16,0,202,122,44,37,-16,0,202,122,44,38,-16,0,202,122,44,39,-16,0,202,122,44,40,-16,0,202,122,44,41,-16,0,202,122,44,42,-16,0,202,122,44,43,-16,0,202,122,44,44,-16,0,202,122,44,45,-16,0,202,122,44,46,-16,0,202,122,44,47,-16,0,202,122,44,48,-16,0,202,122,44,49,-16,0,202,122,44,50,-16,0,202,122,44,51,-16,0,202,122,44,52,-16,0,202,122,44,53,-16,0,202,122,44,54,-16,0,202,122,44,55,-16,0,202,122,44,56,-16,0,202,122,44,57,-16,0,202,122,44,58,-16,0,202,122,44,59,-16,0,202,122,44,60,-16,0,202,122,44,61,-16,0,202,122,44,62,-16,0,202,122,44,63,-16,0,202,122,44,64,-16,0,202,122,44,65,-16,0,202,122,44,66,-16,0,202,122,44,67,-16,0,202,122,44,68,-16,0,202,122,44,69,-16,0,202,122,44,70,-16,0,202,122,44,71,-16,0,202,122,44,72,-16,0,202,122,44,73,-16,0,202,122,44,74,-16,0,202,122,44,75,-16,0,202,122,44,76,-16,0,202,122,44,77,-16,0,202,122,44,78,-16,0,202,122,44,79,-16,0,202,122,44,80,-16,0,202,122,44,81,-16,0,202,122,44,82,-16,0,202,122,44,83,-16,0,202,122,44,84,-16,0,202,122,44,85,-16,0,202,122,44,-40,-15,0,202,122,44,-39,-15,0,202,122,44,-38,-15,0,202,122,44,-37,-15,0,202,122,44,-36,-15,0,202,122,44,-35,-15,0,202,122,44,-34,-15,0,202,122,44,-33,-15,0,202,122,44,-32,-15,0,202,122,44,-31,-15,0,202,122,44,-30,-15,0,202,122,44,-29,-15,0,202,122,44,-28,-15,0,202,122,44,-27,-15,0,202,122,44,-26,-15,0,202,122,44,-25,-15,0,202,122,44,-24,-15,0,202,122,44,-23,-15,0,202,122,44,-22,-15,0,202,122,44,-21,-15,0,202,122,44,-20,-15,0,202,122,44,-19,-15,0,202,122,44,-18,-15,0,202,122,44,-17,-15,0,202,122,44,-16,-15,0,202,122,44,-15,-15,0,202,122,44,-14,-15,0,202,122,44,-13,-15,0,202,122,44,-12,-15,0,202,122,44,-11,-15,0,202,122,44,-10,-15,0,202,122,44,-9,-15,0,202,122,44,-8,-15,0,202,122,44,-7,-15,0,202,122,44,-6,-15,0,202,122,44,-5,-15,0,202,122,44,-4,-15,0,202,122,44,-3,-15,0,202,122,44,-2,-15,0,202,122,44,-1,-15,0,202,122,44,0,-15,0,202,122,44,1,-15,0,202,122,44,2,-15,0,202,122,44,3,-15,0,202,122,44,4,-15,0,202,122,44,5,-15,0,202,122,44,6,-15,0,202,122,44,7,-15,0,202,122,44,8,-15,0,202,122,44,9,-15,0,202,122,44,10,-15,0,202,122,44,11,-15,0,202,122,44,12,-15,0,202,122,44,13,-15,0,202,122,44,14,-15,0,202,122,44,15,-15,0,202,122,44,16,-15,0,202,122,44,17,-15,0,202,122,44,18,-15,0,202,122,44,19,-15,0,202,122,44,20,-15,0,202,122,44,21,-15,0,202,122,44,22,-15,0,202,122,44,23,-15,0,202,122,44,24,-15,0,202,122,44,25,-15,0,202,122,44,26,-15,0,202,122,44,27,-15,0,202,122,44,28,-15,0,202,122,44,29,-15,0,202,122,44,30,-15,0,202,122,44,31,-15,0,202,122,44,32,-15,0,202,122,44,33,-15,0,202,122,44,34,-15,0,202,122,44,35,-15,0,202,122,44,36,-15,0,202,122,44,37,-15,0,202,122,44,38,-15,0,202,122,44,39,-15,0,202,122,44,40,-15,0,202,122,44,41,-15,0,202,122,44,42,-15,0,202,122,44,43,-15,0,202,122,44,44,-15,0,202,122,44,45,-15,0,202,122,44,46,-15,0,202,122,44,47,-15,0,202,122,44,48,-15,0,202,122,44,49,-15,0,202,122,44,50,-15,0,202,122,44,51,-15,0,202,122,44,52,-15,0,202,122,44,53,-15,0,202,122,44,54,-15,0,202,122,44,55,-15,0,202,122,44,56,-15,0,202,122,44,57,-15,0,202,122,44,58,-15,0,202,122,44,59,-15,0,202,122,44,60,-15,0,202,122,44,61,-15,0,202,122,44,62,-15,0,202,122,44,63,-15,0,202,122,44,64,-15,0,202,122,44,65,-15,0,202,122,44,66,-15,0,202,122,44,67,-15,0,202,122,44,68,-15,0,202,122,44,69,-15,0,202,122,44,70,-15,0,202,122,44,71,-15,0,202,122,44,72,-15,0,202,122,44,73,-15,0,202,122,44,74,-15,0,202,122,44,75,-15,0,202,122,44,76,-15,0,202,122,44,77,-15,0,202,122,44,78,-15,0,202,122,44,79,-15,0,202,122,44,80,-15,0,202,122,44,81,-15,0,202,122,44,82,-15,0,202,122,44,83,-15,0,202,122,44,84,-15,0,202,122,44,85,-15,0,202,122,44,-40,-14,0,202,122,44,-39,-14,0,202,122,44,-38,-14,0,202,122,44,-37,-14,0,202,122,44,-36,-14,0,202,122,44,-35,-14,0,202,122,44,-34,-14,0,202,122,44,-33,-14,0,202,122,44,-32,-14,0,202,122,44,-31,-14,0,202,122,44,-30,-14,0,202,122,44,-29,-14,0,202,122,44,-28,-14,0,202,122,44,-27,-14,0,202,122,44,-26,-14,0,202,122,44,-25,-14,0,202,122,44,-24,-14,0,202,122,44,-23,-14,0,202,122,44,-22,-14,0,202,122,44,-21,-14,0,202,122,44,-20,-14,0,202,122,44,-19,-14,0,202,122,44,-18,-14,0,202,122,44,-17,-14,0,202,122,44,-16,-14,0,202,122,44,-15,-14,0,202,122,44,-14,-14,0,202,122,44,-13,-14,0,202,122,44,-12,-14,0,202,122,44,-11,-14,0,202,122,44,-10,-14,0,202,122,44,-9,-14,0,202,122,44,-8,-14,0,202,122,44,-7,-14,0,202,122,44,-6,-14,0,202,122,44,-5,-14,0,202,122,44,-4,-14,0,202,122,44,-3,-14,0,202,122,44,-2,-14,0,202,122,44,-1,-14,0,202,122,44,0,-14,0,202,122,44,1,-14,0,202,122,44,2,-14,0,202,122,44,3,-14,0,202,122,44,4,-14,0,202,122,44,5,-14,0,202,122,44,6,-14,0,202,122,44,7,-14,0,202,122,44,8,-14,0,202,122,44,9,-14,0,202,122,44,10,-14,0,202,122,44,11,-14,0,202,122,44,12,-14,0,202,122,44,13,-14,0,202,122,44,14,-14,0,202,122,44,15,-14,0,202,122,44,16,-14,0,202,122,44,17,-14,0,202,122,44,18,-14,0,202,122,44,19,-14,0,202,122,44,20,-14,0,202,122,44,21,-14,0,202,122,44,22,-14,0,202,122,44,23,-14,0,202,122,44,24,-14,0,202,122,44,25,-14,0,202,122,44,26,-14,0,202,122,44,27,-14,0,202,122,44,28,-14,0,202,122,44,29,-14,0,202,122,44,30,-14,0,202,122,44,31,-14,0,202,122,44,32,-14,0,202,122,44,33,-14,0,202,122,44,34,-14,0,202,122,44,35,-14,0,202,122,44,36,-14,0,202,122,44,37,-14,0,202,122,44,38,-14,0,202,122,44,39,-14,0,202,122,44,40,-14,0,202,122,44,41,-14,0,202,122,44,42,-14,0,202,122,44,43,-14,0,202,122,44,44,-14,0,202,122,44,45,-14,0,202,122,44,46,-14,0,202,122,44,47,-14,0,202,122,44,48,-14,0,202,122,44,49,-14,0,202,122,44,50,-14,0,202,122,44,51,-14,0,202,122,44,52,-14,0,202,122,44,53,-14,0,202,122,44,54,-14,0,202,122,44,55,-14,0,202,122,44,56,-14,0,202,122,44,57,-14,0,202,122,44,58,-14,0,202,122,44,59,-14,0,202,122,44,60,-14,0,202,122,44,61,-14,0,202,122,44,62,-14,0,202,122,44,63,-14,0,202,122,44,64,-14,0,202,122,44,65,-14,0,202,122,44,66,-14,0,202,122,44,67,-14,0,202,122,44,68,-14,0,202,122,44,69,-14,0,202,122,44,70,-14,0,202,122,44,71,-14,0,202,122,44,72,-14,0,202,122,44,73,-14,0,202,122,44,74,-14,0,202,122,44,75,-14,0,202,122,44,76,-14,0,202,122,44,77,-14,0,202,122,44,78,-14,0,202,122,44,79,-14,0,202,122,44,80,-14,0,202,122,44,81,-14,0,202,122,44,82,-14,0,202,122,44,83,-14,0,202,122,44,84,-14,0,202,122,44,85,-14,0,202,122,44,-40,-13,0,202,122,44,-39,-13,0,202,122,44,-38,-13,0,202,122,44,-37,-13,0,202,122,44,-36,-13,0,202,122,44,-35,-13,0,202,122,44,-34,-13,0,202,122,44,-33,-13,0,202,122,44,-32,-13,0,202,122,44,-31,-13,0,202,122,44,-30,-13,0,202,122,44,-29,-13,0,202,122,44,-28,-13,0,202,122,44,-27,-13,0,202,122,44,-26,-13,0,202,122,44,-25,-13,0,202,122,44,-24,-13,0,202,122,44,-23,-13,0,202,122,44,-22,-13,0,202,122,44,-21,-13,0,202,122,44,-20,-13,0,202,122,44,-19,-13,0,202,122,44,-18,-13,0,202,122,44,-17,-13,0,202,122,44,-16,-13,0,202,122,44,-15,-13,0,202,122,44,-14,-13,0,202,122,44,-13,-13,0,202,122,44,-12,-13,0,202,122,44,-11,-13,0,202,122,44,-10,-13,0,202,122,44,-9,-13,0,202,122,44,-8,-13,0,202,122,44,-7,-13,0,202,122,44,-6,-13,0,202,122,44,-5,-13,0,202,122,44,-4,-13,0,202,122,44,-3,-13,0,202,122,44,-2,-13,0,202,122,44,-1,-13,0,202,122,44,0,-13,0,202,122,44,1,-13,0,202,122,44,2,-13,0,202,122,44,3,-13,0,202,122,44,4,-13,0,202,122,44,5,-13,0,202,122,44,6,-13,0,202,122,44,7,-13,0,202,122,44,8,-13,0,202,122,44,9,-13,0,202,122,44,10,-13,0,202,122,44,11,-13,0,202,122,44,12,-13,0,202,122,44,13,-13,0,202,122,44,14,-13,0,202,122,44,15,-13,0,202,122,44,16,-13,0,202,122,44,17,-13,0,202,122,44,18,-13,0,202,122,44,19,-13,0,202,122,44,20,-13,0,202,122,44,21,-13,0,202,122,44,22,-13,0,202,122,44,23,-13,0,202,122,44,24,-13,0,202,122,44,25,-13,0,202,122,44,26,-13,0,202,122,44,27,-13,0,202,122,44,28,-13,0,202,122,44,29,-13,0,202,122,44,30,-13,0,202,122,44,31,-13,0,202,122,44,32,-13,0,202,122,44,33,-13,0,202,122,44,34,-13,0,202,122,44,35,-13,0,202,122,44,36,-13,0,202,122,44,37,-13,0,202,122,44,38,-13,0,202,122,44,39,-13,0,202,122,44,40,-13,0,202,122,44,41,-13,0,202,122,44,42,-13,0,202,122,44,43,-13,0,202,122,44,44,-13,0,202,122,44,45,-13,0,202,122,44,46,-13,0,202,122,44,47,-13,0,202,122,44,48,-13,0,202,122,44,49,-13,0,202,122,44,50,-13,0,202,122,44,51,-13,0,202,122,44,52,-13,0,202,122,44,53,-13,0,202,122,44,54,-13,0,202,122,44,55,-13,0,202,122,44,56,-13,0,202,122,44,57,-13,0,202,122,44,58,-13,0,202,122,44,59,-13,0,202,122,44,60,-13,0,202,122,44,61,-13,0,202,122,44,62,-13,0,202,122,44,63,-13,0,202,122,44,64,-13,0,202,122,44,65,-13,0,202,122,44,66,-13,0,202,122,44,67,-13,0,202,122,44,68,-13,0,202,122,44,69,-13,0,202,122,44,70,-13,0,202,122,44,71,-13,0,202,122,44,72,-13,0,202,122,44,73,-13,0,202,122,44,74,-13,0,202,122,44,75,-13,0,202,122,44,76,-13,0,202,122,44,77,-13,0,202,122,44,78,-13,0,202,122,44,79,-13,0,202,122,44,80,-13,0,202,122,44,81,-13,0,202,122,44,82,-13,0,202,122,44,83,-13,0,202,122,44,84,-13,0,202,122,44,85,-13,0,202,122,44,-40,-12,0,202,122,44,-39,-12,0,202,122,44,-38,-12,0,202,122,44,-37,-12,0,202,122,44,-36,-12,0,202,122,44,-35,-12,0,202,122,44,-34,-12,0,202,122,44,-33,-12,0,202,122,44,-32,-12,0,202,122,44,-31,-12,0,202,122,44,-30,-12,0,202,122,44,-29,-12,0,202,122,44,-28,-12,0,202,122,44,-27,-12,0,202,122,44,-26,-12,0,202,122,44,-25,-12,0,202,122,44,-24,-12,0,202,122,44,-23,-12,0,202,122,44,-22,-12,0,202,122,44,-21,-12,0,202,122,44,-20,-12,0,202,122,44,-19,-12,0,202,122,44,-18,-12,0,202,122,44,-17,-12,0,202,122,44,-16,-12,0,202,122,44,-15,-12,0,202,122,44,-14,-12,0,202,122,44,-13,-12,0,202,122,44,-12,-12,0,202,122,44,-11,-12,0,202,122,44,-10,-12,0,202,122,44,-9,-12,0,202,122,44,-8,-12,0,202,122,44,-7,-12,0,202,122,44,-6,-12,0,202,122,44,-5,-12,0,202,122,44,-4,-12,0,202,122,44,-3,-12,0,202,122,44,-2,-12,0,202,122,44,-1,-12,0,202,122,44,0,-12,0,202,122,44,1,-12,0,202,122,44,2,-12,0,202,122,44,3,-12,0,202,122,44,4,-12,0,202,122,44,5,-12,0,202,122,44,6,-12,0,202,122,44,7,-12,0,202,122,44,8,-12,0,202,122,44,9,-12,0,202,122,44,10,-12,0,202,122,44,11,-12,0,202,122,44,12,-12,0,202,122,44,13,-12,0,202,122,44,14,-12,0,202,122,44,15,-12,0,202,122,44,16,-12,0,202,122,44,17,-12,0,202,122,44,18,-12,0,202,122,44,19,-12,0,202,122,44,20,-12,0,202,122,44,21,-12,0,202,122,44,22,-12,0,202,122,44,23,-12,0,202,122,44,24,-12,0,202,122,44,25,-12,0,202,122,44,26,-12,0,202,122,44,27,-12,0,202,122,44,28,-12,0,202,122,44,29,-12,0,202,122,44,30,-12,0,202,122,44,31,-12,0,202,122,44,32,-12,0,202,122,44,33,-12,0,202,122,44,34,-12,0,202,122,44,35,-12,0,202,122,44,36,-12,0,202,122,44,37,-12,0,202,122,44,38,-12,0,202,122,44,39,-12,0,202,122,44,40,-12,0,202,122,44,41,-12,0,202,122,44,42,-12,0,202,122,44,43,-12,0,202,122,44,44,-12,0,202,122,44,45,-12,0,202,122,44,46,-12,0,202,122,44,47,-12,0,202,122,44,48,-12,0,202,122,44,49,-12,0,202,122,44,50,-12,0,202,122,44,51,-12,0,202,122,44,52,-12,0,202,122,44,53,-12,0,202,122,44,54,-12,0,202,122,44,55,-12,0,202,122,44,56,-12,0,202,122,44,57,-12,0,202,122,44,58,-12,0,202,122,44,59,-12,0,202,122,44,60,-12,0,202,122,44,61,-12,0,202,122,44,62,-12,0,202,122,44,63,-12,0,202,122,44,64,-12,0,202,122,44,65,-12,0,202,122,44,66,-12,0,202,122,44,67,-12,0,202,122,44,68,-12,0,202,122,44,69,-12,0,202,122,44,70,-12,0,202,122,44,71,-12,0,202,122,44,72,-12,0,202,122,44,73,-12,0,202,122,44,74,-12,0,202,122,44,75,-12,0,202,122,44,76,-12,0,202,122,44,77,-12,0,202,122,44,78,-12,0,202,122,44,79,-12,0,202,122,44,80,-12,0,202,122,44,81,-12,0,202,122,44,82,-12,0,202,122,44,83,-12,0,202,122,44,84,-12,0,202,122,44,85,-12,0,202,122,44,-40,-11,0,202,122,44,-39,-11,0,202,122,44,-38,-11,0,202,122,44,-37,-11,0,202,122,44,-36,-11,0,202,122,44,-35,-11,0,202,122,44,-34,-11,0,202,122,44,-33,-11,0,202,122,44,-32,-11,0,202,122,44,-31,-11,0,202,122,44,-30,-11,0,202,122,44,-29,-11,0,202,122,44,-28,-11,0,202,122,44,-27,-11,0,202,122,44,-26,-11,0,202,122,44,-25,-11,0,202,122,44,-24,-11,0,202,122,44,-23,-11,0,202,122,44,-22,-11,0,202,122,44,-21,-11,0,202,122,44,-20,-11,0,202,122,44,-19,-11,0,202,122,44,-18,-11,0,202,122,44,-17,-11,0,202,122,44,-16,-11,0,202,122,44,-15,-11,0,202,122,44,-14,-11,0,202,122,44,-13,-11,0,202,122,44,-12,-11,0,202,122,44,-11,-11,0,202,122,44,-10,-11,0,202,122,44,-9,-11,0,202,122,44,-8,-11,0,202,122,44,-7,-11,0,202,122,44,-6,-11,0,202,122,44,-5,-11,0,202,122,44,-4,-11,0,202,122,44,-3,-11,0,202,122,44,-2,-11,0,202,122,44,-1,-11,0,202,122,44,0,-11,0,202,122,44,1,-11,0,202,122,44,2,-11,0,202,122,44,3,-11,0,202,122,44,4,-11,0,202,122,44,5,-11,0,202,122,44,6,-11,0,202,122,44,7,-11,0,202,122,44,8,-11,0,202,122,44,9,-11,0,202,122,44,10,-11,0,202,122,44,11,-11,0,202,122,44,12,-11,0,202,122,44,13,-11,0,202,122,44,14,-11,0,202,122,44,15,-11,0,202,122,44,16,-11,0,202,122,44,17,-11,0,202,122,44,18,-11,0,202,122,44,19,-11,0,202,122,44,20,-11,0,202,122,44,21,-11,0,202,122,44,22,-11,0,202,122,44,23,-11,0,202,122,44,24,-11,0,202,122,44,25,-11,0,202,122,44,26,-11,0,202,122,44,27,-11,0,202,122,44,28,-11,0,202,122,44,29,-11,0,202,122,44,30,-11,0,202,122,44,31,-11,0,202,122,44,32,-11,0,202,122,44,33,-11,0,202,122,44,34,-11,0,202,122,44,35,-11,0,202,122,44,36,-11,0,202,122,44,37,-11,0,202,122,44,38,-11,0,202,122,44,39,-11,0,202,122,44,40,-11,0,202,122,44,41,-11,0,202,122,44,42,-11,0,202,122,44,43,-11,0,202,122,44,44,-11,0,202,122,44,45,-11,0,202,122,44,46,-11,0,202,122,44,47,-11,0,202,122,44,48,-11,0,202,122,44,49,-11,0,202,122,44,50,-11,0,202,122,44,51,-11,0,202,122,44,52,-11,0,202,122,44,53,-11,0,202,122,44,54,-11,0,202,122,44,55,-11,0,202,122,44,56,-11,0,202,122,44,57,-11,0,202,122,44,58,-11,0,202,122,44,59,-11,0,202,122,44,60,-11,0,202,122,44,61,-11,0,202,122,44,62,-11,0,202,122,44,63,-11,0,202,122,44,64,-11,0,202,122,44,65,-11,0,202,122,44,66,-11,0,202,122,44,67,-11,0,202,122,44,68,-11,0,202,122,44,69,-11,0,202,122,44,70,-11,0,202,122,44,71,-11,0,202,122,44,72,-11,0,202,122,44,73,-11,0,202,122,44,74,-11,0,202,122,44,75,-11,0,202,122,44,76,-11,0,202,122,44,77,-11,0,202,122,44,78,-11,0,202,122,44,79,-11,0,202,122,44,80,-11,0,202,122,44,81,-11,0,202,122,44,82,-11,0,202,122,44,83,-11,0,202,122,44,84,-11,0,202,122,44,85,-11,0,202,122,44,-40,-10,0,202,122,44,-39,-10,0,202,122,44,-38,-10,0,202,122,44,-37,-10,0,202,122,44,-36,-10,0,202,122,44,-35,-10,0,202,122,44,-34,-10,0,202,122,44,-33,-10,0,202,122,44,-32,-10,0,202,122,44,-31,-10,0,202,122,44,-30,-10,0,202,122,44,-29,-10,0,202,122,44,-28,-10,0,202,122,44,-27,-10,0,202,122,44,-26,-10,0,202,122,44,-25,-10,0,202,122,44,-24,-10,0,202,122,44,-23,-10,0,202,122,44,-22,-10,0,202,122,44,-21,-10,0,202,122,44,-20,-10,0,202,122,44,-19,-10,0,202,122,44,-18,-10,0,202,122,44,-17,-10,0,202,122,44,-16,-10,0,202,122,44,-15,-10,0,202,122,44,-14,-10,0,202,122,44,-13,-10,0,202,122,44,-12,-10,0,202,122,44,-11,-10,0,202,122,44,-10,-10,0,202,122,44,-9,-10,0,202,122,44,-8,-10,0,202,122,44,-7,-10,0,202,122,44,-6,-10,0,202,122,44,-5,-10,0,202,122,44,-4,-10,0,202,122,44,-3,-10,0,202,122,44,-2,-10,0,202,122,44,-1,-10,0,202,122,44,0,-10,0,202,122,44,1,-10,0,202,122,44,2,-10,0,202,122,44,3,-10,0,202,122,44,4,-10,0,202,122,44,5,-10,0,202,122,44,6,-10,0,202,122,44,7,-10,0,202,122,44,8,-10,0,202,122,44,9,-10,0,202,122,44,10,-10,0,202,122,44,11,-10,0,202,122,44,12,-10,0,202,122,44,13,-10,0,202,122,44,14,-10,0,202,122,44,15,-10,0,202,122,44,16,-10,0,202,122,44,17,-10,0,202,122,44,18,-10,0,202,122,44,19,-10,0,202,122,44,20,-10,0,202,122,44,21,-10,0,202,122,44,22,-10,0,202,122,44,23,-10,0,202,122,44,24,-10,0,202,122,44,25,-10,0,202,122,44,26,-10,0,202,122,44,27,-10,0,202,122,44,28,-10,0,202,122,44,29,-10,0,202,122,44,30,-10,0,202,122,44,31,-10,0,202,122,44,32,-10,0,202,122,44,33,-10,0,202,122,44,34,-10,0,202,122,44,35,-10,0,202,122,44,36,-10,0,202,122,44,37,-10,0,202,122,44,38,-10,0,202,122,44,39,-10,0,202,122,44,40,-10,0,202,122,44,41,-10,0,202,122,44,42,-10,0,202,122,44,43,-10,0,202,122,44,44,-10,0,202,122,44,45,-10,0,202,122,44,46,-10,0,202,122,44,47,-10,0,202,122,44,48,-10,0,202,122,44,49,-10,0,202,122,44,50,-10,0,202,122,44,51,-10,0,202,122,44,52,-10,0,202,122,44,53,-10,0,202,122,44,54,-10,0,202,122,44,55,-10,0,202,122,44,56,-10,0,202,122,44,57,-10,0,202,122,44,58,-10,0,202,122,44,59,-10,0,202,122,44,60,-10,0,202,122,44,61,-10,0,202,122,44,62,-10,0,202,122,44,63,-10,0,202,122,44,64,-10,0,202,122,44,65,-10,0,202,122,44,66,-10,0,202,122,44,67,-10,0,202,122,44,68,-10,0,202,122,44,69,-10,0,202,122,44,70,-10,0,202,122,44,71,-10,0,202,122,44,72,-10,0,202,122,44,73,-10,0,202,122,44,74,-10,0,202,122,44,75,-10,0,202,122,44,76,-10,0,202,122,44,77,-10,0,202,122,44,78,-10,0,202,122,44,79,-10,0,202,122,44,80,-10,0,202,122,44,81,-10,0,202,122,44,82,-10,0,202,122,44,83,-10,0,202,122,44,84,-10,0,202,122,44,85,-10,0,202,122,44,-40,-9,0,202,122,44,-39,-9,0,202,122,44,-38,-9,0,202,122,44,-37,-9,0,202,122,44,-36,-9,0,202,122,44,-35,-9,0,202,122,44,-34,-9,0,202,122,44,-33,-9,0,202,122,44,-32,-9,0,202,122,44,-31,-9,0,202,122,44,-30,-9,0,202,122,44,-29,-9,0,202,122,44,-28,-9,0,202,122,44,-27,-9,0,202,122,44,-26,-9,0,202,122,44,-25,-9,0,202,122,44,-24,-9,0,202,122,44,-23,-9,0,202,122,44,-22,-9,0,202,122,44,-21,-9,0,202,122,44,-20,-9,0,202,122,44,-19,-9,0,202,122,44,-18,-9,0,202,122,44,-17,-9,0,202,122,44,-16,-9,0,202,122,44,-15,-9,0,202,122,44,-14,-9,0,202,122,44,-13,-9,0,202,122,44,-12,-9,0,202,122,44,-11,-9,0,202,122,44,-10,-9,0,202,122,44,-9,-9,0,202,122,44,-8,-9,0,202,122,44,-7,-9,0,202,122,44,-6,-9,0,202,122,44,-5,-9,0,202,122,44,-4,-9,0,202,122,44,-3,-9,0,202,122,44,-2,-9,0,202,122,44,-1,-9,0,202,122,44,0,-9,0,202,122,44,1,-9,0,202,122,44,2,-9,0,202,122,44,3,-9,0,202,122,44,4,-9,0,202,122,44,5,-9,0,202,122,44,6,-9,0,202,122,44,7,-9,0,202,122,44,8,-9,0,202,122,44,9,-9,0,202,122,44,10,-9,0,202,122,44,11,-9,0,202,122,44,12,-9,0,202,122,44,13,-9,0,202,122,44,14,-9,0,202,122,44,15,-9,0,202,122,44,16,-9,0,202,122,44,17,-9,0,202,122,44,18,-9,0,202,122,44,19,-9,0,202,122,44,20,-9,0,202,122,44,21,-9,0,202,122,44,22,-9,0,202,122,44,23,-9,0,202,122,44,24,-9,0,202,122,44,25,-9,0,202,122,44,26,-9,0,202,122,44,27,-9,0,202,122,44,28,-9,0,202,122,44,29,-9,0,202,122,44,30,-9,0,202,122,44,31,-9,0,202,122,44,32,-9,0,202,122,44,33,-9,0,202,122,44,34,-9,0,202,122,44,35,-9,0,202,122,44,36,-9,0,202,122,44,37,-9,0,202,122,44,38,-9,0,202,122,44,39,-9,0,202,122,44,40,-9,0,202,122,44,41,-9,0,202,122,44,42,-9,0,202,122,44,43,-9,0,202,122,44,44,-9,0,202,122,44,45,-9,0,202,122,44,46,-9,0,202,122,44,47,-9,0,202,122,44,48,-9,0,202,122,44,49,-9,0,202,122,44,50,-9,0,202,122,44,51,-9,0,202,122,44,52,-9,0,202,122,44,53,-9,0,202,122,44,54,-9,0,202,122,44,55,-9,0,202,122,44,56,-9,0,202,122,44,57,-9,0,202,122,44,58,-9,0,202,122,44,59,-9,0,202,122,44,60,-9,0,202,122,44,61,-9,0,202,122,44,62,-9,0,202,122,44,63,-9,0,202,122,44,64,-9,0,202,122,44,65,-9,0,202,122,44,66,-9,0,202,122,44,67,-9,0,202,122,44,68,-9,0,202,122,44,69,-9,0,202,122,44,70,-9,0,202,122,44,71,-9,0,202,122,44,72,-9,0,202,122,44,73,-9,0,202,122,44,74,-9,0,202,122,44,75,-9,0,202,122,44,76,-9,0,202,122,44,77,-9,0,202,122,44,78,-9,0,202,122,44,79,-9,0,202,122,44,80,-9,0,202,122,44,81,-9,0,202,122,44,82,-9,0,202,122,44,83,-9,0,202,122,44,84,-9,0,202,122,44,85,-9,0,202,122,44,-40,-8,0,202,122,44,-39,-8,0,202,122,44,-38,-8,0,202,122,44,-37,-8,0,202,122,44,-36,-8,0,202,122,44,-35,-8,0,202,122,44,-34,-8,0,202,122,44,-33,-8,0,202,122,44,-32,-8,0,202,122,44,-31,-8,0,202,122,44,-30,-8,0,202,122,44,-29,-8,0,202,122,44,-28,-8,0,202,122,44,-27,-8,0,202,122,44,-26,-8,0,202,122,44,-25,-8,0,202,122,44,-24,-8,0,202,122,44,-23,-8,0,202,122,44,-22,-8,0,202,122,44,-21,-8,0,202,122,44,-20,-8,0,202,122,44,-19,-8,0,202,122,44,-18,-8,0,202,122,44,-17,-8,0,202,122,44,-16,-8,0,202,122,44,-15,-8,0,202,122,44,-14,-8,0,202,122,44,-13,-8,0,202,122,44,-12,-8,0,202,122,44,-11,-8,0,202,122,44,-10,-8,0,202,122,44,-9,-8,0,202,122,44,-8,-8,0,202,122,44,-7,-8,0,202,122,44,-6,-8,0,202,122,44,-5,-8,0,202,122,44,-4,-8,0,202,122,44,-3,-8,0,202,122,44,-2,-8,0,202,122,44,-1,-8,0,202,122,44,0,-8,0,202,122,44,1,-8,0,202,122,44,2,-8,0,202,122,44,3,-8,0,202,122,44,4,-8,0,202,122,44,5,-8,0,202,122,44,6,-8,0,202,122,44,7,-8,0,202,122,44,8,-8,0,202,122,44,9,-8,0,202,122,44,10,-8,0,202,122,44,11,-8,0,202,122,44,12,-8,0,202,122,44,13,-8,0,202,122,44,14,-8,0,202,122,44,15,-8,0,202,122,44,16,-8,0,202,122,44,17,-8,0,202,122,44,18,-8,0,202,122,44,19,-8,0,202,122,44,20,-8,0,202,122,44,21,-8,0,202,122,44,22,-8,0,202,122,44,23,-8,0,202,122,44,24,-8,0,202,122,44,25,-8,0,202,122,44,26,-8,0,202,122,44,27,-8,0,202,122,44,28,-8,0,202,122,44,29,-8,0,202,122,44,30,-8,0,202,122,44,31,-8,0,202,122,44,32,-8,0,202,122,44,33,-8,0,202,122,44,34,-8,0,202,122,44,35,-8,0,202,122,44,36,-8,0,202,122,44,37,-8,0,202,122,44,38,-8,0,202,122,44,39,-8,0,202,122,44,40,-8,0,202,122,44,41,-8,0,202,122,44,42,-8,0,202,122,44,43,-8,0,202,122,44,44,-8,0,202,122,44,45,-8,0,202,122,44,46,-8,0,202,122,44,47,-8,0,202,122,44,48,-8,0,202,122,44,49,-8,0,202,122,44,50,-8,0,202,122,44,51,-8,0,202,122,44,52,-8,0,202,122,44,53,-8,0,202,122,44,54,-8,0,202,122,44,55,-8,0,202,122,44,56,-8,0,202,122,44,57,-8,0,202,122,44,58,-8,0,202,122,44,59,-8,0,202,122,44,60,-8,0,202,122,44,61,-8,0,202,122,44,62,-8,0,202,122,44,63,-8,0,202,122,44,64,-8,0,202,122,44,65,-8,0,202,122,44,66,-8,0,202,122,44,67,-8,0,202,122,44,68,-8,0,202,122,44,69,-8,0,202,122,44,70,-8,0,202,122,44,71,-8,0,202,122,44,72,-8,0,202,122,44,73,-8,0,202,122,44,74,-8,0,202,122,44,75,-8,0,202,122,44,76,-8,0,202,122,44,77,-8,0,202,122,44,78,-8,0,202,122,44,79,-8,0,202,122,44,80,-8,0,202,122,44,81,-8,0,202,122,44,82,-8,0,202,122,44,83,-8,0,202,122,44,84,-8,0,202,122,44,85,-8,0,202,122,44,-40,-7,0,202,122,44,-39,-7,0,202,122,44,-38,-7,0,202,122,44,-37,-7,0,202,122,44,-36,-7,0,202,122,44,-35,-7,0,202,122,44,-34,-7,0,202,122,44,-33,-7,0,202,122,44,-32,-7,0,202,122,44,-31,-7,0,202,122,44,-30,-7,0,202,122,44,-29,-7,0,202,122,44,-28,-7,0,202,122,44,-27,-7,0,202,122,44,-26,-7,0,202,122,44,-25,-7,0,202,122,44,-24,-7,0,202,122,44,-23,-7,0,202,122,44,-22,-7,0,202,122,44,-21,-7,0,202,122,44,-20,-7,0,202,122,44,-19,-7,0,202,122,44,-18,-7,0,202,122,44,-17,-7,0,202,122,44,-16,-7,0,202,122,44,-15,-7,0,202,122,44,-14,-7,0,202,122,44,-13,-7,0,202,122,44,-12,-7,0,202,122,44,-11,-7,0,202,122,44,-10,-7,0,202,122,44,-9,-7,0,202,122,44,-8,-7,0,202,122,44,-7,-7,0,202,122,44,-6,-7,0,202,122,44,-5,-7,0,202,122,44,-4,-7,0,202,122,44,-3,-7,0,202,122,44,-2,-7,0,202,122,44,-1,-7,0,202,122,44,0,-7,0,202,122,44,1,-7,0,202,122,44,2,-7,0,202,122,44,3,-7,0,202,122,44,4,-7,0,202,122,44,5,-7,0,202,122,44,6,-7,0,202,122,44,7,-7,0,202,122,44,8,-7,0,202,122,44,9,-7,0,202,122,44,10,-7,0,202,122,44,11,-7,0,202,122,44,12,-7,0,202,122,44,13,-7,0,202,122,44,14,-7,0,202,122,44,15,-7,0,202,122,44,16,-7,0,202,122,44,17,-7,0,202,122,44,18,-7,0,202,122,44,19,-7,0,202,122,44,20,-7,0,202,122,44,21,-7,0,202,122,44,22,-7,0,202,122,44,23,-7,0,202,122,44,24,-7,0,202,122,44,25,-7,0,202,122,44,26,-7,0,202,122,44,27,-7,0,202,122,44,28,-7,0,202,122,44,29,-7,0,202,122,44,30,-7,0,202,122,44,31,-7,0,202,122,44,32,-7,0,202,122,44,33,-7,0,202,122,44,34,-7,0,202,122,44,35,-7,0,202,122,44,36,-7,0,202,122,44,37,-7,0,202,122,44,38,-7,0,202,122,44,39,-7,0,202,122,44,40,-7,0,202,122,44,41,-7,0,202,122,44,42,-7,0,202,122,44,43,-7,0,202,122,44,44,-7,0,202,122,44,45,-7,0,202,122,44,46,-7,0,202,122,44,47,-7,0,202,122,44,48,-7,0,202,122,44,49,-7,0,202,122,44,50,-7,0,202,122,44,51,-7,0,202,122,44,52,-7,0,202,122,44,53,-7,0,202,122,44,54,-7,0,202,122,44,55,-7,0,202,122,44,56,-7,0,202,122,44,57,-7,0,202,122,44,58,-7,0,202,122,44,59,-7,0,202,122,44,60,-7,0,202,122,44,61,-7,0,202,122,44,62,-7,0,202,122,44,63,-7,0,202,122,44,64,-7,0,202,122,44,65,-7,0,202,122,44,66,-7,0,202,122,44,67,-7,0,202,122,44,68,-7,0,202,122,44,69,-7,0,202,122,44,70,-7,0,202,122,44,71,-7,0,202,122,44,72,-7,0,202,122,44,73,-7,0,202,122,44,74,-7,0,202,122,44,75,-7,0,202,122,44,76,-7,0,202,122,44,77,-7,0,202,122,44,78,-7,0,202,122,44,79,-7,0,202,122,44,80,-7,0,202,122,44,81,-7,0,202,122,44,82,-7,0,202,122,44,83,-7,0,202,122,44,84,-7,0,202,122,44,85,-7,0,202,122,44,-40,-6,0,202,122,44,-39,-6,0,202,122,44,-38,-6,0,202,122,44,-37,-6,0,202,122,44,-36,-6,0,202,122,44,-35,-6,0,202,122,44,-34,-6,0,202,122,44,-33,-6,0,202,122,44,-32,-6,0,202,122,44,-31,-6,0,202,122,44,-30,-6,0,202,122,44,-29,-6,0,202,122,44,-28,-6,0,202,122,44,-27,-6,0,202,122,44,-26,-6,0,202,122,44,-25,-6,0,202,122,44,-24,-6,0,202,122,44,-23,-6,0,202,122,44,-22,-6,0,202,122,44,-21,-6,0,202,122,44,-20,-6,0,202,122,44,-19,-6,0,202,122,44,-18,-6,0,202,122,44,-17,-6,0,202,122,44,-16,-6,0,202,122,44,-15,-6,0,202,122,44,-14,-6,0,202,122,44,-13,-6,0,202,122,44,-12,-6,0,202,122,44,-11,-6,0,202,122,44,-10,-6,0,202,122,44,-9,-6,0,202,122,44,-8,-6,0,202,122,44,-7,-6,0,202,122,44,-6,-6,0,202,122,44,-5,-6,0,202,122,44,-4,-6,0,202,122,44,-3,-6,0,202,122,44,-2,-6,0,202,122,44,-1,-6,0,202,122,44,0,-6,0,202,122,44,1,-6,0,202,122,44,2,-6,0,202,122,44,3,-6,0,202,122,44,4,-6,0,202,122,44,5,-6,0,202,122,44,6,-6,0,202,122,44,7,-6,0,202,122,44,8,-6,0,202,122,44,9,-6,0,202,122,44,10,-6,0,202,122,44,11,-6,0,202,122,44,12,-6,0,202,122,44,13,-6,0,202,122,44,14,-6,0,202,122,44,15,-6,0,202,122,44,16,-6,0,202,122,44,17,-6,0,202,122,44,18,-6,0,202,122,44,19,-6,0,202,122,44,20,-6,0,202,122,44,21,-6,0,202,122,44,22,-6,0,202,122,44,23,-6,0,202,122,44,24,-6,0,202,122,44,25,-6,0,202,122,44,26,-6,0,202,122,44,27,-6,0,202,122,44,28,-6,0,202,122,44,29,-6,0,202,122,44,30,-6,0,202,122,44,31,-6,0,202,122,44,32,-6,0,202,122,44,33,-6,0,202,122,44,34,-6,0,202,122,44,35,-6,0,202,122,44,36,-6,0,202,122,44,37,-6,0,202,122,44,38,-6,0,202,122,44,39,-6,0,202,122,44,40,-6,0,202,122,44,41,-6,0,202,122,44,42,-6,0,202,122,44,43,-6,0,202,122,44,44,-6,0,202,122,44,45,-6,0,202,122,44,46,-6,0,202,122,44,47,-6,0,202,122,44,48,-6,0,202,122,44,49,-6,0,202,122,44,50,-6,0,202,122,44,51,-6,0,202,122,44,52,-6,0,202,122,44,53,-6,0,202,122,44,54,-6,0,202,122,44,55,-6,0,202,122,44,56,-6,0,202,122,44,57,-6,0,202,122,44,58,-6,0,202,122,44,59,-6,0,202,122,44,60,-6,0,202,122,44,61,-6,0,202,122,44,62,-6,0,202,122,44,63,-6,0,202,122,44,64,-6,0,202,122,44,65,-6,0,202,122,44,66,-6,0,202,122,44,67,-6,0,202,122,44,68,-6,0,202,122,44,69,-6,0,202,122,44,70,-6,0,202,122,44,71,-6,0,202,122,44,72,-6,0,202,122,44,73,-6,0,202,122,44,74,-6,0,202,122,44,75,-6,0,202,122,44,76,-6,0,202,122,44,77,-6,0,202,122,44,78,-6,0,202,122,44,79,-6,0,202,122,44,80,-6,0,202,122,44,81,-6,0,202,122,44,82,-6,0,202,122,44,83,-6,0,202,122,44,84,-6,0,202,122,44,85,-6,0,202,122,44,-40,-5,0,202,122,44,-39,-5,0,202,122,44,-38,-5,0,202,122,44,-37,-5,0,202,122,44,-36,-5,0,202,122,44,-35,-5,0,202,122,44,-34,-5,0,202,122,44,-33,-5,0,202,122,44,-32,-5,0,202,122,44,-31,-5,0,202,122,44,-30,-5,0,202,122,44,-29,-5,0,202,122,44,-28,-5,0,202,122,44,-27,-5,0,202,122,44,-26,-5,0,202,122,44,-25,-5,0,202,122,44,-24,-5,0,202,122,44,-23,-5,0,202,122,44,-22,-5,0,202,122,44,-21,-5,0,202,122,44,-20,-5,0,202,122,44,-19,-5,0,202,122,44,-18,-5,0,202,122,44,-17,-5,0,202,122,44,-16,-5,0,202,122,44,-15,-5,0,202,122,44,-14,-5,0,202,122,44,-13,-5,0,202,122,44,-12,-5,0,202,122,44,-11,-5,0,202,122,44,-10,-5,0,202,122,44,-9,-5,0,202,122,44,-8,-5,0,202,122,44,-7,-5,0,202,122,44,-6,-5,0,202,122,44,-5,-5,0,202,122,44,-4,-5,0,202,122,44,-3,-5,0,202,122,44,-2,-5,0,202,122,44,-1,-5,0,202,122,44,0,-5,0,202,122,44,1,-5,0,202,122,44,2,-5,0,202,122,44,3,-5,0,202,122,44,4,-5,0,202,122,44,5,-5,0,202,122,44,6,-5,0,202,122,44,7,-5,0,202,122,44,8,-5,0,202,122,44,9,-5,0,202,122,44,10,-5,0,202,122,44,11,-5,0,202,122,44,12,-5,0,202,122,44,13,-5,0,202,122,44,14,-5,0,202,122,44,15,-5,0,202,122,44,16,-5,0,202,122,44,17,-5,0,202,122,44,18,-5,0,202,122,44,19,-5,0,202,122,44,20,-5,0,202,122,44,21,-5,0,202,122,44,22,-5,0,202,122,44,23,-5,0,202,122,44,24,-5,0,202,122,44,25,-5,0,202,122,44,26,-5,0,202,122,44,27,-5,0,202,122,44,28,-5,0,202,122,44,29,-5,0,202,122,44,30,-5,0,202,122,44,31,-5,0,202,122,44,32,-5,0,202,122,44,33,-5,0,202,122,44,34,-5,0,202,122,44,35,-5,0,202,122,44,36,-5,0,202,122,44,37,-5,0,202,122,44,38,-5,0,202,122,44,39,-5,0,202,122,44,40,-5,0,202,122,44,41,-5,0,202,122,44,42,-5,0,202,122,44,43,-5,0,202,122,44,44,-5,0,202,122,44,45,-5,0,202,122,44,46,-5,0,202,122,44,47,-5,0,202,122,44,48,-5,0,202,122,44,49,-5,0,202,122,44,50,-5,0,202,122,44,51,-5,0,202,122,44,52,-5,0,202,122,44,53,-5,0,202,122,44,54,-5,0,202,122,44,55,-5,0,202,122,44,56,-5,0,202,122,44,57,-5,0,202,122,44,58,-5,0,202,122,44,59,-5,0,202,122,44,60,-5,0,202,122,44,61,-5,0,202,122,44,62,-5,0,202,122,44,63,-5,0,202,122,44,64,-5,0,202,122,44,65,-5,0,202,122,44,66,-5,0,202,122,44,67,-5,0,202,122,44,68,-5,0,202,122,44,69,-5,0,202,122,44,70,-5,0,202,122,44,71,-5,0,202,122,44,72,-5,0,202,122,44,73,-5,0,202,122,44,74,-5,0,202,122,44,75,-5,0,202,122,44,76,-5,0,202,122,44,77,-5,0,202,122,44,78,-5,0,202,122,44,79,-5,0,202,122,44,80,-5,0,202,122,44,81,-5,0,202,122,44,82,-5,0,202,122,44,83,-5,0,202,122,44,84,-5,0,202,122,44,85,-5,0,202,122,44,-40,-4,0,202,122,44,-39,-4,0,202,122,44,-38,-4,0,202,122,44,-37,-4,0,202,122,44,-36,-4,0,202,122,44,-35,-4,0,202,122,44,-34,-4,0,202,122,44,-33,-4,0,202,122,44,-32,-4,0,202,122,44,-31,-4,0,202,122,44,-30,-4,0,202,122,44,-29,-4,0,202,122,44,-28,-4,0,202,122,44,-27,-4,0,202,122,44,-26,-4,0,202,122,44,-25,-4,0,202,122,44,-24,-4,0,202,122,44,-23,-4,0,202,122,44,-22,-4,0,202,122,44,-21,-4,0,202,122,44,-20,-4,0,202,122,44,-19,-4,0,202,122,44,-18,-4,0,202,122,44,-17,-4,0,202,122,44,-16,-4,0,202,122,44,-15,-4,0,202,122,44,-14,-4,0,202,122,44,-13,-4,0,202,122,44,-12,-4,0,202,122,44,-11,-4,0,202,122,44,-10,-4,0,202,122,44,-9,-4,0,202,122,44,-8,-4,0,202,122,44,-7,-4,0,202,122,44,-6,-4,0,202,122,44,-5,-4,0,202,122,44,-4,-4,0,202,122,44,-3,-4,0,202,122,44,-2,-4,0,202,122,44,-1,-4,0,202,122,44,0,-4,0,202,122,44,1,-4,0,202,122,44,2,-4,0,202,122,44,3,-4,0,202,122,44,4,-4,0,202,122,44,5,-4,0,202,122,44,6,-4,0,202,122,44,7,-4,0,202,122,44,8,-4,0,202,122,44,9,-4,0,202,122,44,10,-4,0,202,122,44,11,-4,0,202,122,44,12,-4,0,202,122,44,13,-4,0,202,122,44,14,-4,0,202,122,44,15,-4,0,202,122,44,16,-4,0,202,122,44,17,-4,0,202,122,44,18,-4,0,202,122,44,19,-4,0,202,122,44,20,-4,0,202,122,44,21,-4,0,202,122,44,22,-4,0,202,122,44,23,-4,0,202,122,44,24,-4,0,202,122,44,25,-4,0,202,122,44,26,-4,0,202,122,44,27,-4,0,202,122,44,28,-4,0,202,122,44,29,-4,0,202,122,44,30,-4,0,202,122,44,31,-4,0,202,122,44,32,-4,0,202,122,44,33,-4,0,202,122,44,34,-4,0,202,122,44,35,-4,0,202,122,44,36,-4,0,202,122,44,37,-4,0,202,122,44,38,-4,0,202,122,44,39,-4,0,202,122,44,40,-4,0,202,122,44,41,-4,0,202,122,44,42,-4,0,202,122,44,43,-4,0,202,122,44,44,-4,0,202,122,44,45,-4,0,202,122,44,46,-4,0,202,122,44,47,-4,0,202,122,44,48,-4,0,202,122,44,49,-4,0,202,122,44,50,-4,0,202,122,44,51,-4,0,202,122,44,52,-4,0,202,122,44,53,-4,0,202,122,44,54,-4,0,202,122,44,55,-4,0,202,122,44,56,-4,0,202,122,44,57,-4,0,202,122,44,58,-4,0,202,122,44,59,-4,0,202,122,44,60,-4,0,202,122,44,61,-4,0,202,122,44,62,-4,0,202,122,44,63,-4,0,202,122,44,64,-4,0,202,122,44,65,-4,0,202,122,44,66,-4,0,202,122,44,67,-4,0,202,122,44,68,-4,0,202,122,44,69,-4,0,202,122,44,70,-4,0,202,122,44,71,-4,0,202,122,44,72,-4,0,202,122,44,73,-4,0,202,122,44,74,-4,0,202,122,44,75,-4,0,202,122,44,76,-4,0,202,122,44,77,-4,0,202,122,44,78,-4,0,202,122,44,79,-4,0,202,122,44,80,-4,0,202,122,44,81,-4,0,202,122,44,82,-4,0,202,122,44,83,-4,0,202,122,44,84,-4,0,202,122,44,85,-4,0,202,122,44,-40,-3,0,202,122,44,-39,-3,0,202,122,44,-38,-3,0,202,122,44,-37,-3,0,202,122,44,-36,-3,0,202,122,44,-35,-3,0,202,122,44,-34,-3,0,202,122,44,-33,-3,0,202,122,44,-32,-3,0,202,122,44,-31,-3,0,202,122,44,-30,-3,0,202,122,44,-29,-3,0,202,122,44,-28,-3,0,202,122,44,-27,-3,0,202,122,44,-26,-3,0,202,122,44,-25,-3,0,202,122,44,-24,-3,0,202,122,44,-23,-3,0,202,122,44,-22,-3,0,202,122,44,-21,-3,0,202,122,44,-20,-3,0,202,122,44,-19,-3,0,202,122,44,-18,-3,0,202,122,44,-17,-3,0,202,122,44,-16,-3,0,202,122,44,-15,-3,0,202,122,44,-14,-3,0,202,122,44,-13,-3,0,202,122,44,-12,-3,0,202,122,44,-11,-3,0,202,122,44,-10,-3,0,202,122,44,-9,-3,0,202,122,44,-8,-3,0,202,122,44,-7,-3,0,202,122,44,-6,-3,0,202,122,44,-5,-3,0,202,122,44,-4,-3,0,202,122,44,-3,-3,0,202,122,44,-2,-3,0,202,122,44,-1,-3,0,202,122,44,0,-3,0,202,122,44,1,-3,0,202,122,44,2,-3,0,202,122,44,3,-3,0,202,122,44,4,-3,0,202,122,44,5,-3,0,202,122,44,6,-3,0,202,122,44,7,-3,0,202,122,44,8,-3,0,202,122,44,9,-3,0,202,122,44,10,-3,0,202,122,44,11,-3,0,202,122,44,12,-3,0,202,122,44,13,-3,0,202,122,44,14,-3,0,202,122,44,15,-3,0,202,122,44,16,-3,0,202,122,44,17,-3,0,202,122,44,18,-3,0,202,122,44,19,-3,0,202,122,44,20,-3,0,202,122,44,21,-3,0,202,122,44,22,-3,0,202,122,44,23,-3,0,202,122,44,24,-3,0,202,122,44,25,-3,0,202,122,44,26,-3,0,202,122,44,27,-3,0,202,122,44,28,-3,0,202,122,44,29,-3,0,202,122,44,30,-3,0,202,122,44,31,-3,0,202,122,44,32,-3,0,202,122,44,33,-3,0,202,122,44,34,-3,0,202,122,44,35,-3,0,202,122,44,36,-3,0,202,122,44,37,-3,0,202,122,44,38,-3,0,202,122,44,39,-3,0,202,122,44,40,-3,0,202,122,44,41,-3,0,202,122,44,42,-3,0,202,122,44,43,-3,0,202,122,44,44,-3,0,202,122,44,45,-3,0,202,122,44,46,-3,0,202,122,44,47,-3,0,202,122,44,48,-3,0,202,122,44,49,-3,0,202,122,44,50,-3,0,202,122,44,51,-3,0,202,122,44,52,-3,0,202,122,44,53,-3,0,202,122,44,54,-3,0,202,122,44,55,-3,0,202,122,44,56,-3,0,202,122,44,57,-3,0,202,122,44,58,-3,0,202,122,44,59,-3,0,202,122,44,60,-3,0,202,122,44,61,-3,0,202,122,44,62,-3,0,202,122,44,63,-3,0,202,122,44,64,-3,0,202,122,44,65,-3,0,202,122,44,66,-3,0,202,122,44,67,-3,0,202,122,44,68,-3,0,202,122,44,69,-3,0,202,122,44,70,-3,0,202,122,44,71,-3,0,202,122,44,72,-3,0,202,122,44,73,-3,0,202,122,44,74,-3,0,202,122,44,75,-3,0,202,122,44,76,-3,0,202,122,44,77,-3,0,202,122,44,78,-3,0,202,122,44,79,-3,0,202,122,44,80,-3,0,202,122,44,81,-3,0,202,122,44,82,-3,0,202,122,44,83,-3,0,202,122,44,84,-3,0,202,122,44,85,-3,0,202,122,44,-40,-2,0,202,122,44,-39,-2,0,202,122,44,-38,-2,0,202,122,44,-37,-2,0,202,122,44,-36,-2,0,202,122,44,-35,-2,0,202,122,44,-34,-2,0,202,122,44,-33,-2,0,202,122,44,-32,-2,0,202,122,44,-31,-2,0,202,122,44,-30,-2,0,202,122,44,-29,-2,0,202,122,44,-28,-2,0,202,122,44,-27,-2,0,202,122,44,-26,-2,0,202,122,44,-25,-2,0,202,122,44,-24,-2,0,202,122,44,-23,-2,0,202,122,44,-22,-2,0,202,122,44,-21,-2,0,202,122,44,-20,-2,0,202,122,44,-19,-2,0,202,122,44,-18,-2,0,202,122,44,-17,-2,0,202,122,44,-16,-2,0,202,122,44,-15,-2,0,202,122,44,-14,-2,0,202,122,44,-13,-2,0,202,122,44,-12,-2,0,202,122,44,-11,-2,0,202,122,44,-10,-2,0,202,122,44,-9,-2,0,202,122,44,-8,-2,0,202,122,44,-7,-2,0,202,122,44,-6,-2,0,202,122,44,-5,-2,0,202,122,44,-4,-2,0,202,122,44,-3,-2,0,202,122,44,-2,-2,0,202,122,44,-1,-2,0,202,122,44,0,-2,0,202,122,44,1,-2,0,202,122,44,2,-2,0,202,122,44,3,-2,0,202,122,44,4,-2,0,202,122,44,5,-2,0,202,122,44,6,-2,0,202,122,44,7,-2,0,202,122,44,8,-2,0,202,122,44,9,-2,0,202,122,44,10,-2,0,202,122,44,11,-2,0,202,122,44,12,-2,0,202,122,44,13,-2,0,202,122,44,14,-2,0,202,122,44,15,-2,0,202,122,44,16,-2,0,202,122,44,17,-2,0,202,122,44,18,-2,0,202,122,44,19,-2,0,202,122,44,20,-2,0,202,122,44,21,-2,0,202,122,44,22,-2,0,202,122,44,23,-2,0,202,122,44,24,-2,0,202,122,44,25,-2,0,202,122,44,26,-2,0,202,122,44,27,-2,0,202,122,44,28,-2,0,202,122,44,29,-2,0,202,122,44,30,-2,0,202,122,44,31,-2,0,202,122,44,32,-2,0,202,122,44,33,-2,0,202,122,44,34,-2,0,202,122,44,35,-2,0,202,122,44,36,-2,0,202,122,44,37,-2,0,202,122,44,38,-2,0,202,122,44,39,-2,0,202,122,44,40,-2,0,202,122,44,41,-2,0,202,122,44,42,-2,0,202,122,44,43,-2,0,202,122,44,44,-2,0,202,122,44,45,-2,0,202,122,44,46,-2,0,202,122,44,47,-2,0,202,122,44,48,-2,0,202,122,44,49,-2,0,202,122,44,50,-2,0,202,122,44,51,-2,0,202,122,44,52,-2,0,202,122,44,53,-2,0,202,122,44,54,-2,0,202,122,44,55,-2,0,202,122,44,56,-2,0,202,122,44,57,-2,0,202,122,44,58,-2,0,202,122,44,59,-2,0,202,122,44,60,-2,0,202,122,44,61,-2,0,202,122,44,62,-2,0,202,122,44,63,-2,0,202,122,44,64,-2,0,202,122,44,65,-2,0,202,122,44,66,-2,0,202,122,44,67,-2,0,202,122,44,68,-2,0,202,122,44,69,-2,0,202,122,44,70,-2,0,202,122,44,71,-2,0,202,122,44,72,-2,0,202,122,44,73,-2,0,202,122,44,74,-2,0,202,122,44,75,-2,0,202,122,44,76,-2,0,202,122,44,77,-2,0,202,122,44,78,-2,0,202,122,44,79,-2,0,202,122,44,80,-2,0,202,122,44,81,-2,0,202,122,44,82,-2,0,202,122,44,83,-2,0,202,122,44,84,-2,0,202,122,44,85,-2,0,202,122,44,-40,-1,0,202,122,44,-39,-1,0,202,122,44,-38,-1,0,202,122,44,-37,-1,0,202,122,44,-36,-1,0,202,122,44,-35,-1,0,202,122,44,-34,-1,0,202,122,44,-33,-1,0,202,122,44,-32,-1,0,202,122,44,-31,-1,0,202,122,44,-30,-1,0,202,122,44,-29,-1,0,202,122,44,-28,-1,0,202,122,44,-27,-1,0,202,122,44,-26,-1,0,202,122,44,-25,-1,0,202,122,44,-24,-1,0,202,122,44,-23,-1,0,202,122,44,-22,-1,0,202,122,44,-21,-1,0,202,122,44,-20,-1,0,202,122,44,-19,-1,0,202,122,44,-18,-1,0,202,122,44,-17,-1,0,202,122,44,-16,-1,0,202,122,44,-15,-1,0,202,122,44,-14,-1,0,202,122,44,-13,-1,0,202,122,44,-12,-1,0,202,122,44,-11,-1,0,202,122,44,-10,-1,0,202,122,44,-9,-1,0,202,122,44,-8,-1,0,202,122,44,-7,-1,0,202,122,44,-6,-1,0,202,122,44,-5,-1,0,202,122,44,-4,-1,0,202,122,44,-3,-1,0,202,122,44,-2,-1,0,202,122,44,-1,-1,0,202,122,44,0,-1,0,202,122,44,1,-1,0,202,122,44,2,-1,0,202,122,44,3,-1,0,202,122,44,4,-1,0,202,122,44,5,-1,0,202,122,44,6,-1,0,202,122,44,7,-1,0,202,122,44,8,-1,0,202,122,44,9,-1,0,202,122,44,10,-1,0,202,122,44,11,-1,0,202,122,44,12,-1,0,202,122,44,13,-1,0,202,122,44,14,-1,0,202,122,44,15,-1,0,202,122,44,16,-1,0,202,122,44,17,-1,0,202,122,44,18,-1,0,202,122,44,19,-1,0,202,122,44,20,-1,0,202,122,44,21,-1,0,202,122,44,22,-1,0,202,122,44,23,-1,0,202,122,44,24,-1,0,202,122,44,25,-1,0,202,122,44,26,-1,0,202,122,44,27,-1,0,202,122,44,28,-1,0,202,122,44,29,-1,0,202,122,44,30,-1,0,202,122,44,31,-1,0,202,122,44,32,-1,0,202,122,44,33,-1,0,202,122,44,34,-1,0,202,122,44,35,-1,0,202,122,44,36,-1,0,202,122,44,37,-1,0,202,122,44,38,-1,0,202,122,44,39,-1,0,202,122,44,40,-1,0,202,122,44,41,-1,0,202,122,44,42,-1,0,202,122,44,43,-1,0,202,122,44,44,-1,0,202,122,44,45,-1,0,202,122,44,46,-1,0,202,122,44,47,-1,0,202,122,44,48,-1,0,202,122,44,49,-1,0,202,122,44,50,-1,0,202,122,44,51,-1,0,202,122,44,52,-1,0,202,122,44,53,-1,0,202,122,44,54,-1,0,202,122,44,55,-1,0,202,122,44,56,-1,0,202,122,44,57,-1,0,202,122,44,58,-1,0,202,122,44,59,-1,0,202,122,44,60,-1,0,202,122,44,61,-1,0,202,122,44,62,-1,0,202,122,44,63,-1,0,202,122,44,64,-1,0,202,122,44,65,-1,0,202,122,44,66,-1,0,202,122,44,67,-1,0,202,122,44,68,-1,0,202,122,44,69,-1,0,202,122,44,70,-1,0,202,122,44,71,-1,0,202,122,44,72,-1,0,202,122,44,73,-1,0,202,122,44,74,-1,0,202,122,44,75,-1,0,202,122,44,76,-1,0,202,122,44,77,-1,0,202,122,44,78,-1,0,202,122,44,79,-1,0,202,122,44,80,-1,0,202,122,44,81,-1,0,202,122,44,82,-1,0,202,122,44,83,-1,0,202,122,44,84,-1,0,202,122,44,85,-1,0,202,122,44,-40,0,0,202,122,44,-39,0,0,202,122,44,-38,0,0,202,122,44,-37,0,0,202,122,44,-36,0,0,202,122,44,-35,0,0,202,122,44,-34,0,0,202,122,44,-33,0,0,202,122,44,-32,0,0,202,122,44,-31,0,0,202,122,44,-30,0,0,202,122,44,-29,0,0,202,122,44,-28,0,0,202,122,44,-27,0,0,202,122,44,-26,0,0,202,122,44,-25,0,0,202,122,44,-24,0,0,202,122,44,-23,0,0,202,122,44,-22,0,0,202,122,44,-21,0,0,202,122,44,-20,0,0,202,122,44,-19,0,0,202,122,44,-18,0,0,202,122,44,-17,0,0,202,122,44,-16,0,0,202,122,44,-15,0,0,202,122,44,-14,0,0,202,122,44,-13,0,0,202,122,44,-12,0,0,202,122,44,-11,0,0,202,122,44,-10,0,0,202,122,44,-9,0,0,202,122,44,-8,0,0,202,122,44,-7,0,0,202,122,44,-6,0,0,202,122,44,-5,0,0,202,122,44,-4,0,0,202,122,44,-3,0,0,202,122,44,-2,0,0,202,122,44,-1,0,0,202,122,44,0,0,0,202,122,44,1,0,0,202,122,44,2,0,0,202,122,44,3,0,0,202,122,44,4,0,0,202,122,44,5,0,0,202,122,44,6,0,0,202,122,44,7,0,0,202,122,44,8,0,0,202,122,44,9,0,0,202,122,44,10,0,0,202,122,44,11,0,0,202,122,44,12,0,0,202,122,44,13,0,0,202,122,44,14,0,0,202,122,44,15,0,0,202,122,44,16,0,0,202,122,44,17,0,0,202,122,44,18,0,0,202,122,44,19,0,0,202,122,44,20,0,0,202,122,44,21,0,0,202,122,44,22,0,0,202,122,44,23,0,0,202,122,44,24,0,0,202,122,44,25,0,0,202,122,44,26,0,0,202,122,44,27,0,0,202,122,44,28,0,0,202,122,44,29,0,0,202,122,44,30,0,0,202,122,44,31,0,0,202,122,44,32,0,0,202,122,44,33,0,0,202,122,44,34,0,0,202,122,44,35,0,0,202,122,44,36,0,0,202,122,44,37,0,0,202,122,44,38,0,0,202,122,44,39,0,0,202,122,44,40,0,0,202,122,44,41,0,0,202,122,44,42,0,0,202,122,44,43,0,0,202,122,44,44,0,0,202,122,44,45,0,0,202,122,44,46,0,0,202,122,44,47,0,0,202,122,44,48,0,0,202,122,44,49,0,0,202,122,44,50,0,0,202,122,44,51,0,0,202,122,44,52,0,0,202,122,44,53,0,0,202,122,44,54,0,0,202,122,44,55,0,0,202,122,44,56,0,0,202,122,44,57,0,0,202,122,44,58,0,0,202,122,44,59,0,0,202,122,44,60,0,0,202,122,44,61,0,0,202,122,44,62,0,0,202,122,44,63,0,0,202,122,44,64,0,0,202,122,44,65,0,0,202,122,44,66,0,0,202,122,44,67,0,0,202,122,44,68,0,0,202,122,44,69,0,0,202,122,44,70,0,0,202,122,44,71,0,0,202,122,44,72,0,0,202,122,44,73,0,0,202,122,44,74,0,0,202,122,44,75,0,0,202,122,44,76,0,0,202,122,44,77,0,0,202,122,44,78,0,0,202,122,44,79,0,0,202,122,44,80,0,0,202,122,44,81,0,0,202,122,44,82,0,0,202,122,44,83,0,0,202,122,44,84,0,0,202,122,44,85,0,0,202,122,44,-40,1,0,202,122,44,-39,1,0,202,122,44,-38,1,0,202,122,44,-37,1,0,202,122,44,-36,1,0,202,122,44,-35,1,0,202,122,44,-34,1,0,202,122,44,-33,1,0,202,122,44,-32,1,0,202,122,44,-31,1,0,202,122,44,-30,1,0,202,122,44,-29,1,0,202,122,44,-28,1,0,202,122,44,-27,1,0,202,122,44,-26,1,0,202,122,44,-25,1,0,202,122,44,-24,1,0,202,122,44,-23,1,0,202,122,44,-22,1,0,202,122,44,-21,1,0,202,122,44,-20,1,0,202,122,44,-19,1,0,202,122,44,-18,1,0,202,122,44,-17,1,0,202,122,44,-16,1,0,202,122,44,-15,1,0,202,122,44,-14,1,0,202,122,44,-13,1,0,202,122,44,-12,1,0,202,122,44,-11,1,0,202,122,44,-10,1,0,202,122,44,-9,1,0,202,122,44,-8,1,0,202,122,44,-7,1,0,202,122,44,-6,1,0,202,122,44,-5,1,0,202,122,44,-4,1,0,202,122,44,-3,1,0,202,122,44,-2,1,0,202,122,44,-1,1,0,202,122,44,0,1,0,202,122,44,1,1,0,202,122,44,2,1,0,202,122,44,3,1,0,202,122,44,4,1,0,202,122,44,5,1,0,202,122,44,6,1,0,202,122,44,7,1,0,202,122,44,8,1,0,202,122,44,9,1,0,202,122,44,10,1,0,202,122,44,11,1,0,202,122,44,12,1,0,202,122,44,13,1,0,202,122,44,14,1,0,202,122,44,15,1,0,202,122,44,16,1,0,202,122,44,17,1,0,202,122,44,18,1,0,202,122,44,19,1,0,202,122,44,20,1,0,202,122,44,21,1,0,202,122,44,22,1,0,202,122,44,23,1,0,202,122,44,24,1,0,202,122,44,25,1,0,202,122,44,26,1,0,202,122,44,27,1,0,202,122,44,28,1,0,202,122,44,29,1,0,202,122,44,30,1,0,202,122,44,31,1,0,202,122,44,32,1,0,202,122,44,33,1,0,202,122,44,34,1,0,202,122,44,35,1,0,202,122,44,36,1,0,202,122,44,37,1,0,202,122,44,38,1,0,202,122,44,39,1,0,202,122,44,40,1,0,202,122,44,41,1,0,202,122,44,42,1,0,202,122,44,43,1,0,202,122,44,44,1,0,202,122,44,45,1,0,202,122,44,46,1,0,202,122,44,47,1,0,202,122,44,48,1,0,202,122,44,49,1,0,202,122,44,50,1,0,202,122,44,51,1,0,202,122,44,52,1,0,202,122,44,53,1,0,202,122,44,54,1,0,202,122,44,55,1,0,202,122,44,56,1,0,202,122,44,57,1,0,202,122,44,58,1,0,202,122,44,59,1,0,202,122,44,60,1,0,202,122,44,61,1,0,202,122,44,62,1,0,202,122,44,63,1,0,202,122,44,64,1,0,202,122,44,65,1,0,202,122,44,66,1,0,202,122,44,67,1,0,202,122,44,68,1,0,202,122,44,69,1,0,202,122,44,70,1,0,202,122,44,71,1,0,202,122,44,72,1,0,202,122,44,73,1,0,202,122,44,74,1,0,202,122,44,75,1,0,202,122,44,76,1,0,202,122,44,77,1,0,202,122,44,78,1,0,202,122,44,79,1,0,202,122,44,80,1,0,202,122,44,81,1,0,202,122,44,82,1,0,202,122,44,83,1,0,202,122,44,84,1,0,202,122,44,85,1,0,202,122,44,-40,2,0,202,122,44,-39,2,0,202,122,44,-38,2,0,202,122,44,-37,2,0,202,122,44,-36,2,0,202,122,44,-35,2,0,202,122,44,-34,2,0,202,122,44,-33,2,0,202,122,44,-32,2,0,202,122,44,-31,2,0,202,122,44,-30,2,0,202,122,44,-29,2,0,202,122,44,-28,2,0,202,122,44,-27,2,0,202,122,44,-26,2,0,202,122,44,-25,2,0,202,122,44,-24,2,0,202,122,44,-23,2,0,202,122,44,-22,2,0,202,122,44,-21,2,0,202,122,44,-20,2,0,202,122,44,-19,2,0,202,122,44,-18,2,0,202,122,44,-17,2,0,202,122,44,-16,2,0,202,122,44,-15,2,0,202,122,44,-14,2,0,202,122,44,-13,2,0,202,122,44,-12,2,0,202,122,44,-11,2,0,202,122,44,-10,2,0,202,122,44,-9,2,0,202,122,44,-8,2,0,202,122,44,-7,2,0,202,122,44,-6,2,0,202,122,44,-5,2,0,202,122,44,-4,2,0,202,122,44,-3,2,0,202,122,44,-2,2,0,202,122,44,-1,2,0,202,122,44,0,2,0,202,122,44,1,2,0,202,122,44,2,2,0,202,122,44,3,2,0,202,122,44,4,2,0,202,122,44,5,2,0,202,122,44,6,2,0,202,122,44,7,2,0,202,122,44,8,2,0,202,122,44,9,2,0,202,122,44,10,2,0,202,122,44,11,2,0,202,122,44,12,2,0,202,122,44,13,2,0,202,122,44,14,2,0,202,122,44,15,2,0,202,122,44,16,2,0,202,122,44,17,2,0,202,122,44,18,2,0,202,122,44,19,2,0,202,122,44,20,2,0,202,122,44,21,2,0,202,122,44,22,2,0,202,122,44,23,2,0,202,122,44,24,2,0,202,122,44,25,2,0,202,122,44,26,2,0,202,122,44,27,2,0,202,122,44,28,2,0,202,122,44,29,2,0,202,122,44,30,2,0,202,122,44,31,2,0,202,122,44,32,2,0,202,122,44,33,2,0,202,122,44,34,2,0,202,122,44,35,2,0,202,122,44,36,2,0,202,122,44,37,2,0,202,122,44,38,2,0,202,122,44,39,2,0,202,122,44,40,2,0,202,122,44,41,2,0,202,122,44,42,2,0,202,122,44,43,2,0,202,122,44,44,2,0,202,122,44,45,2,0,202,122,44,46,2,0,202,122,44,47,2,0,202,122,44,48,2,0,202,122,44,49,2,0,202,122,44,50,2,0,202,122,44,51,2,0,202,122,44,52,2,0,202,122,44,53,2,0,202,122,44,54,2,0,202,122,44,55,2,0,202,122,44,56,2,0,202,122,44,57,2,0,202,122,44,58,2,0,202,122,44,59,2,0,202,122,44,60,2,0,202,122,44,61,2,0,202,122,44,62,2,0,202,122,44,63,2,0,202,122,44,64,2,0,202,122,44,65,2,0,202,122,44,66,2,0,202,122,44,67,2,0,202,122,44,68,2,0,202,122,44,69,2,0,202,122,44,70,2,0,202,122,44,71,2,0,202,122,44,72,2,0,202,122,44,73,2,0,202,122,44,74,2,0,202,122,44,75,2,0,202,122,44,76,2,0,202,122,44,77,2,0,202,122,44,78,2,0,202,122,44,79,2,0,202,122,44,80,2,0,202,122,44,81,2,0,202,122,44,82,2,0,202,122,44,83,2,0,202,122,44,84,2,0,202,122,44,85,2,0,202,122,44,-40,3,0,202,122,44,-39,3,0,202,122,44,-38,3,0,202,122,44,-37,3,0,202,122,44,-36,3,0,202,122,44,-35,3,0,202,122,44,-34,3,0,202,122,44,-33,3,0,202,122,44,-32,3,0,202,122,44,-31,3,0,202,122,44,-30,3,0,202,122,44,-29,3,0,202,122,44,-28,3,0,202,122,44,-27,3,0,202,122,44,-26,3,0,202,122,44,-25,3,0,202,122,44,-24,3,0,202,122,44,-23,3,0,202,122,44,-22,3,0,202,122,44,-21,3,0,202,122,44,-20,3,0,202,122,44,-19,3,0,202,122,44,-18,3,0,202,122,44,-17,3,0,202,122,44,-16,3,0,202,122,44,-15,3,0,202,122,44,-14,3,0,202,122,44,-13,3,0,202,122,44,-12,3,0,202,122,44,-11,3,0,202,122,44,-10,3,0,202,122,44,-9,3,0,202,122,44,-8,3,0,202,122,44,-7,3,0,202,122,44,-6,3,0,202,122,44,-5,3,0,202,122,44,-4,3,0,202,122,44,-3,3,0,202,122,44,-2,3,0,202,122,44,-1,3,0,202,122,44,0,3,0,202,122,44,1,3,0,202,122,44,2,3,0,202,122,44,3,3,0,202,122,44,4,3,0,202,122,44,5,3,0,202,122,44,6,3,0,202,122,44,7,3,0,202,122,44,8,3,0,202,122,44,9,3,0,202,122,44,10,3,0,202,122,44,11,3,0,202,122,44,12,3,0,202,122,44,13,3,0,202,122,44,14,3,0,202,122,44,15,3,0,202,122,44,16,3,0,202,122,44,17,3,0,202,122,44,18,3,0,202,122,44,19,3,0,202,122,44,20,3,0,202,122,44,21,3,0,202,122,44,22,3,0,202,122,44,23,3,0,202,122,44,24,3,0,202,122,44,25,3,0,202,122,44,26,3,0,202,122,44,27,3,0,202,122,44,28,3,0,202,122,44,29,3,0,202,122,44,30,3,0,202,122,44,31,3,0,202,122,44,32,3,0,202,122,44,33,3,0,202,122,44,34,3,0,202,122,44,35,3,0,202,122,44,36,3,0,202,122,44,37,3,0,202,122,44,38,3,0,202,122,44,39,3,0,202,122,44,40,3,0,202,122,44,41,3,0,202,122,44,42,3,0,202,122,44,43,3,0,202,122,44,44,3,0,202,122,44,45,3,0,202,122,44,46,3,0,202,122,44,47,3,0,202,122,44,48,3,0,202,122,44,49,3,0,202,122,44,50,3,0,202,122,44,51,3,0,202,122,44,52,3,0,202,122,44,53,3,0,202,122,44,54,3,0,202,122,44,55,3,0,202,122,44,56,3,0,202,122,44,57,3,0,202,122,44,58,3,0,202,122,44,59,3,0,202,122,44,60,3,0,202,122,44,61,3,0,202,122,44,62,3,0,202,122,44,63,3,0,202,122,44,64,3,0,202,122,44,65,3,0,202,122,44,66,3,0,202,122,44,67,3,0,202,122,44,68,3,0,202,122,44,69,3,0,202,122,44,70,3,0,202,122,44,71,3,0,202,122,44,72,3,0,202,122,44,73,3,0,202,122,44,74,3,0,202,122,44,75,3,0,202,122,44,76,3,0,202,122,44,77,3,0,202,122,44,78,3,0,202,122,44,79,3,0,202,122,44,80,3,0,202,122,44,81,3,0,202,122,44,82,3,0,202,122,44,83,3,0,202,122,44,84,3,0,202,122,44,85,3,0,202,122,44,-40,4,0,202,122,44,-39,4,0,202,122,44,-38,4,0,202,122,44,-37,4,0,202,122,44,-36,4,0,202,122,44,-35,4,0,202,122,44,-34,4,0,202,122,44,-33,4,0,202,122,44,-32,4,0,202,122,44,-31,4,0,202,122,44,-30,4,0,202,122,44,-29,4,0,202,122,44,-28,4,0,202,122,44,-27,4,0,202,122,44,-26,4,0,202,122,44,-25,4,0,202,122,44,-24,4,0,202,122,44,-23,4,0,202,122,44,-22,4,0,202,122,44,-21,4,0,202,122,44,-20,4,0,202,122,44,-19,4,0,202,122,44,-18,4,0,202,122,44,-17,4,0,202,122,44,-16,4,0,202,122,44,-15,4,0,202,122,44,-14,4,0,202,122,44,-13,4,0,202,122,44,-12,4,0,202,122,44,-11,4,0,202,122,44,-10,4,0,202,122,44,-9,4,0,202,122,44,-8,4,0,202,122,44,-7,4,0,202,122,44,-6,4,0,202,122,44,-5,4,0,202,122,44,-4,4,0,202,122,44,-3,4,0,202,122,44,-2,4,0,202,122,44,-1,4,0,202,122,44,0,4,0,202,122,44,1,4,0,202,122,44,2,4,0,202,122,44,3,4,0,202,122,44,4,4,0,202,122,44,5,4,0,202,122,44,6,4,0,202,122,44,7,4,0,202,122,44,8,4,0,202,122,44,9,4,0,202,122,44,10,4,0,202,122,44,11,4,0,202,122,44,12,4,0,202,122,44,13,4,0,202,122,44,14,4,0,202,122,44,15,4,0,202,122,44,16,4,0,202,122,44,17,4,0,202,122,44,18,4,0,202,122,44,19,4,0,202,122,44,20,4,0,202,122,44,21,4,0,202,122,44,22,4,0,202,122,44,23,4,0,202,122,44,24,4,0,202,122,44,25,4,0,202,122,44,26,4,0,202,122,44,27,4,0,202,122,44,28,4,0,202,122,44,29,4,0,202,122,44,30,4,0,202,122,44,31,4,0,202,122,44,32,4,0,202,122,44,33,4,0,202,122,44,34,4,0,202,122,44,35,4,0,202,122,44,36,4,0,202,122,44,37,4,0,202,122,44,38,4,0,202,122,44,39,4,0,202,122,44,40,4,0,202,122,44,41,4,0,202,122,44,42,4,0,202,122,44,43,4,0,202,122,44,44,4,0,202,122,44,45,4,0,202,122,44,46,4,0,202,122,44,47,4,0,202,122,44,48,4,0,202,122,44,49,4,0,202,122,44,50,4,0,202,122,44,51,4,0,202,122,44,52,4,0,202,122,44,53,4,0,202,122,44,54,4,0,202,122,44,55,4,0,202,122,44,56,4,0,202,122,44,57,4,0,202,122,44,58,4,0,202,122,44,59,4,0,202,122,44,60,4,0,202,122,44,61,4,0,202,122,44,62,4,0,202,122,44,63,4,0,202,122,44,64,4,0,202,122,44,65,4,0,202,122,44,66,4,0,202,122,44,67,4,0,202,122,44,68,4,0,202,122,44,69,4,0,202,122,44,70,4,0,202,122,44,71,4,0,202,122,44,72,4,0,202,122,44,73,4,0,202,122,44,74,4,0,202,122,44,75,4,0,202,122,44,76,4,0,202,122,44,77,4,0,202,122,44,78,4,0,202,122,44,79,4,0,202,122,44,80,4,0,202,122,44,81,4,0,202,122,44,82,4,0,202,122,44,83,4,0,202,122,44,84,4,0,202,122,44,85,4,0,202,122,44,-40,5,0,202,122,44,-39,5,0,202,122,44,-38,5,0,202,122,44,-37,5,0,202,122,44,-36,5,0,202,122,44,-35,5,0,202,122,44,-34,5,0,202,122,44,-33,5,0,202,122,44,-32,5,0,202,122,44,-31,5,0,202,122,44,-30,5,0,202,122,44,-29,5,0,202,122,44,-28,5,0,202,122,44,-27,5,0,202,122,44,-26,5,0,202,122,44,-25,5,0,202,122,44,-24,5,0,202,122,44,-23,5,0,202,122,44,-22,5,0,202,122,44,-21,5,0,202,122,44,-20,5,0,202,122,44,-19,5,0,202,122,44,-18,5,0,202,122,44,-17,5,0,202,122,44,-16,5,0,202,122,44,-15,5,0,202,122,44,-14,5,0,202,122,44,-13,5,0,202,122,44,-12,5,0,202,122,44,-11,5,0,202,122,44,-10,5,0,202,122,44,-9,5,0,202,122,44,-8,5,0,202,122,44,-7,5,0,202,122,44,-6,5,0,202,122,44,-5,5,0,202,122,44,-4,5,0,202,122,44,-3,5,0,202,122,44,-2,5,0,202,122,44,-1,5,0,202,122,44,0,5,0,202,122,44,1,5,0,202,122,44,2,5,0,202,122,44,3,5,0,202,122,44,4,5,0,202,122,44,5,5,0,202,122,44,6,5,0,202,122,44,7,5,0,202,122,44,8,5,0,202,122,44,9,5,0,202,122,44,10,5,0,202,122,44,11,5,0,202,122,44,12,5,0,202,122,44,13,5,0,202,122,44,14,5,0,202,122,44,15,5,0,202,122,44,16,5,0,202,122,44,17,5,0,202,122,44,18,5,0,202,122,44,19,5,0,202,122,44,20,5,0,202,122,44,21,5,0,202,122,44,22,5,0,202,122,44,23,5,0,202,122,44,24,5,0,202,122,44,25,5,0,202,122,44,26,5,0,202,122,44,27,5,0,202,122,44,28,5,0,202,122,44,29,5,0,202,122,44,30,5,0,202,122,44,31,5,0,202,122,44,32,5,0,202,122,44,33,5,0,202,122,44,34,5,0,202,122,44,35,5,0,202,122,44,36,5,0,202,122,44,37,5,0,202,122,44,38,5,0,202,122,44,39,5,0,202,122,44,40,5,0,202,122,44,41,5,0,202,122,44,42,5,0,202,122,44,43,5,0,202,122,44,44,5,0,202,122,44,45,5,0,202,122,44,46,5,0,202,122,44,47,5,0,202,122,44,48,5,0,202,122,44,49,5,0,202,122,44,50,5,0,202,122,44,51,5,0,202,122,44,52,5,0,202,122,44,53,5,0,202,122,44,54,5,0,202,122,44,55,5,0,202,122,44,56,5,0,202,122,44,57,5,0,202,122,44,58,5,0,202,122,44,59,5,0,202,122,44,60,5,0,202,122,44,61,5,0,202,122,44,62,5,0,202,122,44,63,5,0,202,122,44,64,5,0,202,122,44,65,5,0,202,122,44,66,5,0,202,122,44,67,5,0,202,122,44,68,5,0,202,122,44,69,5,0,202,122,44,70,5,0,202,122,44,71,5,0,202,122,44,72,5,0,202,122,44,73,5,0,202,122,44,74,5,0,202,122,44,75,5,0,202,122,44,76,5,0,202,122,44,77,5,0,202,122,44,78,5,0,202,122,44,79,5,0,202,122,44,80,5,0,202,122,44,81,5,0,202,122,44,82,5,0,202,122,44,83,5,0,202,122,44,84,5,0,202,122,44,85,5,0,202,122,44,-40,6,0,202,122,44,-39,6,0,202,122,44,-38,6,0,202,122,44,-37,6,0,202,122,44,-36,6,0,202,122,44,-35,6,0,202,122,44,-34,6,0,202,122,44,-33,6,0,202,122,44,-32,6,0,202,122,44,-31,6,0,202,122,44,-30,6,0,202,122,44,-29,6,0,202,122,44,-28,6,0,202,122,44,-27,6,0,202,122,44,-26,6,0,202,122,44,-25,6,0,202,122,44,-24,6,0,202,122,44,-23,6,0,202,122,44,-22,6,0,202,122,44,-21,6,0,202,122,44,-20,6,0,202,122,44,-19,6,0,202,122,44,-18,6,0,202,122,44,-17,6,0,202,122,44,-16,6,0,202,122,44,-15,6,0,202,122,44,-14,6,0,202,122,44,-13,6,0,202,122,44,-12,6,0,202,122,44,-11,6,0,202,122,44,-10,6,0,202,122,44,-9,6,0,202,122,44,-8,6,0,202,122,44,-7,6,0,202,122,44,-6,6,0,202,122,44,-5,6,0,202,122,44,-4,6,0,202,122,44,-3,6,0,202,122,44,-2,6,0,202,122,44,-1,6,0,202,122,44,0,6,0,202,122,44,1,6,0,202,122,44,2,6,0,202,122,44,3,6,0,202,122,44,4,6,0,202,122,44,5,6,0,202,122,44,6,6,0,202,122,44,7,6,0,202,122,44,8,6,0,202,122,44,9,6,0,202,122,44,10,6,0,202,122,44,11,6,0,202,122,44,12,6,0,202,122,44,13,6,0,202,122,44,14,6,0,202,122,44,15,6,0,202,122,44,16,6,0,202,122,44,17,6,0,202,122,44,18,6,0,202,122,44,19,6,0,202,122,44,20,6,0,202,122,44,21,6,0,202,122,44,22,6,0,202,122,44,23,6,0,202,122,44,24,6,0,202,122,44,25,6,0,202,122,44,26,6,0,202,122,44,27,6,0,202,122,44,28,6,0,202,122,44,29,6,0,202,122,44,30,6,0,202,122,44,31,6,0,202,122,44,32,6,0,202,122,44,33,6,0,202,122,44,34,6,0,202,122,44,35,6,0,202,122,44,36,6,0,202,122,44,37,6,0,202,122,44,38,6,0,202,122,44,39,6,0,202,122,44,40,6,0,202,122,44,41,6,0,202,122,44,42,6,0,202,122,44,43,6,0,202,122,44,44,6,0,202,122,44,45,6,0,202,122,44,46,6,0,202,122,44,47,6,0,202,122,44,48,6,0,202,122,44,49,6,0,202,122,44,50,6,0,202,122,44,51,6,0,202,122,44,52,6,0,202,122,44,53,6,0,202,122,44,54,6,0,202,122,44,55,6,0,202,122,44,56,6,0,202,122,44,57,6,0,202,122,44,58,6,0,202,122,44,59,6,0,202,122,44,60,6,0,202,122,44,61,6,0,202,122,44,62,6,0,202,122,44,63,6,0,202,122,44,64,6,0,202,122,44,65,6,0,202,122,44,66,6,0,202,122,44,67,6,0,202,122,44,68,6,0,202,122,44,69,6,0,202,122,44,70,6,0,202,122,44,71,6,0,202,122,44,72,6,0,202,122,44,73,6,0,202,122,44,74,6,0,202,122,44,75,6,0,202,122,44,76,6,0,202,122,44,77,6,0,202,122,44,78,6,0,202,122,44,79,6,0,202,122,44,80,6,0,202,122,44,81,6,0,202,122,44,82,6,0,202,122,44,83,6,0,202,122,44,84,6,0,202,122,44,85,6,0,202,122,44,-40,7,0,202,122,44,-39,7,0,202,122,44,-38,7,0,202,122,44,-37,7,0,202,122,44,-36,7,0,202,122,44,-35,7,0,202,122,44,-34,7,0,202,122,44,-33,7,0,202,122,44,-32,7,0,202,122,44,-31,7,0,202,122,44,-30,7,0,202,122,44,-29,7,0,202,122,44,-28,7,0,202,122,44,-27,7,0,202,122,44,-26,7,0,202,122,44,-25,7,0,202,122,44,-24,7,0,202,122,44,-23,7,0,202,122,44,-22,7,0,202,122,44,-21,7,0,202,122,44,-20,7,0,202,122,44,-19,7,0,202,122,44,-18,7,0,202,122,44,-17,7,0,202,122,44,-16,7,0,202,122,44,-15,7,0,202,122,44,-14,7,0,202,122,44,-13,7,0,202,122,44,-12,7,0,202,122,44,-11,7,0,202,122,44,-10,7,0,202,122,44,-9,7,0,202,122,44,-8,7,0,202,122,44,-7,7,0,202,122,44,-6,7,0,202,122,44,-5,7,0,202,122,44,-4,7,0,202,122,44,-3,7,0,202,122,44,-2,7,0,202,122,44,-1,7,0,202,122,44,0,7,0,202,122,44,1,7,0,202,122,44,2,7,0,202,122,44,3,7,0,202,122,44,4,7,0,202,122,44,5,7,0,202,122,44,6,7,0,202,122,44,7,7,0,202,122,44,8,7,0,202,122,44,9,7,0,202,122,44,10,7,0,202,122,44,11,7,0,202,122,44,12,7,0,202,122,44,13,7,0,202,122,44,14,7,0,202,122,44,15,7,0,202,122,44,16,7,0,202,122,44,17,7,0,202,122,44,18,7,0,202,122,44,19,7,0,202,122,44,20,7,0,202,122,44,21,7,0,202,122,44,22,7,0,202,122,44,23,7,0,202,122,44,24,7,0,202,122,44,25,7,0,202,122,44,26,7,0,202,122,44,27,7,0,202,122,44,28,7,0,202,122,44,29,7,0,202,122,44,30,7,0,202,122,44,31,7,0,202,122,44,32,7,0,202,122,44,33,7,0,202,122,44,34,7,0,202,122,44,35,7,0,202,122,44,36,7,0,202,122,44,37,7,0,202,122,44,38,7,0,202,122,44,39,7,0,202,122,44,40,7,0,202,122,44,41,7,0,202,122,44,42,7,0,202,122,44,43,7,0,202,122,44,44,7,0,202,122,44,45,7,0,202,122,44,46,7,0,202,122,44,47,7,0,202,122,44,48,7,0,202,122,44,49,7,0,202,122,44,50,7,0,202,122,44,51,7,0,202,122,44,52,7,0,202,122,44,53,7,0,202,122,44,54,7,0,202,122,44,55,7,0,202,122,44,56,7,0,202,122,44,57,7,0,202,122,44,58,7,0,202,122,44,59,7,0,202,122,44,60,7,0,202,122,44,61,7,0,202,122,44,62,7,0,202,122,44,63,7,0,202,122,44,64,7,0,202,122,44,65,7,0,202,122,44,66,7,0,202,122,44,67,7,0,202,122,44,68,7,0,202,122,44,69,7,0,202,122,44,70,7,0,202,122,44,71,7,0,202,122,44,72,7,0,202,122,44,73,7,0,202,122,44,74,7,0,202,122,44,75,7,0,202,122,44,76,7,0,202,122,44,77,7,0,202,122,44,78,7,0,202,122,44,79,7,0,202,122,44,80,7,0,202,122,44,81,7,0,202,122,44,82,7,0,202,122,44,83,7,0,202,122,44,84,7,0,202,122,44,85,7,0,202,122,44,-40,8,0,202,122,44,-39,8,0,202,122,44,-38,8,0,202,122,44,-37,8,0,202,122,44,-36,8,0,202,122,44,-35,8,0,202,122,44,-34,8,0,202,122,44,-33,8,0,202,122,44,-32,8,0,202,122,44,-31,8,0,202,122,44,-30,8,0,202,122,44,-29,8,0,202,122,44,-28,8,0,202,122,44,-27,8,0,202,122,44,-26,8,0,202,122,44,-25,8,0,202,122,44,-24,8,0,202,122,44,-23,8,0,202,122,44,-22,8,0,202,122,44,-21,8,0,202,122,44,-20,8,0,202,122,44,-19,8,0,202,122,44,-18,8,0,202,122,44,-17,8,0,202,122,44,-16,8,0,202,122,44,-15,8,0,202,122,44,-14,8,0,202,122,44,-13,8,0,202,122,44,-12,8,0,202,122,44,-11,8,0,202,122,44,-10,8,0,202,122,44,-9,8,0,202,122,44,-8,8,0,202,122,44,-7,8,0,202,122,44,-6,8,0,202,122,44,-5,8,0,202,122,44,-4,8,0,202,122,44,-3,8,0,202,122,44,-2,8,0,202,122,44,-1,8,0,202,122,44,0,8,0,202,122,44,1,8,0,202,122,44,2,8,0,202,122,44,3,8,0,202,122,44,4,8,0,202,122,44,5,8,0,202,122,44,6,8,0,202,122,44,7,8,0,202,122,44,8,8,0,202,122,44,9,8,0,202,122,44,10,8,0,202,122,44,11,8,0,202,122,44,12,8,0,202,122,44,13,8,0,202,122,44,14,8,0,202,122,44,15,8,0,202,122,44,16,8,0,202,122,44,17,8,0,202,122,44,18,8,0,202,122,44,19,8,0,202,122,44,20,8,0,202,122,44,21,8,0,202,122,44,22,8,0,202,122,44,23,8,0,202,122,44,24,8,0,202,122,44,25,8,0,202,122,44,26,8,0,202,122,44,27,8,0,202,122,44,28,8,0,202,122,44,29,8,0,202,122,44,30,8,0,202,122,44,31,8,0,202,122,44,32,8,0,202,122,44,33,8,0,202,122,44,34,8,0,202,122,44,35,8,0,202,122,44,36,8,0,202,122,44,37,8,0,202,122,44,38,8,0,202,122,44,39,8,0,202,122,44,40,8,0,202,122,44,41,8,0,202,122,44,42,8,0,202,122,44,43,8,0,202,122,44,44,8,0,202,122,44,45,8,0,202,122,44,46,8,0,202,122,44,47,8,0,202,122,44,48,8,0,202,122,44,49,8,0,202,122,44,50,8,0,202,122,44,51,8,0,202,122,44,52,8,0,202,122,44,53,8,0,202,122,44,54,8,0,202,122,44,55,8,0,202,122,44,56,8,0,202,122,44,57,8,0,202,122,44,58,8,0,202,122,44,59,8,0,202,122,44,60,8,0,202,122,44,61,8,0,202,122,44,62,8,0,202,122,44,63,8,0,202,122,44,64,8,0,202,122,44,65,8,0,202,122,44,66,8,0,202,122,44,67,8,0,202,122,44,68,8,0,202,122,44,69,8,0,202,122,44,70,8,0,202,122,44,71,8,0,202,122,44,72,8,0,202,122,44,73,8,0,202,122,44,74,8,0,202,122,44,75,8,0,202,122,44,76,8,0,202,122,44,77,8,0,202,122,44,78,8,0,202,122,44,79,8,0,202,122,44,80,8,0,202,122,44,81,8,0,202,122,44,82,8,0,202,122,44,83,8,0,202,122,44,84,8,0,202,122,44,85,8,0,202,122,44,-40,9,0,202,122,44,-39,9,0,202,122,44,-38,9,0,202,122,44,-37,9,0,202,122,44,-36,9,0,202,122,44,-35,9,0,202,122,44,-34,9,0,202,122,44,-33,9,0,202,122,44,-32,9,0,202,122,44,-31,9,0,202,122,44,-30,9,0,202,122,44,-29,9,0,202,122,44,-28,9,0,202,122,44,-27,9,0,202,122,44,-26,9,0,202,122,44,-25,9,0,202,122,44,-24,9,0,202,122,44,-23,9,0,202,122,44,-22,9,0,202,122,44,-21,9,0,202,122,44,-20,9,0,202,122,44,-19,9,0,202,122,44,-18,9,0,202,122,44,-17,9,0,202,122,44,-16,9,0,202,122,44,-15,9,0,202,122,44,-14,9,0,202,122,44,-13,9,0,202,122,44,-12,9,0,202,122,44,-11,9,0,202,122,44,-10,9,0,202,122,44,-9,9,0,202,122,44,-8,9,0,202,122,44,-7,9,0,202,122,44,-6,9,0,202,122,44,-5,9,0,202,122,44,-4,9,0,202,122,44,-3,9,0,202,122,44,-2,9,0,202,122,44,-1,9,0,202,122,44,0,9,0,202,122,44,1,9,0,202,122,44,2,9,0,202,122,44,3,9,0,202,122,44,4,9,0,202,122,44,5,9,0,202,122,44,6,9,0,202,122,44,7,9,0,202,122,44,8,9,0,202,122,44,9,9,0,202,122,44,10,9,0,202,122,44,11,9,0,202,122,44,12,9,0,202,122,44,13,9,0,202,122,44,14,9,0,202,122,44,15,9,0,202,122,44,16,9,0,202,122,44,17,9,0,202,122,44,18,9,0,202,122,44,19,9,0,202,122,44,20,9,0,202,122,44,21,9,0,202,122,44,22,9,0,202,122,44,23,9,0,202,122,44,24,9,0,202,122,44,25,9,0,202,122,44,26,9,0,202,122,44,27,9,0,202,122,44,28,9,0,202,122,44,29,9,0,202,122,44,30,9,0,202,122,44,31,9,0,202,122,44,32,9,0,202,122,44,33,9,0,202,122,44,34,9,0,202,122,44,35,9,0,202,122,44,36,9,0,202,122,44,37,9,0,202,122,44,38,9,0,202,122,44,39,9,0,202,122,44,40,9,0,202,122,44,41,9,0,202,122,44,42,9,0,202,122,44,43,9,0,202,122,44,44,9,0,202,122,44,45,9,0,202,122,44,46,9,0,202,122,44,47,9,0,202,122,44,48,9,0,202,122,44,49,9,0,202,122,44,50,9,0,202,122,44,51,9,0,202,122,44,52,9,0,202,122,44,53,9,0,202,122,44,54,9,0,202,122,44,55,9,0,202,122,44,56,9,0,202,122,44,57,9,0,202,122,44,58,9,0,202,122,44,59,9,0,202,122,44,60,9,0,202,122,44,61,9,0,202,122,44,62,9,0,202,122,44,63,9,0,202,122,44,64,9,0,202,122,44,65,9,0,202,122,44,66,9,0,202,122,44,67,9,0,202,122,44,68,9,0,202,122,44,69,9,0,202,122,44,70,9,0,202,122,44,71,9,0,202,122,44,72,9,0,202,122,44,73,9,0,202,122,44,74,9,0,202,122,44,75,9,0,202,122,44,76,9,0,202,122,44,77,9,0,202,122,44,78,9,0,202,122,44,79,9,0,202,122,44,80,9,0,202,122,44,81,9,0,202,122,44,82,9,0,202,122,44,83,9,0,202,122,44,84,9,0,202,122,44,85,9,0,202,122,44,-40,10,0,202,122,44,-39,10,0,202,122,44,-38,10,0,202,122,44,-37,10,0,202,122,44,-36,10,0,202,122,44,-35,10,0,202,122,44,-34,10,0,202,122,44,-33,10,0,202,122,44,-32,10,0,202,122,44,-31,10,0,202,122,44,-30,10,0,202,122,44,-29,10,0,202,122,44,-28,10,0,202,122,44,-27,10,0,202,122,44,-26,10,0,202,122,44,-25,10,0,202,122,44,-24,10,0,202,122,44,-23,10,0,202,122,44,-22,10,0,202,122,44,-21,10,0,202,122,44,-20,10,0,202,122,44,-19,10,0,202,122,44,-18,10,0,202,122,44,-17,10,0,202,122,44,-16,10,0,202,122,44,-15,10,0,202,122,44,-14,10,0,202,122,44,-13,10,0,202,122,44,-12,10,0,202,122,44,-11,10,0,202,122,44,-10,10,0,202,122,44,-9,10,0,202,122,44,-8,10,0,202,122,44,-7,10,0,202,122,44,-6,10,0,202,122,44,-5,10,0,202,122,44,-4,10,0,202,122,44,-3,10,0,202,122,44,-2,10,0,202,122,44,-1,10,0,202,122,44,0,10,0,202,122,44,1,10,0,202,122,44,2,10,0,202,122,44,3,10,0,202,122,44,4,10,0,202,122,44,5,10,0,202,122,44,6,10,0,202,122,44,7,10,0,202,122,44,8,10,0,202,122,44,9,10,0,202,122,44,10,10,0,202,122,44,11,10,0,202,122,44,12,10,0,202,122,44,13,10,0,202,122,44,14,10,0,202,122,44,15,10,0,202,122,44,16,10,0,202,122,44,17,10,0,202,122,44,18,10,0,202,122,44,19,10,0,202,122,44,20,10,0,202,122,44,21,10,0,202,122,44,22,10,0,202,122,44,23,10,0,202,122,44,24,10,0,202,122,44,25,10,0,202,122,44,26,10,0,202,122,44,27,10,0,202,122,44,28,10,0,202,122,44,29,10,0,202,122,44,30,10,0,202,122,44,31,10,0,202,122,44,32,10,0,202,122,44,33,10,0,202,122,44,34,10,0,202,122,44,35,10,0,202,122,44,36,10,0,202,122,44,37,10,0,202,122,44,38,10,0,202,122,44,39,10,0,202,122,44,40,10,0,202,122,44,41,10,0,202,122,44,42,10,0,202,122,44,43,10,0,202,122,44,44,10,0,202,122,44,45,10,0,202,122,44,46,10,0,202,122,44,47,10,0,202,122,44,48,10,0,202,122,44,49,10,0,202,122,44,50,10,0,202,122,44,51,10,0,202,122,44,52,10,0,202,122,44,53,10,0,202,122,44,54,10,0,202,122,44,55,10,0,202,122,44,56,10,0,202,122,44,57,10,0,202,122,44,58,10,0,202,122,44,59,10,0,202,122,44,60,10,0,202,122,44,61,10,0,202,122,44,62,10,0,202,122,44,63,10,0,202,122,44,64,10,0,202,122,44,65,10,0,202,122,44,66,10,0,202,122,44,67,10,0,202,122,44,68,10,0,202,122,44,69,10,0,202,122,44,70,10,0,202,122,44,71,10,0,202,122,44,72,10,0,202,122,44,73,10,0,202,122,44,74,10,0,202,122,44,75,10,0,202,122,44,76,10,0,202,122,44,77,10,0,202,122,44,78,10,0,202,122,44,79,10,0,202,122,44,80,10,0,202,122,44,81,10,0,202,122,44,82,10,0,202,122,44,83,10,0,202,122,44,84,10,0,202,122,44,85,10,0,202,122,44,-40,11,0,202,122,44,-39,11,0,202,122,44,-38,11,0,202,122,44,-37,11,0,202,122,44,-36,11,0,202,122,44,-35,11,0,202,122,44,-34,11,0,202,122,44,-33,11,0,202,122,44,-32,11,0,202,122,44,-31,11,0,202,122,44,-30,11,0,202,122,44,-29,11,0,202,122,44,-28,11,0,202,122,44,-27,11,0,202,122,44,-26,11,0,202,122,44,-25,11,0,202,122,44,-24,11,0,202,122,44,-23,11,0,202,122,44,-22,11,0,202,122,44,-21,11,0,202,122,44,-20,11,0,202,122,44,-19,11,0,202,122,44,-18,11,0,202,122,44,-17,11,0,202,122,44,-16,11,0,202,122,44,-15,11,0,202,122,44,-14,11,0,202,122,44,-13,11,0,202,122,44,-12,11,0,202,122,44,-11,11,0,202,122,44,-10,11,0,202,122,44,-9,11,0,202,122,44,-8,11,0,202,122,44,-7,11,0,202,122,44,-6,11,0,202,122,44,-5,11,0,202,122,44,-4,11,0,202,122,44,-3,11,0,202,122,44,-2,11,0,202,122,44,-1,11,0,202,122,44,0,11,0,202,122,44,1,11,0,202,122,44,2,11,0,202,122,44,3,11,0,202,122,44,4,11,0,202,122,44,5,11,0,202,122,44,6,11,0,202,122,44,7,11,0,202,122,44,8,11,0,202,122,44,9,11,0,202,122,44,10,11,0,202,122,44,11,11,0,202,122,44,12,11,0,202,122,44,13,11,0,202,122,44,14,11,0,202,122,44,15,11,0,202,122,44,16,11,0,202,122,44,17,11,0,202,122,44,18,11,0,202,122,44,19,11,0,202,122,44,20,11,0,202,122,44,21,11,0,202,122,44,22,11,0,202,122,44,23,11,0,202,122,44,24,11,0,202,122,44,25,11,0,202,122,44,26,11,0,202,122,44,27,11,0,202,122,44,28,11,0,202,122,44,29,11,0,202,122,44,30,11,0,202,122,44,31,11,0,202,122,44,32,11,0,202,122,44,33,11,0,202,122,44,34,11,0,202,122,44,35,11,0,202,122,44,36,11,0,202,122,44,37,11,0,202,122,44,38,11,0,202,122,44,39,11,0,202,122,44,40,11,0,202,122,44,41,11,0,202,122,44,42,11,0,202,122,44,43,11,0,202,122,44,44,11,0,202,122,44,45,11,0,202,122,44,46,11,0,202,122,44,47,11,0,202,122,44,48,11,0,202,122,44,49,11,0,202,122,44,50,11,0,202,122,44,51,11,0,202,122,44,52,11,0,202,122,44,53,11,0,202,122,44,54,11,0,202,122,44,55,11,0,202,122,44,56,11,0,202,122,44,57,11,0,202,122,44,58,11,0,202,122,44,59,11,0,202,122,44,60,11,0,202,122,44,61,11,0,202,122,44,62,11,0,202,122,44,63,11,0,202,122,44,64,11,0,202,122,44,65,11,0,202,122,44,66,11,0,202,122,44,67,11,0,202,122,44,68,11,0,202,122,44,69,11,0,202,122,44,70,11,0,202,122,44,71,11,0,202,122,44,72,11,0,202,122,44,73,11,0,202,122,44,74,11,0,202,122,44,75,11,0,202,122,44,76,11,0,202,122,44,77,11,0,202,122,44,78,11,0,202,122,44,79,11,0,202,122,44,80,11,0,202,122,44,81,11,0,202,122,44,82,11,0,202,122,44,83,11,0,202,122,44,84,11,0,202,122,44,85,11,0,202,122,44,-40,12,0,202,122,44,-39,12,0,202,122,44,-38,12,0,202,122,44,-37,12,0,202,122,44,-36,12,0,202,122,44,-35,12,0,202,122,44,-34,12,0,202,122,44,-33,12,0,202,122,44,-32,12,0,202,122,44,-31,12,0,202,122,44,-30,12,0,202,122,44,-29,12,0,202,122,44,-28,12,0,202,122,44,-27,12,0,202,122,44,-26,12,0,202,122,44,-25,12,0,202,122,44,-24,12,0,202,122,44,-23,12,0,202,122,44,-22,12,0,202,122,44,-21,12,0,202,122,44,-20,12,0,202,122,44,-19,12,0,202,122,44,-18,12,0,202,122,44,-17,12,0,202,122,44,-16,12,0,202,122,44,-15,12,0,202,122,44,-14,12,0,202,122,44,-13,12,0,202,122,44,-12,12,0,202,122,44,-11,12,0,202,122,44,-10,12,0,202,122,44,-9,12,0,202,122,44,-8,12,0,202,122,44,-7,12,0,202,122,44,-6,12,0,202,122,44,-5,12,0,202,122,44,-4,12,0,202,122,44,-3,12,0,202,122,44,-2,12,0,202,122,44,-1,12,0,202,122,44,0,12,0,202,122,44,1,12,0,202,122,44,2,12,0,202,122,44,3,12,0,202,122,44,4,12,0,202,122,44,5,12,0,202,122,44,6,12,0,202,122,44,7,12,0,202,122,44,8,12,0,202,122,44,9,12,0,202,122,44,10,12,0,202,122,44,11,12,0,202,122,44,12,12,0,202,122,44,13,12,0,202,122,44,14,12,0,202,122,44,15,12,0,202,122,44,16,12,0,202,122,44,17,12,0,202,122,44,18,12,0,202,122,44,19,12,0,202,122,44,20,12,0,202,122,44,21,12,0,202,122,44,22,12,0,202,122,44,23,12,0,202,122,44,24,12,0,202,122,44,25,12,0,202,122,44,26,12,0,202,122,44,27,12,0,202,122,44,28,12,0,202,122,44,29,12,0,202,122,44,30,12,0,202,122,44,31,12,0,202,122,44,32,12,0,202,122,44,33,12,0,202,122,44,34,12,0,202,122,44,35,12,0,202,122,44,36,12,0,202,122,44,37,12,0,202,122,44,38,12,0,202,122,44,39,12,0,202,122,44,40,12,0,202,122,44,41,12,0,202,122,44,42,12,0,202,122,44,43,12,0,202,122,44,44,12,0,202,122,44,45,12,0,202,122,44,46,12,0,202,122,44,47,12,0,202,122,44,48,12,0,202,122,44,49,12,0,202,122,44,50,12,0,202,122,44,51,12,0,202,122,44,52,12,0,202,122,44,53,12,0,202,122,44,54,12,0,202,122,44,55,12,0,202,122,44,56,12,0,202,122,44,57,12,0,202,122,44,58,12,0,202,122,44,59,12,0,202,122,44,60,12,0,202,122,44,61,12,0,202,122,44,62,12,0,202,122,44,63,12,0,202,122,44,64,12,0,202,122,44,65,12,0,202,122,44,66,12,0,202,122,44,67,12,0,202,122,44,68,12,0,202,122,44,69,12,0,202,122,44,70,12,0,202,122,44,71,12,0,202,122,44,72,12,0,202,122,44,73,12,0,202,122,44,74,12,0,202,122,44,75,12,0,202,122,44,76,12,0,202,122,44,77,12,0,202,122,44,78,12,0,202,122,44,79,12,0,202,122,44,80,12,0,202,122,44,81,12,0,202,122,44,82,12,0,202,122,44,83,12,0,202,122,44,84,12,0,202,122,44,85,12,0,202,122,44,-40,13,0,202,122,44,-39,13,0,202,122,44,-38,13,0,202,122,44,-37,13,0,202,122,44,-36,13,0,202,122,44,-35,13,0,202,122,44,-34,13,0,202,122,44,-33,13,0,202,122,44,-32,13,0,202,122,44,-31,13,0,202,122,44,-30,13,0,202,122,44,-29,13,0,202,122,44,-28,13,0,202,122,44,-27,13,0,202,122,44,-26,13,0,202,122,44,-25,13,0,202,122,44,-24,13,0,202,122,44,-23,13,0,202,122,44,-22,13,0,202,122,44,-21,13,0,202,122,44,-20,13,0,202,122,44,-19,13,0,202,122,44,-18,13,0,202,122,44,-17,13,0,202,122,44,-16,13,0,202,122,44,-15,13,0,202,122,44,-14,13,0,202,122,44,-13,13,0,202,122,44,-12,13,0,202,122,44,-11,13,0,202,122,44,-10,13,0,202,122,44,-9,13,0,202,122,44,-8,13,0,202,122,44,-7,13,0,202,122,44,-6,13,0,202,122,44,-5,13,0,202,122,44,-4,13,0,202,122,44,-3,13,0,202,122,44,-2,13,0,202,122,44,-1,13,0,202,122,44,0,13,0,202,122,44,1,13,0,202,122,44,2,13,0,202,122,44,3,13,0,202,122,44,4,13,0,202,122,44,5,13,0,202,122,44,6,13,0,202,122,44,7,13,0,202,122,44,8,13,0,202,122,44,9,13,0,202,122,44,10,13,0,202,122,44,11,13,0,202,122,44,12,13,0,202,122,44,13,13,0,202,122,44,14,13,0,202,122,44,15,13,0,202,122,44,16,13,0,202,122,44,17,13,0,202,122,44,18,13,0,202,122,44,19,13,0,202,122,44,20,13,0,202,122,44,21,13,0,202,122,44,22,13,0,202,122,44,23,13,0,202,122,44,24,13,0,202,122,44,25,13,0,202,122,44,26,13,0,202,122,44,27,13,0,202,122,44,28,13,0,202,122,44,29,13,0,202,122,44,30,13,0,202,122,44,31,13,0,202,122,44,32,13,0,202,122,44,33,13,0,202,122,44,34,13,0,202,122,44,35,13,0,202,122,44,36,13,0,202,122,44,37,13,0,202,122,44,38,13,0,202,122,44,39,13,0,202,122,44,40,13,0,202,122,44,41,13,0,202,122,44,42,13,0,202,122,44,43,13,0,202,122,44,44,13,0,202,122,44,45,13,0,202,122,44,46,13,0,202,122,44,47,13,0,202,122,44,48,13,0,202,122,44,49,13,0,202,122,44,50,13,0,202,122,44,51,13,0,202,122,44,52,13,0,202,122,44,53,13,0,202,122,44,54,13,0,202,122,44,55,13,0,202,122,44,56,13,0,202,122,44,57,13,0,202,122,44,58,13,0,202,122,44,59,13,0,202,122,44,60,13,0,202,122,44,61,13,0,202,122,44,62,13,0,202,122,44,63,13,0,202,122,44,64,13,0,202,122,44,65,13,0,202,122,44,66,13,0,202,122,44,67,13,0,202,122,44,68,13,0,202,122,44,69,13,0,202,122,44,70,13,0,202,122,44,71,13,0,202,122,44,72,13,0,202,122,44,73,13,0,202,122,44,74,13,0,202,122,44,75,13,0,202,122,44,76,13,0,202,122,44,77,13,0,202,122,44,78,13,0,202,122,44,79,13,0,202,122,44,80,13,0,202,122,44,81,13,0,202,122,44,82,13,0,202,122,44,83,13,0,202,122,44,84,13,0,202,122,44,85,13,0,202,122,44,-40,14,0,202,122,44,-39,14,0,202,122,44,-38,14,0,202,122,44,-37,14,0,202,122,44,-36,14,0,202,122,44,-35,14,0,202,122,44,-34,14,0,202,122,44,-33,14,0,202,122,44,-32,14,0,202,122,44,-31,14,0,202,122,44,-30,14,0,202,122,44,-29,14,0,202,122,44,-28,14,0,202,122,44,-27,14,0,202,122,44,-26,14,0,202,122,44,-25,14,0,202,122,44,-24,14,0,202,122,44,-23,14,0,202,122,44,-22,14,0,202,122,44,-21,14,0,202,122,44,-20,14,0,202,122,44,-19,14,0,202,122,44,-18,14,0,202,122,44,-17,14,0,202,122,44,-16,14,0,202,122,44,-15,14,0,202,122,44,-14,14,0,202,122,44,-13,14,0,202,122,44,-12,14,0,202,122,44,-11,14,0,202,122,44,-10,14,0,202,122,44,-9,14,0,202,122,44,-8,14,0,202,122,44,-7,14,0,202,122,44,-6,14,0,202,122,44,-5,14,0,202,122,44,-4,14,0,202,122,44,-3,14,0,202,122,44,-2,14,0,202,122,44,-1,14,0,202,122,44,0,14,0,202,122,44,1,14,0,202,122,44,2,14,0,202,122,44,3,14,0,202,122,44,4,14,0,202,122,44,5,14,0,202,122,44,6,14,0,202,122,44,7,14,0,202,122,44,8,14,0,202,122,44,9,14,0,202,122,44,10,14,0,202,122,44,11,14,0,202,122,44,12,14,0,202,122,44,13,14,0,202,122,44,14,14,0,202,122,44,15,14,0,202,122,44,16,14,0,202,122,44,17,14,0,202,122,44,18,14,0,202,122,44,19,14,0,202,122,44,20,14,0,202,122,44,21,14,0,202,122,44,22,14,0,202,122,44,23,14,0,202,122,44,24,14,0,202,122,44,25,14,0,202,122,44,26,14,0,202,122,44,27,14,0,202,122,44,28,14,0,202,122,44,29,14,0,202,122,44,30,14,0,202,122,44,31,14,0,202,122,44,32,14,0,202,122,44,33,14,0,202,122,44,34,14,0,202,122,44,35,14,0,202,122,44,36,14,0,202,122,44,37,14,0,202,122,44,38,14,0,202,122,44,39,14,0,202,122,44,40,14,0,202,122,44,41,14,0,202,122,44,42,14,0,202,122,44,43,14,0,202,122,44,44,14,0,202,122,44,45,14,0,202,122,44,46,14,0,202,122,44,47,14,0,202,122,44,48,14,0,202,122,44,49,14,0,202,122,44,50,14,0,202,122,44,51,14,0,202,122,44,52,14,0,202,122,44,53,14,0,202,122,44,54,14,0,202,122,44,55,14,0,202,122,44,56,14,0,202,122,44,57,14,0,202,122,44,58,14,0,202,122,44,59,14,0,202,122,44,60,14,0,202,122,44,61,14,0,202,122,44,62,14,0,202,122,44,63,14,0,202,122,44,64,14,0,202,122,44,65,14,0,202,122,44,66,14,0,202,122,44,67,14,0,202,122,44,68,14,0,202,122,44,69,14,0,202,122,44,70,14,0,202,122,44,71,14,0,202,122,44,72,14,0,202,122,44,73,14,0,202,122,44,74,14,0,202,122,44,75,14,0,202,122,44,76,14,0,202,122,44,77,14,0,202,122,44,78,14,0,202,122,44,79,14,0,202,122,44,80,14,0,202,122,44,81,14,0,202,122,44,82,14,0,202,122,44,83,14,0,202,122,44,84,14,0,202,122,44,85,14,0,202,122,44,-40,15,0,202,122,44,-39,15,0,202,122,44,-38,15,0,202,122,44,-37,15,0,202,122,44,-36,15,0,202,122,44,-35,15,0,202,122,44,-34,15,0,202,122,44,-33,15,0,202,122,44,-32,15,0,202,122,44,-31,15,0,202,122,44,-30,15,0,202,122,44,-29,15,0,202,122,44,-28,15,0,202,122,44,-27,15,0,202,122,44,-26,15,0,202,122,44,-25,15,0,202,122,44,-24,15,0,202,122,44,-23,15,0,202,122,44,-22,15,0,202,122,44,-21,15,0,202,122,44,-20,15,0,202,122,44,-19,15,0,202,122,44,-18,15,0,202,122,44,-17,15,0,202,122,44,-16,15,0,202,122,44,-15,15,0,202,122,44,-14,15,0,202,122,44,-13,15,0,202,122,44,-12,15,0,202,122,44,-11,15,0,202,122,44,-10,15,0,202,122,44,-9,15,0,202,122,44,-8,15,0,202,122,44,-7,15,0,202,122,44,-6,15,0,202,122,44,-5,15,0,202,122,44,-4,15,0,202,122,44,-3,15,0,202,122,44,-2,15,0,202,122,44,-1,15,0,202,122,44,0,15,0,202,122,44,1,15,0,202,122,44,2,15,0,202,122,44,3,15,0,202,122,44,4,15,0,202,122,44,5,15,0,202,122,44,6,15,0,202,122,44,7,15,0,202,122,44,8,15,0,202,122,44,9,15,0,202,122,44,10,15,0,202,122,44,11,15,0,202,122,44,12,15,0,202,122,44,13,15,0,202,122,44,14,15,0,202,122,44,15,15,0,202,122,44,16,15,0,202,122,44,17,15,0,202,122,44,18,15,0,202,122,44,19,15,0,202,122,44,20,15,0,202,122,44,21,15,0,202,122,44,22,15,0,202,122,44,23,15,0,202,122,44,24,15,0,202,122,44,25,15,0,202,122,44,26,15,0,202,122,44,27,15,0,202,122,44,28,15,0,202,122,44,29,15,0,202,122,44,30,15,0,202,122,44,31,15,0,202,122,44,32,15,0,202,122,44,33,15,0,202,122,44,34,15,0,202,122,44,35,15,0,202,122,44,36,15,0,202,122,44,37,15,0,202,122,44,38,15,0,202,122,44,39,15,0,202,122,44,40,15,0,202,122,44,41,15,0,202,122,44,42,15,0,202,122,44,43,15,0,202,122,44,44,15,0,202,122,44,45,15,0,202,122,44,46,15,0,202,122,44,47,15,0,202,122,44,48,15,0,202,122,44,49,15,0,202,122,44,50,15,0,202,122,44,51,15,0,202,122,44,52,15,0,202,122,44,53,15,0,202,122,44,54,15,0,202,122,44,55,15,0,202,122,44,56,15,0,202,122,44,57,15,0,202,122,44,58,15,0,202,122,44,59,15,0,202,122,44,60,15,0,202,122,44,61,15,0,202,122,44,62,15,0,202,122,44,63,15,0,202,122,44,64,15,0,202,122,44,65,15,0,202,122,44,66,15,0,202,122,44,67,15,0,202,122,44,68,15,0,202,122,44,69,15,0,202,122,44,70,15,0,202,122,44,71,15,0,202,122,44,72,15,0,202,122,44,73,15,0,202,122,44,74,15,0,202,122,44,75,15,0,202,122,44,76,15,0,202,122,44,77,15,0,202,122,44,78,15,0,202,122,44,79,15,0,202,122,44,80,15,0,202,122,44,81,15,0,202,122,44,82,15,0,202,122,44,83,15,0,202,122,44,84,15,0,202,122,44,85,15,0,202,122,44,-40,16,0,202,122,44,-39,16,0,202,122,44,-38,16,0,202,122,44,-37,16,0,202,122,44,-36,16,0,202,122,44,-35,16,0,202,122,44,-34,16,0,202,122,44,-33,16,0,202,122,44,-32,16,0,202,122,44,-31,16,0,202,122,44,-30,16,0,202,122,44,-29,16,0,202,122,44,-28,16,0,202,122,44,-27,16,0,202,122,44,-26,16,0,202,122,44,-25,16,0,202,122,44,-24,16,0,202,122,44,-23,16,0,202,122,44,-22,16,0,202,122,44,-21,16,0,202,122,44,-20,16,0,202,122,44,-19,16,0,202,122,44,-18,16,0,202,122,44,-17,16,0,202,122,44,-16,16,0,202,122,44,-15,16,0,202,122,44,-14,16,0,202,122,44,-13,16,0,202,122,44,-12,16,0,202,122,44,-11,16,0,202,122,44,-10,16,0,202,122,44,-9,16,0,202,122,44,-8,16,0,202,122,44,-7,16,0,202,122,44,-6,16,0,202,122,44,-5,16,0,202,122,44,-4,16,0,202,122,44,-3,16,0,202,122,44,-2,16,0,202,122,44,-1,16,0,202,122,44,0,16,0,202,122,44,1,16,0,202,122,44,2,16,0,202,122,44,3,16,0,202,122,44,4,16,0,202,122,44,5,16,0,202,122,44,6,16,0,202,122,44,7,16,0,202,122,44,8,16,0,202,122,44,9,16,0,202,122,44,10,16,0,202,122,44,11,16,0,202,122,44,12,16,0,202,122,44,13,16,0,202,122,44,14,16,0,202,122,44,15,16,0,202,122,44,16,16,0,202,122,44,17,16,0,202,122,44,18,16,0,202,122,44,19,16,0,202,122,44,20,16,0,202,122,44,21,16,0,202,122,44,22,16,0,202,122,44,23,16,0,202,122,44,24,16,0,202,122,44,25,16,0,202,122,44,26,16,0,202,122,44,27,16,0,202,122,44,28,16,0,202,122,44,29,16,0,202,122,44,30,16,0,202,122,44,31,16,0,202,122,44,32,16,0,202,122,44,33,16,0,202,122,44,34,16,0,202,122,44,35,16,0,202,122,44,36,16,0,202,122,44,37,16,0,202,122,44,38,16,0,202,122,44,39,16,0,202,122,44,40,16,0,202,122,44,41,16,0,202,122,44,42,16,0,202,122,44,43,16,0,202,122,44,44,16,0,202,122,44,45,16,0,202,122,44,46,16,0,202,122,44,47,16,0,202,122,44,48,16,0,202,122,44,49,16,0,202,122,44,50,16,0,202,122,44,51,16,0,202,122,44,52,16,0,202,122,44,53,16,0,202,122,44,54,16,0,202,122,44,55,16,0,202,122,44,56,16,0,202,122,44,57,16,0,202,122,44,58,16,0,202,122,44,59,16,0,202,122,44,60,16,0,202,122,44,61,16,0,202,122,44,62,16,0,202,122,44,63,16,0,202,122,44,64,16,0,202,122,44,65,16,0,202,122,44,66,16,0,202,122,44,67,16,0,202,122,44,68,16,0,202,122,44,69,16,0,202,122,44,70,16,0,202,122,44,71,16,0,202,122,44,72,16,0,202,122,44,73,16,0,202,122,44,74,16,0,202,122,44,75,16,0,202,122,44,76,16,0,202,122,44,77,16,0,202,122,44,78,16,0,202,122,44,79,16,0,202,122,44,80,16,0,202,122,44,81,16,0,202,122,44,82,16,0,202,122,44,83,16,0,202,122,44,84,16,0,202,122,44,85,16,0,202,122,44,-40,17,0,202,122,44,-39,17,0,202,122,44,-38,17,0,202,122,44,-37,17,0,202,122,44,-36,17,0,202,122,44,-35,17,0,202,122,44,-34,17,0,202,122,44,-33,17,0,202,122,44,-32,17,0,202,122,44,-31,17,0,202,122,44,-30,17,0,202,122,44,-29,17,0,202,122,44,-28,17,0,202,122,44,-27,17,0,202,122,44,-26,17,0,202,122,44,-25,17,0,202,122,44,-24,17,0,202,122,44,-23,17,0,202,122,44,-22,17,0,202,122,44,-21,17,0,202,122,44,-20,17,0,202,122,44,-19,17,0,202,122,44,-18,17,0,202,122,44,-17,17,0,202,122,44,-16,17,0,202,122,44,-15,17,0,202,122,44,-14,17,0,202,122,44,-13,17,0,202,122,44,-12,17,0,202,122,44,-11,17,0,202,122,44,-10,17,0,202,122,44,-9,17,0,202,122,44,-8,17,0,202,122,44,-7,17,0,202,122,44,-6,17,0,202,122,44,-5,17,0,202,122,44,-4,17,0,202,122,44,-3,17,0,202,122,44,-2,17,0,202,122,44,-1,17,0,202,122,44,0,17,0,202,122,44,1,17,0,202,122,44,2,17,0,202,122,44,3,17,0,202,122,44,4,17,0,202,122,44,5,17,0,202,122,44,6,17,0,202,122,44,7,17,0,202,122,44,8,17,0,202,122,44,9,17,0,202,122,44,10,17,0,202,122,44,11,17,0,202,122,44,12,17,0,202,122,44,13,17,0,202,122,44,14,17,0,202,122,44,15,17,0,202,122,44,16,17,0,202,122,44,17,17,0,202,122,44,18,17,0,202,122,44,19,17,0,202,122,44,20,17,0,202,122,44,21,17,0,202,122,44,22,17,0,202,122,44,23,17,0,202,122,44,24,17,0,202,122,44,25,17,0,202,122,44,26,17,0,202,122,44,27,17,0,202,122,44,28,17,0,202,122,44,29,17,0,202,122,44,30,17,0,202,122,44,31,17,0,202,122,44,32,17,0,202,122,44,33,17,0,202,122,44,34,17,0,202,122,44,35,17,0,202,122,44,36,17,0,202,122,44,37,17,0,202,122,44,38,17,0,202,122,44,39,17,0,202,122,44,40,17,0,202,122,44,41,17,0,202,122,44,42,17,0,202,122,44,43,17,0,202,122,44,44,17,0,202,122,44,45,17,0,202,122,44,46,17,0,202,122,44,47,17,0,202,122,44,48,17,0,202,122,44,49,17,0,202,122,44,50,17,0,202,122,44,51,17,0,202,122,44,52,17,0,202,122,44,53,17,0,202,122,44,54,17,0,202,122,44,55,17,0,202,122,44,56,17,0,202,122,44,57,17,0,202,122,44,58,17,0,202,122,44,59,17,0,202,122,44,60,17,0,202,122,44,61,17,0,202,122,44,62,17,0,202,122,44,63,17,0,202,122,44,64,17,0,202,122,44,65,17,0,202,122,44,66,17,0,202,122,44,67,17,0,202,122,44,68,17,0,202,122,44,69,17,0,202,122,44,70,17,0,202,122,44,71,17,0,202,122,44,72,17,0,202,122,44,73,17,0,202,122,44,74,17,0,202,122,44,75,17,0,202,122,44,76,17,0,202,122,44,77,17,0,202,122,44,78,17,0,202,122,44,79,17,0,202,122,44,80,17,0,202,122,44,81,17,0,202,122,44,82,17,0,202,122,44,83,17,0,202,122,44,84,17,0,202,122,44,85,17,0,202,122,44,-40,18,0,202,122,44,-39,18,0,202,122,44,-38,18,0,202,122,44,-37,18,0,202,122,44,-36,18,0,202,122,44,-35,18,0,202,122,44,-34,18,0,202,122,44,-33,18,0,202,122,44,-32,18,0,202,122,44,-31,18,0,202,122,44,-30,18,0,202,122,44,-29,18,0,202,122,44,-28,18,0,202,122,44,-27,18,0,202,122,44,-26,18,0,202,122,44,-25,18,0,202,122,44,-24,18,0,202,122,44,-23,18,0,202,122,44,-22,18,0,202,122,44,-21,18,0,202,122,44,-20,18,0,202,122,44,-19,18,0,202,122,44,-18,18,0,202,122,44,-17,18,0,202,122,44,-16,18,0,202,122,44,-15,18,0,202,122,44,-14,18,0,202,122,44,-13,18,0,202,122,44,-12,18,0,202,122,44,-11,18,0,202,122,44,-10,18,0,202,122,44,-9,18,0,202,122,44,-8,18,0,202,122,44,-7,18,0,202,122,44,-6,18,0,202,122,44,-5,18,0,202,122,44,-4,18,0,202,122,44,-3,18,0,202,122,44,-2,18,0,202,122,44,-1,18,0,202,122,44,0,18,0,202,122,44,1,18,0,202,122,44,2,18,0,202,122,44,3,18,0,202,122,44,4,18,0,202,122,44,5,18,0,202,122,44,6,18,0,202,122,44,7,18,0,202,122,44,8,18,0,202,122,44,9,18,0,202,122,44,10,18,0,202,122,44,11,18,0,202,122,44,12,18,0,202,122,44,13,18,0,202,122,44,14,18,0,202,122,44,15,18,0,202,122,44,16,18,0,202,122,44,17,18,0,202,122,44,18,18,0,202,122,44,19,18,0,202,122,44,20,18,0,202,122,44,21,18,0,202,122,44,22,18,0,202,122,44,23,18,0,202,122,44,24,18,0,202,122,44,25,18,0,202,122,44,26,18,0,202,122,44,27,18,0,202,122,44,28,18,0,202,122,44,29,18,0,202,122,44,30,18,0,202,122,44,31,18,0,202,122,44,32,18,0,202,122,44,33,18,0,202,122,44,34,18,0,202,122,44,35,18,0,202,122,44,36,18,0,202,122,44,37,18,0,202,122,44,38,18,0,202,122,44,39,18,0,202,122,44,40,18,0,202,122,44,41,18,0,202,122,44,42,18,0,202,122,44,43,18,0,202,122,44,44,18,0,202,122,44,45,18,0,202,122,44,46,18,0,202,122,44,47,18,0,202,122,44,48,18,0,202,122,44,49,18,0,202,122,44,50,18,0,202,122,44,51,18,0,202,122,44,52,18,0,202,122,44,53,18,0,202,122,44,54,18,0,202,122,44,55,18,0,202,122,44,56,18,0,202,122,44,57,18,0,202,122,44,58,18,0,202,122,44,59,18,0,202,122,44,60,18,0,202,122,44,61,18,0,202,122,44,62,18,0,202,122,44,63,18,0,202,122,44,64,18,0,202,122,44,65,18,0,202,122,44,66,18,0,202,122,44,67,18,0,202,122,44,68,18,0,202,122,44,69,18,0,202,122,44,70,18,0,202,122,44,71,18,0,202,122,44,72,18,0,202,122,44,73,18,0,202,122,44,74,18,0,202,122,44,75,18,0,202,122,44,76,18,0,202,122,44,77,18,0,202,122,44,78,18,0,202,122,44,79,18,0,202,122,44,80,18,0,202,122,44,81,18,0,202,122,44,82,18,0,202,122,44,83,18,0,202,122,44,84,18,0,202,122,44,85,18,0,202,122,44,-40,19,0,202,122,44,-39,19,0,202,122,44,-38,19,0,202,122,44,-37,19,0,202,122,44,-36,19,0,202,122,44,-35,19,0,202,122,44,-34,19,0,202,122,44,-33,19,0,202,122,44,-32,19,0,202,122,44,-31,19,0,202,122,44,-30,19,0,202,122,44,-29,19,0,202,122,44,-28,19,0,202,122,44,-27,19,0,202,122,44,-26,19,0,202,122,44,-25,19,0,202,122,44,-24,19,0,202,122,44,-23,19,0,202,122,44,-22,19,0,202,122,44,-21,19,0,202,122,44,-20,19,0,202,122,44,-19,19,0,202,122,44,-18,19,0,202,122,44,-17,19,0,202,122,44,-16,19,0,202,122,44,-15,19,0,202,122,44,-14,19,0,202,122,44,-13,19,0,202,122,44,-12,19,0,202,122,44,-11,19,0,202,122,44,-10,19,0,202,122,44,-9,19,0,202,122,44,-8,19,0,202,122,44,-7,19,0,202,122,44,-6,19,0,202,122,44,-5,19,0,202,122,44,-4,19,0,202,122,44,-3,19,0,202,122,44,-2,19,0,202,122,44,-1,19,0,202,122,44,0,19,0,202,122,44,1,19,0,202,122,44,2,19,0,202,122,44,3,19,0,202,122,44,4,19,0,202,122,44,5,19,0,202,122,44,6,19,0,202,122,44,7,19,0,202,122,44,8,19,0,202,122,44,9,19,0,202,122,44,10,19,0,202,122,44,11,19,0,202,122,44,12,19,0,202,122,44,13,19,0,202,122,44,14,19,0,202,122,44,15,19,0,202,122,44,16,19,0,202,122,44,17,19,0,202,122,44,18,19,0,202,122,44,19,19,0,202,122,44,20,19,0,202,122,44,21,19,0,202,122,44,22,19,0,202,122,44,23,19,0,202,122,44,24,19,0,202,122,44,25,19,0,202,122,44,26,19,0,202,122,44,27,19,0,202,122,44,28,19,0,202,122,44,29,19,0,202,122,44,30,19,0,202,122,44,31,19,0,202,122,44,32,19,0,202,122,44,33,19,0,202,122,44,34,19,0,202,122,44,35,19,0,202,122,44,36,19,0,202,122,44,37,19,0,202,122,44,38,19,0,202,122,44,39,19,0,202,122,44,40,19,0,202,122,44,41,19,0,202,122,44,42,19,0,202,122,44,43,19,0,202,122,44,44,19,0,202,122,44,45,19,0,202,122,44,46,19,0,202,122,44,47,19,0,202,122,44,48,19,0,202,122,44,49,19,0,202,122,44,50,19,0,202,122,44,51,19,0,202,122,44,52,19,0,202,122,44,53,19,0,202,122,44,54,19,0,202,122,44,55,19,0,202,122,44,56,19,0,202,122,44,57,19,0,202,122,44,58,19,0,202,122,44,59,19,0,202,122,44,60,19,0,202,122,44,61,19,0,202,122,44,62,19,0,202,122,44,63,19,0,202,122,44,64,19,0,202,122,44,65,19,0,202,122,44,66,19,0,202,122,44,67,19,0,202,122,44,68,19,0,202,122,44,69,19,0,202,122,44,70,19,0,202,122,44,71,19,0,202,122,44,72,19,0,202,122,44,73,19,0,202,122,44,74,19,0,202,122,44,75,19,0,202,122,44,76,19,0,202,122,44,77,19,0,202,122,44,78,19,0,202,122,44,79,19,0,202,122,44,80,19,0,202,122,44,81,19,0,202,122,44,82,19,0,202,122,44,83,19,0,202,122,44,84,19,0,202,122,44,85,19,0,202,122,44,-40,20,0,202,122,44,-39,20,0,202,122,44,-38,20,0,202,122,44,-37,20,0,202,122,44,-36,20,0,202,122,44,-35,20,0,202,122,44,-34,20,0,202,122,44,-33,20,0,202,122,44,-32,20,0,202,122,44,-31,20,0,202,122,44,-30,20,0,202,122,44,-29,20,0,202,122,44,-28,20,0,202,122,44,-27,20,0,202,122,44,-26,20,0,202,122,44,-25,20,0,202,122,44,-24,20,0,202,122,44,-23,20,0,202,122,44,-22,20,0,202,122,44,-21,20,0,202,122,44,-20,20,0,202,122,44,-19,20,0,202,122,44,-18,20,0,202,122,44,-17,20,0,202,122,44,-16,20,0,202,122,44,-15,20,0,202,122,44,-14,20,0,202,122,44,-13,20,0,202,122,44,-12,20,0,202,122,44,-11,20,0,202,122,44,-10,20,0,202,122,44,-9,20,0,202,122,44,-8,20,0,202,122,44,-7,20,0,202,122,44,-6,20,0,202,122,44,-5,20,0,202,122,44,-4,20,0,202,122,44,-3,20,0,202,122,44,-2,20,0,202,122,44,-1,20,0,202,122,44,0,20,0,202,122,44,1,20,0,202,122,44,2,20,0,202,122,44,3,20,0,202,122,44,4,20,0,202,122,44,5,20,0,202,122,44,6,20,0,202,122,44,7,20,0,202,122,44,8,20,0,202,122,44,9,20,0,202,122,44,10,20,0,202,122,44,11,20,0,202,122,44,12,20,0,202,122,44,13,20,0,202,122,44,14,20,0,202,122,44,15,20,0,202,122,44,16,20,0,202,122,44,17,20,0,202,122,44,18,20,0,202,122,44,19,20,0,202,122,44,20,20,0,202,122,44,21,20,0,202,122,44,22,20,0,202,122,44,23,20,0,202,122,44,24,20,0,202,122,44,25,20,0,202,122,44,26,20,0,202,122,44,27,20,0,202,122,44,28,20,0,202,122,44,29,20,0,202,122,44,30,20,0,202,122,44,31,20,0,202,122,44,32,20,0,202,122,44,33,20,0,202,122,44,34,20,0,202,122,44,35,20,0,202,122,44,36,20,0,202,122,44,37,20,0,202,122,44,38,20,0,202,122,44,39,20,0,202,122,44,40,20,0,202,122,44,41,20,0,202,122,44,42,20,0,202,122,44,43,20,0,202,122,44,44,20,0,202,122,44,45,20,0,202,122,44,46,20,0,202,122,44,47,20,0,202,122,44,48,20,0,202,122,44,49,20,0,202,122,44,50,20,0,202,122,44,51,20,0,202,122,44,52,20,0,202,122,44,53,20,0,202,122,44,54,20,0,202,122,44,55,20,0,202,122,44,56,20,0,202,122,44,57,20,0,202,122,44,58,20,0,202,122,44,59,20,0,202,122,44,60,20,0,202,122,44,61,20,0,202,122,44,62,20,0,202,122,44,63,20,0,202,122,44,64,20,0,202,122,44,65,20,0,202,122,44,66,20,0,202,122,44,67,20,0,202,122,44,68,20,0,202,122,44,69,20,0,202,122,44,70,20,0,202,122,44,71,20,0,202,122,44,72,20,0,202,122,44,73,20,0,202,122,44,74,20,0,202,122,44,75,20,0,202,122,44,76,20,0,202,122,44,77,20,0,202,122,44,78,20,0,202,122,44,79,20,0,202,122,44,80,20,0,202,122,44,81,20,0,202,122,44,82,20,0,202,122,44,83,20,0,202,122,44,84,20,0,202,122,44,85,20,0,202,122,44,-40,21,0,202,122,44,-39,21,0,202,122,44,-38,21,0,202,122,44,-37,21,0,202,122,44,-36,21,0,202,122,44,-35,21,0,202,122,44,-34,21,0,202,122,44,-33,21,0,202,122,44,-32,21,0,202,122,44,-31,21,0,202,122,44,-30,21,0,202,122,44,-29,21,0,202,122,44,-28,21,0,202,122,44,-27,21,0,202,122,44,-26,21,0,202,122,44,-25,21,0,202,122,44,-24,21,0,202,122,44,-23,21,0,202,122,44,-22,21,0,202,122,44,-21,21,0,202,122,44,-20,21,0,202,122,44,-19,21,0,202,122,44,-18,21,0,202,122,44,-17,21,0,202,122,44,-16,21,0,202,122,44,-15,21,0,202,122,44,-14,21,0,202,122,44,-13,21,0,202,122,44,-12,21,0,202,122,44,-11,21,0,202,122,44,-10,21,0,202,122,44,-9,21,0,202,122,44,-8,21,0,202,122,44,-7,21,0,202,122,44,-6,21,0,202,122,44,-5,21,0,202,122,44,-4,21,0,202,122,44,-3,21,0,202,122,44,-2,21,0,202,122,44,-1,21,0,202,122,44,0,21,0,202,122,44,1,21,0,202,122,44,2,21,0,202,122,44,3,21,0,202,122,44,4,21,0,202,122,44,5,21,0,202,122,44,6,21,0,202,122,44,7,21,0,202,122,44,8,21,0,202,122,44,9,21,0,202,122,44,10,21,0,202,122,44,11,21,0,202,122,44,12,21,0,202,122,44,13,21,0,202,122,44,14,21,0,202,122,44,15,21,0,202,122,44,16,21,0,202,122,44,17,21,0,202,122,44,18,21,0,202,122,44,19,21,0,202,122,44,20,21,0,202,122,44,21,21,0,202,122,44,22,21,0,202,122,44,23,21,0,202,122,44,24,21,0,202,122,44,25,21,0,202,122,44,26,21,0,202,122,44,27,21,0,202,122,44,28,21,0,202,122,44,29,21,0,202,122,44,30,21,0,202,122,44,31,21,0,202,122,44,32,21,0,202,122,44,33,21,0,202,122,44,34,21,0,202,122,44,35,21,0,202,122,44,36,21,0,202,122,44,37,21,0,202,122,44,38,21,0,202,122,44,39,21,0,202,122,44,40,21,0,202,122,44,41,21,0,202,122,44,42,21,0,202,122,44,43,21,0,202,122,44,44,21,0,202,122,44,45,21,0,202,122,44,46,21,0,202,122,44,47,21,0,202,122,44,48,21,0,202,122,44,49,21,0,202,122,44,50,21,0,202,122,44,51,21,0,202,122,44,52,21,0,202,122,44,53,21,0,202,122,44,54,21,0,202,122,44,55,21,0,202,122,44,56,21,0,202,122,44,57,21,0,202,122,44,58,21,0,202,122,44,59,21,0,202,122,44,60,21,0,202,122,44,61,21,0,202,122,44,62,21,0,202,122,44,63,21,0,202,122,44,64,21,0,202,122,44,65,21,0,202,122,44,66,21,0,202,122,44,67,21,0,202,122,44,68,21,0,202,122,44,69,21,0,202,122,44,70,21,0,202,122,44,71,21,0,202,122,44,72,21,0,202,122,44,73,21,0,202,122,44,74,21,0,202,122,44,75,21,0,202,122,44,76,21,0,202,122,44,77,21,0,202,122,44,78,21,0,202,122,44,79,21,0,202,122,44,80,21,0,202,122,44,81,21,0,202,122,44,82,21,0,202,122,44,83,21,0,202,122,44,84,21,0,202,122,44,85,21,0,202,122,44,-40,22,0,202,122,44,-39,22,0,202,122,44,-38,22,0,202,122,44,-37,22,0,202,122,44,-36,22,0,202,122,44,-35,22,0,202,122,44,-34,22,0,202,122,44,-33,22,0,202,122,44,-32,22,0,202,122,44,-31,22,0,202,122,44,-30,22,0,202,122,44,-29,22,0,202,122,44,-28,22,0,202,122,44,-27,22,0,202,122,44,-26,22,0,202,122,44,-25,22,0,202,122,44,-24,22,0,202,122,44,-23,22,0,202,122,44,-22,22,0,202,122,44,-21,22,0,202,122,44,-20,22,0,202,122,44,-19,22,0,202,122,44,-18,22,0,202,122,44,-17,22,0,202,122,44,-16,22,0,202,122,44,-15,22,0,202,122,44,-14,22,0,202,122,44,-13,22,0,202,122,44,-12,22,0,202,122,44,-11,22,0,202,122,44,-10,22,0,202,122,44,-9,22,0,202,122,44,-8,22,0,202,122,44,-7,22,0,202,122,44,-6,22,0,202,122,44,-5,22,0,202,122,44,-4,22,0,202,122,44,-3,22,0,202,122,44,-2,22,0,202,122,44,-1,22,0,202,122,44,0,22,0,202,122,44,1,22,0,202,122,44,2,22,0,202,122,44,3,22,0,202,122,44,4,22,0,202,122,44,5,22,0,202,122,44,6,22,0,202,122,44,7,22,0,202,122,44,8,22,0,202,122,44,9,22,0,202,122,44,10,22,0,202,122,44,11,22,0,202,122,44,12,22,0,202,122,44,13,22,0,202,122,44,14,22,0,202,122,44,15,22,0,202,122,44,16,22,0,202,122,44,17,22,0,202,122,44,18,22,0,202,122,44,19,22,0,202,122,44,20,22,0,202,122,44,21,22,0,202,122,44,22,22,0,202,122,44,23,22,0,202,122,44,24,22,0,202,122,44,25,22,0,202,122,44,26,22,0,202,122,44,27,22,0,202,122,44,28,22,0,202,122,44,29,22,0,202,122,44,30,22,0,202,122,44,31,22,0,202,122,44,32,22,0,202,122,44,33,22,0,202,122,44,34,22,0,202,122,44,35,22,0,202,122,44,36,22,0,202,122,44,37,22,0,202,122,44,38,22,0,202,122,44,39,22,0,202,122,44,40,22,0,202,122,44,41,22,0,202,122,44,42,22,0,202,122,44,43,22,0,202,122,44,44,22,0,202,122,44,45,22,0,202,122,44,46,22,0,202,122,44,47,22,0,202,122,44,48,22,0,202,122,44,49,22,0,202,122,44,50,22,0,202,122,44,51,22,0,202,122,44,52,22,0,202,122,44,53,22,0,202,122,44,54,22,0,202,122,44,55,22,0,202,122,44,56,22,0,202,122,44,57,22,0,202,122,44,58,22,0,202,122,44,59,22,0,202,122,44,60,22,0,202,122,44,61,22,0,202,122,44,62,22,0,202,122,44,63,22,0,202,122,44,64,22,0,202,122,44,65,22,0,202,122,44,66,22,0,202,122,44,67,22,0,202,122,44,68,22,0,202,122,44,69,22,0,202,122,44,70,22,0,202,122,44,71,22,0,202,122,44,72,22,0,202,122,44,73,22,0,202,122,44,74,22,0,202,122,44,75,22,0,202,122,44,76,22,0,202,122,44,77,22,0,202,122,44,78,22,0,202,122,44,79,22,0,202,122,44,80,22,0,202,122,44,81,22,0,202,122,44,82,22,0,202,122,44,83,22,0,202,122,44,84,22,0,202,122,44,85,22,0,202,122,44,-40,23,0,202,122,44,-39,23,0,202,122,44,-38,23,0,202,122,44,-37,23,0,202,122,44,-36,23,0,202,122,44,-35,23,0,202,122,44,-34,23,0,202,122,44,-33,23,0,202,122,44,-32,23,0,202,122,44,-31,23,0,202,122,44,-30,23,0,202,122,44,-29,23,0,202,122,44,-28,23,0,202,122,44,-27,23,0,202,122,44,-26,23,0,202,122,44,-25,23,0,202,122,44,-24,23,0,202,122,44,-23,23,0,202,122,44,-22,23,0,202,122,44,-21,23,0,202,122,44,-20,23,0,202,122,44,-19,23,0,202,122,44,-18,23,0,202,122,44,-17,23,0,202,122,44,-16,23,0,202,122,44,-15,23,0,202,122,44,-14,23,0,202,122,44,-13,23,0,202,122,44,-12,23,0,202,122,44,-11,23,0,202,122,44,-10,23,0,202,122,44,-9,23,0,202,122,44,-8,23,0,202,122,44,-7,23,0,202,122,44,-6,23,0,202,122,44,-5,23,0,202,122,44,-4,23,0,202,122,44,-3,23,0,202,122,44,-2,23,0,202,122,44,-1,23,0,202,122,44,0,23,0,202,122,44,1,23,0,202,122,44,2,23,0,202,122,44,3,23,0,202,122,44,4,23,0,202,122,44,5,23,0,202,122,44,6,23,0,202,122,44,7,23,0,202,122,44,8,23,0,202,122,44,9,23,0,202,122,44,10,23,0,202,122,44,11,23,0,202,122,44,12,23,0,202,122,44,13,23,0,202,122,44,14,23,0,202,122,44,15,23,0,202,122,44,16,23,0,202,122,44,17,23,0,202,122,44,18,23,0,202,122,44,19,23,0,202,122,44,20,23,0,202,122,44,21,23,0,202,122,44,22,23,0,202,122,44,23,23,0,202,122,44,24,23,0,202,122,44,25,23,0,202,122,44,26,23,0,202,122,44,27,23,0,202,122,44,28,23,0,202,122,44,29,23,0,202,122,44,30,23,0,202,122,44,31,23,0,202,122,44,32,23,0,202,122,44,33,23,0,202,122,44,34,23,0,202,122,44,35,23,0,202,122,44,36,23,0,202,122,44,37,23,0,202,122,44,38,23,0,202,122,44,39,23,0,202,122,44,40,23,0,202,122,44,41,23,0,202,122,44,42,23,0,202,122,44,43,23,0,202,122,44,44,23,0,202,122,44,45,23,0,202,122,44,46,23,0,202,122,44,47,23,0,202,122,44,48,23,0,202,122,44,49,23,0,202,122,44,50,23,0,202,122,44,51,23,0,202,122,44,52,23,0,202,122,44,53,23,0,202,122,44,54,23,0,202,122,44,55,23,0,202,122,44,56,23,0,202,122,44,57,23,0,202,122,44,58,23,0,202,122,44,59,23,0,202,122,44,60,23,0,202,122,44,61,23,0,202,122,44,62,23,0,202,122,44,63,23,0,202,122,44,64,23,0,202,122,44,65,23,0,202,122,44,66,23,0,202,122,44,67,23,0,202,122,44,68,23,0,202,122,44,69,23,0,202,122,44,70,23,0,202,122,44,71,23,0,202,122,44,72,23,0,202,122,44,73,23,0,202,122,44,74,23,0,202,122,44,75,23,0,202,122,44,76,23,0,202,122,44,77,23,0,202,122,44,78,23,0,202,122,44,79,23,0,202,122,44,80,23,0,202,122,44,81,23,0,202,122,44,82,23,0,202,122,44,83,23,0,202,122,44,84,23,0,202,122,44,85,23,0,202,122,44,-40,24,0,202,122,44,-39,24,0,202,122,44,-38,24,0,202,122,44,-37,24,0,202,122,44,-36,24,0,202,122,44,-35,24,0,202,122,44,-34,24,0,202,122,44,-33,24,0,202,122,44,-32,24,0,202,122,44,-31,24,0,202,122,44,-30,24,0,202,122,44,-29,24,0,202,122,44,-28,24,0,202,122,44,-27,24,0,202,122,44,-26,24,0,202,122,44,-25,24,0,202,122,44,-24,24,0,202,122,44,-23,24,0,202,122,44,-22,24,0,202,122,44,-21,24,0,202,122,44,-20,24,0,202,122,44,-19,24,0,202,122,44,-18,24,0,202,122,44,-17,24,0,202,122,44,-16,24,0,202,122,44,-15,24,0,202,122,44,-14,24,0,202,122,44,-13,24,0,202,122,44,-12,24,0,202,122,44,-11,24,0,202,122,44,-10,24,0,202,122,44,-9,24,0,202,122,44,-8,24,0,202,122,44,-7,24,0,202,122,44,-6,24,0,202,122,44,-5,24,0,202,122,44,-4,24,0,202,122,44,-3,24,0,202,122,44,-2,24,0,202,122,44,-1,24,0,202,122,44,0,24,0,202,122,44,1,24,0,202,122,44,2,24,0,202,122,44,3,24,0,202,122,44,4,24,0,202,122,44,5,24,0,202,122,44,6,24,0,202,122,44,7,24,0,202,122,44,8,24,0,202,122,44,9,24,0,202,122,44,10,24,0,202,122,44,11,24,0,202,122,44,12,24,0,202,122,44,13,24,0,202,122,44,14,24,0,202,122,44,15,24,0,202,122,44,16,24,0,202,122,44,17,24,0,202,122,44,18,24,0,202,122,44,19,24,0,202,122,44,20,24,0,202,122,44,21,24,0,202,122,44,22,24,0,202,122,44,23,24,0,202,122,44,24,24,0,202,122,44,25,24,0,202,122,44,26,24,0,202,122,44,27,24,0,202,122,44,28,24,0,202,122,44,29,24,0,202,122,44,30,24,0,202,122,44,31,24,0,202,122,44,32,24,0,202,122,44,33,24,0,202,122,44,34,24,0,202,122,44,35,24,0,202,122,44,36,24,0,202,122,44,37,24,0,202,122,44,38,24,0,202,122,44,39,24,0,202,122,44,40,24,0,202,122,44,41,24,0,202,122,44,42,24,0,202,122,44,43,24,0,202,122,44,44,24,0,202,122,44,45,24,0,202,122,44,46,24,0,202,122,44,47,24,0,202,122,44,48,24,0,202,122,44,49,24,0,202,122,44,50,24,0,202,122,44,51,24,0,202,122,44,52,24,0,202,122,44,53,24,0,202,122,44,54,24,0,202,122,44,55,24,0,202,122,44,56,24,0,202,122,44,57,24,0,202,122,44,58,24,0,202,122,44,59,24,0,202,122,44,60,24,0,202,122,44,61,24,0,202,122,44,62,24,0,202,122,44,63,24,0,202,122,44,64,24,0,202,122,44,65,24,0,202,122,44,66,24,0,202,122,44,67,24,0,202,122,44,68,24,0,202,122,44,69,24,0,202,122,44,70,24,0,202,122,44,71,24,0,202,122,44,72,24,0,202,122,44,73,24,0,202,122,44,74,24,0,202,122,44,75,24,0,202,122,44,76,24,0,202,122,44,77,24,0,202,122,44,78,24,0,202,122,44,79,24,0,202,122,44,80,24,0,202,122,44,81,24,0,202,122,44,82,24,0,202,122,44,83,24,0,202,122,44,84,24,0,202,122,44,85,24,0,202,122,44,-40,25,0,202,122,44,-39,25,0,202,122,44,-38,25,0,202,122,44,-37,25,0,202,122,44,-36,25,0,202,122,44,-35,25,0,202,122,44,-34,25,0,202,122,44,-33,25,0,202,122,44,-32,25,0,202,122,44,-31,25,0,202,122,44,-30,25,0,202,122,44,-29,25,0,202,122,44,-28,25,0,202,122,44,-27,25,0,202,122,44,-26,25,0,202,122,44,-25,25,0,202,122,44,-24,25,0,202,122,44,-23,25,0,202,122,44,-22,25,0,202,122,44,-21,25,0,202,122,44,-20,25,0,202,122,44,-19,25,0,202,122,44,-18,25,0,202,122,44,-17,25,0,202,122,44,-16,25,0,202,122,44,-15,25,0,202,122,44,-14,25,0,202,122,44,-13,25,0,202,122,44,-12,25,0,202,122,44,-11,25,0,202,122,44,-10,25,0,202,122,44,-9,25,0,202,122,44,-8,25,0,202,122,44,-7,25,0,202,122,44,-6,25,0,202,122,44,-5,25,0,202,122,44,-4,25,0,202,122,44,-3,25,0,202,122,44,-2,25,0,202,122,44,-1,25,0,202,122,44,0,25,0,202,122,44,1,25,0,202,122,44,2,25,0,202,122,44,3,25,0,202,122,44,4,25,0,202,122,44,5,25,0,202,122,44,6,25,0,202,122,44,7,25,0,202,122,44,8,25,0,202,122,44,9,25,0,202,122,44,10,25,0,202,122,44,11,25,0,202,122,44,12,25,0,202,122,44,13,25,0,202,122,44,14,25,0,202,122,44,15,25,0,202,122,44,16,25,0,202,122,44,17,25,0,202,122,44,18,25,0,202,122,44,19,25,0,202,122,44,20,25,0,202,122,44,21,25,0,202,122,44,22,25,0,202,122,44,23,25,0,202,122,44,24,25,0,202,122,44,25,25,0,202,122,44,26,25,0,202,122,44,27,25,0,202,122,44,28,25,0,202,122,44,29,25,0,202,122,44,30,25,0,202,122,44,31,25,0,202,122,44,32,25,0,202,122,44,33,25,0,202,122,44,34,25,0,202,122,44,35,25,0,202,122,44,36,25,0,202,122,44,37,25,0,202,122,44,38,25,0,202,122,44,39,25,0,202,122,44,40,25,0,202,122,44,41,25,0,202,122,44,42,25,0,202,122,44,43,25,0,202,122,44,44,25,0,202,122,44,45,25,0,202,122,44,46,25,0,202,122,44,47,25,0,202,122,44,48,25,0,202,122,44,49,25,0,202,122,44,50,25,0,202,122,44,51,25,0,202,122,44,52,25,0,202,122,44,53,25,0,202,122,44,54,25,0,202,122,44,55,25,0,202,122,44,56,25,0,202,122,44,57,25,0,202,122,44,58,25,0,202,122,44,59,25,0,202,122,44,60,25,0,202,122,44,61,25,0,202,122,44,62,25,0,202,122,44,63,25,0,202,122,44,64,25,0,202,122,44,65,25,0,202,122,44,66,25,0,202,122,44,67,25,0,202,122,44,68,25,0,202,122,44,69,25,0,202,122,44,70,25,0,202,122,44,71,25,0,202,122,44,72,25,0,202,122,44,73,25,0,202,122,44,74,25,0,202,122,44,75,25,0,202,122,44,76,25,0,202,122,44,77,25,0,202,122,44,78,25,0,202,122,44,79,25,0,202,122,44,80,25,0,202,122,44,81,25,0,202,122,44,82,25,0,202,122,44,83,25,0,202,122,44,84,25,0,202,122,44,85,25,0,202,122,44,-40,26,0,202,122,44,-39,26,0,202,122,44,-38,26,0,202,122,44,-37,26,0,202,122,44,-36,26,0,202,122,44,-35,26,0,202,122,44,-34,26,0,202,122,44,-33,26,0,202,122,44,-32,26,0,202,122,44,-31,26,0,202,122,44,-30,26,0,202,122,44,-29,26,0,202,122,44,-28,26,0,202,122,44,-27,26,0,202,122,44,-26,26,0,202,122,44,-25,26,0,202,122,44,-24,26,0,202,122,44,-23,26,0,202,122,44,-22,26,0,202,122,44,-21,26,0,202,122,44,-20,26,0,202,122,44,-19,26,0,202,122,44,-18,26,0,202,122,44,-17,26,0,202,122,44,-16,26,0,202,122,44,-15,26,0,202,122,44,-14,26,0,202,122,44,-13,26,0,202,122,44,-12,26,0,202,122,44,-11,26,0,202,122,44,-10,26,0,202,122,44,-9,26,0,202,122,44,-8,26,0,202,122,44,-7,26,0,202,122,44,-6,26,0,202,122,44,-5,26,0,202,122,44,-4,26,0,202,122,44,-3,26,0,202,122,44,-2,26,0,202,122,44,-1,26,0,202,122,44,0,26,0,202,122,44,1,26,0,202,122,44,2,26,0,202,122,44,3,26,0,202,122,44,4,26,0,202,122,44,5,26,0,202,122,44,6,26,0,202,122,44,7,26,0,202,122,44,8,26,0,202,122,44,9,26,0,202,122,44,10,26,0,202,122,44,11,26,0,202,122,44,12,26,0,202,122,44,13,26,0,202,122,44,14,26,0,202,122,44,15,26,0,202,122,44,16,26,0,202,122,44,17,26,0,202,122,44,18,26,0,202,122,44,19,26,0,202,122,44,20,26,0,202,122,44,21,26,0,202,122,44,22,26,0,202,122,44,23,26,0,202,122,44,24,26,0,202,122,44,25,26,0,202,122,44,26,26,0,202,122,44,27,26,0,202,122,44,28,26,0,202,122,44,29,26,0,202,122,44,30,26,0,202,122,44,31,26,0,202,122,44,32,26,0,202,122,44,33,26,0,202,122,44,34,26,0,202,122,44,35,26,0,202,122,44,36,26,0,202,122,44,37,26,0,202,122,44,38,26,0,202,122,44,39,26,0,202,122,44,40,26,0,202,122,44,41,26,0,202,122,44,42,26,0,202,122,44,43,26,0,202,122,44,44,26,0,202,122,44,45,26,0,202,122,44,46,26,0,202,122,44,47,26,0,202,122,44,48,26,0,202,122,44,49,26,0,202,122,44,50,26,0,202,122,44,51,26,0,202,122,44,52,26,0,202,122,44,53,26,0,202,122,44,54,26,0,202,122,44,55,26,0,202,122,44,56,26,0,202,122,44,57,26,0,202,122,44,58,26,0,202,122,44,59,26,0,202,122,44,60,26,0,202,122,44,61,26,0,202,122,44,62,26,0,202,122,44,63,26,0,202,122,44,64,26,0,202,122,44,65,26,0,202,122,44,66,26,0,202,122,44,67,26,0,202,122,44,68,26,0,202,122,44,69,26,0,202,122,44,70,26,0,202,122,44,71,26,0,202,122,44,72,26,0,202,122,44,73,26,0,202,122,44,74,26,0,202,122,44,75,26,0,202,122,44,76,26,0,202,122,44,77,26,0,202,122,44,78,26,0,202,122,44,79,26,0,202,122,44,80,26,0,202,122,44,81,26,0,202,122,44,82,26,0,202,122,44,83,26,0,202,122,44,84,26,0,202,122,44,85,26,0,202,122,44,-40,27,0,202,122,44,-39,27,0,202,122,44,-38,27,0,202,122,44,-37,27,0,202,122,44,-36,27,0,202,122,44,-35,27,0,202,122,44,-34,27,0,202,122,44,-33,27,0,202,122,44,-32,27,0,202,122,44,-31,27,0,202,122,44,-30,27,0,202,122,44,-29,27,0,202,122,44,-28,27,0,202,122,44,-27,27,0,202,122,44,-26,27,0,202,122,44,-25,27,0,202,122,44,-24,27,0,202,122,44,-23,27,0,202,122,44,-22,27,0,202,122,44,-21,27,0,202,122,44,-20,27,0,202,122,44,-19,27,0,202,122,44,-18,27,0,202,122,44,-17,27,0,202,122,44,-16,27,0,202,122,44,-15,27,0,202,122,44,-14,27,0,202,122,44,-13,27,0,202,122,44,-12,27,0,202,122,44,-11,27,0,202,122,44,-10,27,0,202,122,44,-9,27,0,202,122,44,-8,27,0,202,122,44,-7,27,0,202,122,44,-6,27,0,202,122,44,-5,27,0,202,122,44,-4,27,0,202,122,44,-3,27,0,202,122,44,-2,27,0,202,122,44,-1,27,0,202,122,44,0,27,0,202,122,44,1,27,0,202,122,44,2,27,0,202,122,44,3,27,0,202,122,44,4,27,0,202,122,44,5,27,0,202,122,44,6,27,0,202,122,44,7,27,0,202,122,44,8,27,0,202,122,44,9,27,0,202,122,44,10,27,0,202,122,44,11,27,0,202,122,44,12,27,0,202,122,44,13,27,0,202,122,44,14,27,0,202,122,44,15,27,0,202,122,44,16,27,0,202,122,44,17,27,0,202,122,44,18,27,0,202,122,44,19,27,0,202,122,44,20,27,0,202,122,44,21,27,0,202,122,44,22,27,0,202,122,44,23,27,0,202,122,44,24,27,0,202,122,44,25,27,0,202,122,44,26,27,0,202,122,44,27,27,0,202,122,44,28,27,0,202,122,44,29,27,0,202,122,44,30,27,0,202,122,44,31,27,0,202,122,44,32,27,0,202,122,44,33,27,0,202,122,44,34,27,0,202,122,44,35,27,0,202,122,44,36,27,0,202,122,44,37,27,0,202,122,44,38,27,0,202,122,44,39,27,0,202,122,44,40,27,0,202,122,44,41,27,0,202,122,44,42,27,0,202,122,44,43,27,0,202,122,44,44,27,0,202,122,44,45,27,0,202,122,44,46,27,0,202,122,44,47,27,0,202,122,44,48,27,0,202,122,44,49,27,0,202,122,44,50,27,0,202,122,44,51,27,0,202,122,44,52,27,0,202,122,44,53,27,0,202,122,44,54,27,0,202,122,44,55,27,0,202,122,44,56,27,0,202,122,44,57,27,0,202,122,44,58,27,0,202,122,44,59,27,0,202,122,44,60,27,0,202,122,44,61,27,0,202,122,44,62,27,0,202,122,44,63,27,0,202,122,44,64,27,0,202,122,44,65,27,0,202,122,44,66,27,0,202,122,44,67,27,0,202,122,44,68,27,0,202,122,44,69,27,0,202,122,44,70,27,0,202,122,44,71,27,0,202,122,44,72,27,0,202,122,44,73,27,0,202,122,44,74,27,0,202,122,44,75,27,0,202,122,44,76,27,0,202,122,44,77,27,0,202,122,44,78,27,0,202,122,44,79,27,0,202,122,44,80,27,0,202,122,44,81,27,0,202,122,44,82,27,0,202,122,44,83,27,0,202,122,44,84,27,0,202,122,44,85,27,0,202,122,44,-40,28,0,202,122,44,-39,28,0,202,122,44,-38,28,0,202,122,44,-37,28,0,202,122,44,-36,28,0,202,122,44,-35,28,0,202,122,44,-34,28,0,202,122,44,-33,28,0,202,122,44,-32,28,0,202,122,44,-31,28,0,202,122,44,-30,28,0,202,122,44,-29,28,0,202,122,44,-28,28,0,202,122,44,-27,28,0,202,122,44,-26,28,0,202,122,44,-25,28,0,202,122,44,-24,28,0,202,122,44,-23,28,0,202,122,44,-22,28,0,202,122,44,-21,28,0,202,122,44,-20,28,0,202,122,44,-19,28,0,202,122,44,-18,28,0,202,122,44,-17,28,0,202,122,44,-16,28,0,202,122,44,-15,28,0,202,122,44,-14,28,0,202,122,44,-13,28,0,202,122,44,-12,28,0,202,122,44,-11,28,0,202,122,44,-10,28,0,202,122,44,-9,28,0,202,122,44,-8,28,0,202,122,44,-7,28,0,202,122,44,-6,28,0,202,122,44,-5,28,0,202,122,44,-4,28,0,202,122,44,-3,28,0,202,122,44,-2,28,0,202,122,44,-1,28,0,202,122,44,0,28,0,202,122,44,1,28,0,202,122,44,2,28,0,202,122,44,3,28,0,202,122,44,4,28,0,202,122,44,5,28,0,202,122,44,6,28,0,202,122,44,7,28,0,202,122,44,8,28,0,202,122,44,9,28,0,202,122,44,10,28,0,202,122,44,11,28,0,202,122,44,12,28,0,202,122,44,13,28,0,202,122,44,14,28,0,202,122,44,15,28,0,202,122,44,16,28,0,202,122,44,17,28,0,202,122,44,18,28,0,202,122,44,19,28,0,202,122,44,20,28,0,202,122,44,21,28,0,202,122,44,22,28,0,202,122,44,23,28,0,202,122,44,24,28,0,202,122,44,25,28,0,202,122,44,26,28,0,202,122,44,27,28,0,202,122,44,28,28,0,202,122,44,29,28,0,202,122,44,30,28,0,202,122,44,31,28,0,202,122,44,32,28,0,202,122,44,33,28,0,202,122,44,34,28,0,202,122,44,35,28,0,202,122,44,36,28,0,202,122,44,37,28,0,202,122,44,38,28,0,202,122,44,39,28,0,202,122,44,40,28,0,202,122,44,41,28,0,202,122,44,42,28,0,202,122,44,43,28,0,202,122,44,44,28,0,202,122,44,45,28,0,202,122,44,46,28,0,202,122,44,47,28,0,202,122,44,48,28,0,202,122,44,49,28,0,202,122,44,50,28,0,202,122,44,51,28,0,202,122,44,52,28,0,202,122,44,53,28,0,202,122,44,54,28,0,202,122,44,55,28,0,202,122,44,56,28,0,202,122,44,57,28,0,202,122,44,58,28,0,202,122,44,59,28,0,202,122,44,60,28,0,202,122,44,61,28,0,202,122,44,62,28,0,202,122,44,63,28,0,202,122,44,64,28,0,202,122,44,65,28,0,202,122,44,66,28,0,202,122,44,67,28,0,202,122,44,68,28,0,202,122,44,69,28,0,202,122,44,70,28,0,202,122,44,71,28,0,202,122,44,72,28,0,202,122,44,73,28,0,202,122,44,74,28,0,202,122,44,75,28,0,202,122,44,76,28,0,202,122,44,77,28,0,202,122,44,78,28,0,202,122,44,79,28,0,202,122,44,80,28,0,202,122,44,81,28,0,202,122,44,82,28,0,202,122,44,83,28,0,202,122,44,84,28,0,202,122,44,85,28,0,202,122,44,-40,29,0,202,122,44,-39,29,0,202,122,44,-38,29,0,202,122,44,-37,29,0,202,122,44,-36,29,0,202,122,44,-35,29,0,202,122,44,-34,29,0,202,122,44,-33,29,0,202,122,44,-32,29,0,202,122,44,-31,29,0,202,122,44,-30,29,0,202,122,44,-29,29,0,202,122,44,-28,29,0,202,122,44,-27,29,0,202,122,44,-26,29,0,202,122,44,-25,29,0,202,122,44,-24,29,0,202,122,44,-23,29,0,202,122,44,-22,29,0,202,122,44,-21,29,0,202,122,44,-20,29,0,202,122,44,-19,29,0,202,122,44,-18,29,0,202,122,44,-17,29,0,202,122,44,-16,29,0,202,122,44,-15,29,0,202,122,44,-14,29,0,202,122,44,-13,29,0,202,122,44,-12,29,0,202,122,44,-11,29,0,202,122,44,-10,29,0,202,122,44,-9,29,0,202,122,44,-8,29,0,202,122,44,-7,29,0,202,122,44,-6,29,0,202,122,44,-5,29,0,202,122,44,-4,29,0,202,122,44,-3,29,0,202,122,44,-2,29,0,202,122,44,-1,29,0,202,122,44,0,29,0,202,122,44,1,29,0,202,122,44,2,29,0,202,122,44,3,29,0,202,122,44,4,29,0,202,122,44,5,29,0,202,122,44,6,29,0,202,122,44,7,29,0,202,122,44,8,29,0,202,122,44,9,29,0,202,122,44,10,29,0,202,122,44,11,29,0,202,122,44,12,29,0,202,122,44,13,29,0,202,122,44,14,29,0,202,122,44,15,29,0,202,122,44,16,29,0,202,122,44,17,29,0,202,122,44,18,29,0,202,122,44,19,29,0,202,122,44,20,29,0,202,122,44,21,29,0,202,122,44,22,29,0,202,122,44,23,29,0,202,122,44,24,29,0,202,122,44,25,29,0,202,122,44,26,29,0,202,122,44,27,29,0,202,122,44,28,29,0,202,122,44,29,29,0,202,122,44,30,29,0,202,122,44,31,29,0,202,122,44,32,29,0,202,122,44,33,29,0,202,122,44,34,29,0,202,122,44,35,29,0,202,122,44,36,29,0,202,122,44,37,29,0,202,122,44,38,29,0,202,122,44,39,29,0,202,122,44,40,29,0,202,122,44,41,29,0,202,122,44,42,29,0,202,122,44,43,29,0,202,122,44,44,29,0,202,122,44,45,29,0,202,122,44,46,29,0,202,122,44,47,29,0,202,122,44,48,29,0,202,122,44,49,29,0,202,122,44,50,29,0,202,122,44,51,29,0,202,122,44,52,29,0,202,122,44,53,29,0,202,122,44,54,29,0,202,122,44,55,29,0,202,122,44,56,29,0,202,122,44,57,29,0,202,122,44,58,29,0,202,122,44,59,29,0,202,122,44,60,29,0,202,122,44,61,29,0,202,122,44,62,29,0,202,122,44,63,29,0,202,122,44,64,29,0,202,122,44,65,29,0,202,122,44,66,29,0,202,122,44,67,29,0,202,122,44,68,29,0,202,122,44,69,29,0,202,122,44,70,29,0,202,122,44,71,29,0,202,122,44,72,29,0,202,122,44,73,29,0,202,122,44,74,29,0,202,122,44,75,29,0,202,122,44,76,29,0,202,122,44,77,29,0,202,122,44,78,29,0,202,122,44,79,29,0,202,122,44,80,29,0,202,122,44,81,29,0,202,122,44,82,29,0,202,122,44,83,29,0,202,122,44,84,29,0,202,122,44,85,29,0,202,122,44,-40,30,0,202,122,44,-39,30,0,202,122,44,-38,30,0,202,122,44,-37,30,0,202,122,44,-36,30,0,202,122,44,-35,30,0,202,122,44,-34,30,0,202,122,44,-33,30,0,202,122,44,-32,30,0,202,122,44,-31,30,0,202,122,44,-30,30,0,202,122,44,-29,30,0,202,122,44,-28,30,0,202,122,44,-27,30,0,202,122,44,-26,30,0,202,122,44,-25,30,0,202,122,44,-24,30,0,202,122,44,-23,30,0,202,122,44,-22,30,0,202,122,44,-21,30,0,202,122,44,-20,30,0,202,122,44,-19,30,0,202,122,44,-18,30,0,202,122,44,-17,30,0,202,122,44,-16,30,0,202,122,44,-15,30,0,202,122,44,-14,30,0,202,122,44,-13,30,0,202,122,44,-12,30,0,202,122,44,-11,30,0,202,122,44,-10,30,0,202,122,44,-9,30,0,202,122,44,-8,30,0,202,122,44,-7,30,0,202,122,44,-6,30,0,202,122,44,-5,30,0,202,122,44,-4,30,0,202,122,44,-3,30,0,202,122,44,-2,30,0,202,122,44,-1,30,0,202,122,44,0,30,0,202,122,44,1,30,0,202,122,44,2,30,0,202,122,44,3,30,0,202,122,44,4,30,0,202,122,44,5,30,0,202,122,44,6,30,0,202,122,44,7,30,0,202,122,44,8,30,0,202,122,44,9,30,0,202,122,44,10,30,0,202,122,44,11,30,0,202,122,44,12,30,0,202,122,44,13,30,0,202,122,44,14,30,0,202,122,44,15,30,0,202,122,44,16,30,0,202,122,44,17,30,0,202,122,44,18,30,0,202,122,44,19,30,0,202,122,44,20,30,0,202,122,44,21,30,0,202,122,44,22,30,0,202,122,44,23,30,0,202,122,44,24,30,0,202,122,44,25,30,0,202,122,44,26,30,0,202,122,44,27,30,0,202,122,44,28,30,0,202,122,44,29,30,0,202,122,44,30,30,0,202,122,44,31,30,0,202,122,44,32,30,0,202,122,44,33,30,0,202,122,44,34,30,0,202,122,44,35,30,0,202,122,44,36,30,0,202,122,44,37,30,0,202,122,44,38,30,0,202,122,44,39,30,0,202,122,44,40,30,0,202,122,44,41,30,0,202,122,44,42,30,0,202,122,44,43,30,0,202,122,44,44,30,0,202,122,44,45,30,0,202,122,44,46,30,0,202,122,44,47,30,0,202,122,44,48,30,0,202,122,44,49,30,0,202,122,44,50,30,0,202,122,44,51,30,0,202,122,44,52,30,0,202,122,44,53,30,0,202,122,44,54,30,0,202,122,44,55,30,0,202,122,44,56,30,0,202,122,44,57,30,0,202,122,44,58,30,0,202,122,44,59,30,0,202,122,44,60,30,0,202,122,44,61,30,0,202,122,44,62,30,0,202,122,44,63,30,0,202,122,44,64,30,0,202,122,44,65,30,0,202,122,44,66,30,0,202,122,44,67,30,0,202,122,44,68,30,0,202,122,44,69,30,0,202,122,44,70,30,0,202,122,44,71,30,0,202,122,44,72,30,0,202,122,44,73,30,0,202,122,44,74,30,0,202,122,44,75,30,0,202,122,44,76,30,0,202,122,44,77,30,0,202,122,44,78,30,0,202,122,44,79,30,0,202,122,44,80,30,0,202,122,44,81,30,0,202,122,44,82,30,0,202,122,44,83,30,0,202,122,44,84,30,0,202,122,44,85,30,0,202,122,44,-40,31,0,202,122,44,-39,31,0,202,122,44,-38,31,0,202,122,44,-37,31,0,202,122,44,-36,31,0,202,122,44,-35,31,0,202,122,44,-34,31,0,202,122,44,-33,31,0,202,122,44,-32,31,0,202,122,44,-31,31,0,202,122,44,-30,31,0,202,122,44,-29,31,0,202,122,44,-28,31,0,202,122,44,-27,31,0,202,122,44,-26,31,0,202,122,44,-25,31,0,202,122,44,-24,31,0,202,122,44,-23,31,0,202,122,44,-22,31,0,202,122,44,-21,31,0,202,122,44,-20,31,0,202,122,44,-19,31,0,202,122,44,-18,31,0,202,122,44,-17,31,0,202,122,44,-16,31,0,202,122,44,-15,31,0,202,122,44,-14,31,0,202,122,44,-13,31,0,202,122,44,-12,31,0,202,122,44,-11,31,0,202,122,44,-10,31,0,202,122,44,-9,31,0,202,122,44,-8,31,0,202,122,44,-7,31,0,202,122,44,-6,31,0,202,122,44,-5,31,0,202,122,44,-4,31,0,202,122,44,-3,31,0,202,122,44,-2,31,0,202,122,44,-1,31,0,202,122,44,0,31,0,202,122,44,1,31,0,202,122,44,2,31,0,202,122,44,3,31,0,202,122,44,4,31,0,202,122,44,5,31,0,202,122,44,6,31,0,202,122,44,7,31,0,202,122,44,8,31,0,202,122,44,9,31,0,202,122,44,10,31,0,202,122,44,11,31,0,202,122,44,12,31,0,202,122,44,13,31,0,202,122,44,14,31,0,202,122,44,15,31,0,202,122,44,16,31,0,202,122,44,17,31,0,202,122,44,18,31,0,202,122,44,19,31,0,202,122,44,20,31,0,202,122,44,21,31,0,202,122,44,22,31,0,202,122,44,23,31,0,202,122,44,24,31,0,202,122,44,25,31,0,202,122,44,26,31,0,202,122,44,27,31,0,202,122,44,28,31,0,202,122,44,29,31,0,202,122,44,30,31,0,202,122,44,31,31,0,202,122,44,32,31,0,202,122,44,33,31,0,202,122,44,34,31,0,202,122,44,35,31,0,202,122,44,36,31,0,202,122,44,37,31,0,202,122,44,38,31,0,202,122,44,39,31,0,202,122,44,40,31,0,202,122,44,41,31,0,202,122,44,42,31,0,202,122,44,43,31,0,202,122,44,44,31,0,202,122,44,45,31,0,202,122,44,46,31,0,202,122,44,47,31,0,202,122,44,48,31,0,202,122,44,49,31,0,202,122,44,50,31,0,202,122,44,51,31,0,202,122,44,52,31,0,202,122,44,53,31,0,202,122,44,54,31,0,202,122,44,55,31,0,202,122,44,56,31,0,202,122,44,57,31,0,202,122,44,58,31,0,202,122,44,59,31,0,202,122,44,60,31,0,202,122,44,61,31,0,202,122,44,62,31,0,202,122,44,63,31,0,202,122,44,64,31,0,202,122,44,65,31,0,202,122,44,66,31,0,202,122,44,67,31,0,202,122,44,68,31,0,202,122,44,69,31,0,202,122,44,70,31,0,202,122,44,71,31,0,202,122,44,72,31,0,202,122,44,73,31,0,202,122,44,74,31,0,202,122,44,75,31,0,202,122,44,76,31,0,202,122,44,77,31,0,202,122,44,78,31,0,202,122,44,79,31,0,202,122,44,80,31,0,202,122,44,81,31,0,202,122,44,82,31,0,202,122,44,83,31,0,202,122,44,84,31,0,202,122,44,85,31,0,202,122,44,-40,32,0,202,122,44,-39,32,0,202,122,44,-38,32,0,202,122,44,-37,32,0,202,122,44,-36,32,0,202,122,44,-35,32,0,202,122,44,-34,32,0,202,122,44,-33,32,0,202,122,44,-32,32,0,202,122,44,-31,32,0,202,122,44,-30,32,0,202,122,44,-29,32,0,202,122,44,-28,32,0,202,122,44,-27,32,0,202,122,44,-26,32,0,202,122,44,-25,32,0,202,122,44,-24,32,0,202,122,44,-23,32,0,202,122,44,-22,32,0,202,122,44,-21,32,0,202,122,44,-20,32,0,202,122,44,-19,32,0,202,122,44,-18,32,0,202,122,44,-17,32,0,202,122,44,-16,32,0,202,122,44,-15,32,0,202,122,44,-14,32,0,202,122,44,-13,32,0,202,122,44,-12,32,0,202,122,44,-11,32,0,202,122,44,-10,32,0,202,122,44,-9,32,0,202,122,44,-8,32,0,202,122,44,-7,32,0,202,122,44,-6,32,0,202,122,44,-5,32,0,202,122,44,-4,32,0,202,122,44,-3,32,0,202,122,44,-2,32,0,202,122,44,-1,32,0,202,122,44,0,32,0,202,122,44,1,32,0,202,122,44,2,32,0,202,122,44,3,32,0,202,122,44,4,32,0,202,122,44,5,32,0,202,122,44,6,32,0,202,122,44,7,32,0,202,122,44,8,32,0,202,122,44,9,32,0,202,122,44,10,32,0,202,122,44,11,32,0,202,122,44,12,32,0,202,122,44,13,32,0,202,122,44,14,32,0,202,122,44,15,32,0,202,122,44,16,32,0,202,122,44,17,32,0,202,122,44,18,32,0,202,122,44,19,32,0,202,122,44,20,32,0,202,122,44,21,32,0,202,122,44,22,32,0,202,122,44,23,32,0,202,122,44,24,32,0,202,122,44,25,32,0,202,122,44,26,32,0,202,122,44,27,32,0,202,122,44,28,32,0,202,122,44,29,32,0,202,122,44,30,32,0,202,122,44,31,32,0,202,122,44,32,32,0,202,122,44,33,32,0,202,122,44,34,32,0,202,122,44,35,32,0,202,122,44,36,32,0,202,122,44,37,32,0,202,122,44,38,32,0,202,122,44,39,32,0,202,122,44,40,32,0,202,122,44,41,32,0,202,122,44,42,32,0,202,122,44,43,32,0,202,122,44,44,32,0,202,122,44,45,32,0,202,122,44,46,32,0,202,122,44,47,32,0,202,122,44,48,32,0,202,122,44,49,32,0,202,122,44,50,32,0,202,122,44,51,32,0,202,122,44,52,32,0,202,122,44,53,32,0,202,122,44,54,32,0,202,122,44,55,32,0,202,122,44,56,32,0,202,122,44,57,32,0,202,122,44,58,32,0,202,122,44,59,32,0,202,122,44,60,32,0,202,122,44,61,32,0,202,122,44,62,32,0,202,122,44,63,32,0,202,122,44,64,32,0,202,122,44,65,32,0,202,122,44,66,32,0,202,122,44,67,32,0,202,122,44,68,32,0,202,122,44,69,32,0,202,122,44,70,32,0,202,122,44,71,32,0,202,122,44,72,32,0,202,122,44,73,32,0,202,122,44,74,32,0,202,122,44,75,32,0,202,122,44,76,32,0,202,122,44,77,32,0,202,122,44,78,32,0,202,122,44,79,32,0,202,122,44,80,32,0,202,122,44,81,32,0,202,122,44,82,32,0,202,122,44,83,32,0,202,122,44,84,32,0,202,122,44,85,32,0,202,122,44,-40,33,0,202,122,44,-39,33,0,202,122,44,-38,33,0,202,122,44,-37,33,0,202,122,44,-36,33,0,202,122,44,-35,33,0,202,122,44,-34,33,0,202,122,44,-33,33,0,202,122,44,-32,33,0,202,122,44,-31,33,0,202,122,44,-30,33,0,202,122,44,-29,33,0,202,122,44,-28,33,0,202,122,44,-27,33,0,202,122,44,-26,33,0,202,122,44,-25,33,0,202,122,44,-24,33,0,202,122,44,-23,33,0,202,122,44,-22,33,0,202,122,44,-21,33,0,202,122,44,-20,33,0,202,122,44,-19,33,0,202,122,44,-18,33,0,202,122,44,-17,33,0,202,122,44,-16,33,0,202,122,44,-15,33,0,202,122,44,-14,33,0,202,122,44,-13,33,0,202,122,44,-12,33,0,202,122,44,-11,33,0,202,122,44,-10,33,0,202,122,44,-9,33,0,202,122,44,-8,33,0,202,122,44,-7,33,0,202,122,44,-6,33,0,202,122,44,-5,33,0,202,122,44,-4,33,0,202,122,44,-3,33,0,202,122,44,-2,33,0,202,122,44,-1,33,0,202,122,44,0,33,0,202,122,44,1,33,0,202,122,44,2,33,0,202,122,44,3,33,0,202,122,44,4,33,0,202,122,44,5,33,0,202,122,44,6,33,0,202,122,44,7,33,0,202,122,44,8,33,0,202,122,44,9,33,0,202,122,44,10,33,0,202,122,44,11,33,0,202,122,44,12,33,0,202,122,44,13,33,0,202,122,44,14,33,0,202,122,44,15,33,0,202,122,44,16,33,0,202,122,44,17,33,0,202,122,44,18,33,0,202,122,44,19,33,0,202,122,44,20,33,0,202,122,44,21,33,0,202,122,44,22,33,0,202,122,44,23,33,0,202,122,44,24,33,0,202,122,44,25,33,0,202,122,44,26,33,0,202,122,44,27,33,0,202,122,44,28,33,0,202,122,44,29,33,0,202,122,44,30,33,0,202,122,44,31,33,0,202,122,44,32,33,0,202,122,44,33,33,0,202,122,44,34,33,0,202,122,44,35,33,0,202,122,44,36,33,0,202,122,44,37,33,0,202,122,44,38,33,0,202,122,44,39,33,0,202,122,44,40,33,0,202,122,44,41,33,0,202,122,44,42,33,0,202,122,44,43,33,0,202,122,44,44,33,0,202,122,44,45,33,0,202,122,44,46,33,0,202,122,44,47,33,0,202,122,44,48,33,0,202,122,44,49,33,0,202,122,44,50,33,0,202,122,44,51,33,0,202,122,44,52,33,0,202,122,44,53,33,0,202,122,44,54,33,0,202,122,44,55,33,0,202,122,44,56,33,0,202,122,44,57,33,0,202,122,44,58,33,0,202,122,44,59,33,0,202,122,44,60,33,0,202,122,44,61,33,0,202,122,44,62,33,0,202,122,44,63,33,0,202,122,44,64,33,0,202,122,44,65,33,0,202,122,44,66,33,0,202,122,44,67,33,0,202,122,44,68,33,0,202,122,44,69,33,0,202,122,44,70,33,0,202,122,44,71,33,0,202,122,44,72,33,0,202,122,44,73,33,0,202,122,44,74,33,0,202,122,44,75,33,0,202,122,44,76,33,0,202,122,44,77,33,0,202,122,44,78,33,0,202,122,44,79,33,0,202,122,44,80,33,0,202,122,44,81,33,0,202,122,44,82,33,0,202,122,44,83,33,0,202,122,44,84,33,0,202,122,44,85,33,0,202,122,44,-40,34,0,202,122,44,-39,34,0,202,122,44,-38,34,0,202,122,44,-37,34,0,202,122,44,-36,34,0,202,122,44,-35,34,0,202,122,44,-34,34,0,202,122,44,-33,34,0,202,122,44,-32,34,0,202,122,44,-31,34,0,202,122,44,-30,34,0,202,122,44,-29,34,0,202,122,44,-28,34,0,202,122,44,-27,34,0,202,122,44,-26,34,0,202,122,44,-25,34,0,202,122,44,-24,34,0,202,122,44,-23,34,0,202,122,44,-22,34,0,202,122,44,-21,34,0,202,122,44,-20,34,0,202,122,44,-19,34,0,202,122,44,-18,34,0,202,122,44,-17,34,0,202,122,44,-16,34,0,202,122,44,-15,34,0,202,122,44,-14,34,0,202,122,44,-13,34,0,202,122,44,-12,34,0,202,122,44,-11,34,0,202,122,44,-10,34,0,202,122,44,-9,34,0,202,122,44,-8,34,0,202,122,44,-7,34,0,202,122,44,-6,34,0,202,122,44,-5,34,0,202,122,44,-4,34,0,202,122,44,-3,34,0,202,122,44,-2,34,0,202,122,44,-1,34,0,202,122,44,0,34,0,202,122,44,1,34,0,202,122,44,2,34,0,202,122,44,3,34,0,202,122,44,4,34,0,202,122,44,5,34,0,202,122,44,6,34,0,202,122,44,7,34,0,202,122,44,8,34,0,202,122,44,9,34,0,202,122,44,10,34,0,202,122,44,11,34,0,202,122,44,12,34,0,202,122,44,13,34,0,202,122,44,14,34,0,202,122,44,15,34,0,202,122,44,16,34,0,202,122,44,17,34,0,202,122,44,18,34,0,202,122,44,19,34,0,202,122,44,20,34,0,202,122,44,21,34,0,202,122,44,22,34,0,202,122,44,23,34,0,202,122,44,24,34,0,202,122,44,25,34,0,202,122,44,26,34,0,202,122,44,27,34,0,202,122,44,28,34,0,202,122,44,29,34,0,202,122,44,30,34,0,202,122,44,31,34,0,202,122,44,32,34,0,202,122,44,33,34,0,202,122,44,34,34,0,202,122,44,35,34,0,202,122,44,36,34,0,202,122,44,37,34,0,202,122,44,38,34,0,202,122,44,39,34,0,202,122,44,40,34,0,202,122,44,41,34,0,202,122,44,42,34,0,202,122,44,43,34,0,202,122,44,44,34,0,202,122,44,45,34,0,202,122,44,46,34,0,202,122,44,47,34,0,202,122,44,48,34,0,202,122,44,49,34,0,202,122,44,50,34,0,202,122,44,51,34,0,202,122,44,52,34,0,202,122,44,53,34,0,202,122,44,54,34,0,202,122,44,55,34,0,202,122,44,56,34,0,202,122,44,57,34,0,202,122,44,58,34,0,202,122,44,59,34,0,202,122,44,60,34,0,202,122,44,61,34,0,202,122,44,62,34,0,202,122,44,63,34,0,202,122,44,64,34,0,202,122,44,65,34,0,202,122,44,66,34,0,202,122,44,67,34,0,202,122,44,68,34,0,202,122,44,69,34,0,202,122,44,70,34,0,202,122,44,71,34,0,202,122,44,72,34,0,202,122,44,73,34,0,202,122,44,74,34,0,202,122,44,75,34,0,202,122,44,76,34,0,202,122,44,77,34,0,202,122,44,78,34,0,202,122,44,79,34,0,202,122,44,80,34,0,202,122,44,81,34,0,202,122,44,82,34,0,202,122,44,83,34,0,202,122,44,84,34,0,202,122,44,85,34,0,202,122,44,-40,35,0,202,122,44,-39,35,0,202,122,44,-38,35,0,202,122,44,-37,35,0,202,122,44,-36,35,0,202,122,44,-35,35,0,202,122,44,-34,35,0,202,122,44,-33,35,0,202,122,44,-32,35,0,202,122,44,-31,35,0,202,122,44,-30,35,0,202,122,44,-29,35,0,202,122,44,-28,35,0,202,122,44,-27,35,0,202,122,44,-26,35,0,202,122,44,-25,35,0,202,122,44,-24,35,0,202,122,44,-23,35,0,202,122,44,-22,35,0,202,122,44,-21,35,0,202,122,44,-20,35,0,202,122,44,-19,35,0,202,122,44,-18,35,0,202,122,44,-17,35,0,202,122,44,-16,35,0,202,122,44,-15,35,0,202,122,44,-14,35,0,202,122,44,-13,35,0,202,122,44,-12,35,0,202,122,44,-11,35,0,202,122,44,-10,35,0,202,122,44,-9,35,0,202,122,44,-8,35,0,202,122,44,-7,35,0,202,122,44,-6,35,0,202,122,44,-5,35,0,202,122,44,-4,35,0,202,122,44,-3,35,0,202,122,44,-2,35,0,202,122,44,-1,35,0,202,122,44,0,35,0,202,122,44,1,35,0,202,122,44,2,35,0,202,122,44,3,35,0,202,122,44,4,35,0,202,122,44,5,35,0,202,122,44,6,35,0,202,122,44,7,35,0,202,122,44,8,35,0,202,122,44,9,35,0,202,122,44,10,35,0,202,122,44,11,35,0,202,122,44,12,35,0,202,122,44,13,35,0,202,122,44,14,35,0,202,122,44,15,35,0,202,122,44,16,35,0,202,122,44,17,35,0,202,122,44,18,35,0,202,122,44,19,35,0,202,122,44,20,35,0,202,122,44,21,35,0,202,122,44,22,35,0,202,122,44,23,35,0,202,122,44,24,35,0,202,122,44,25,35,0,202,122,44,26,35,0,202,122,44,27,35,0,202,122,44,28,35,0,202,122,44,29,35,0,202,122,44,30,35,0,202,122,44,31,35,0,202,122,44,32,35,0,202,122,44,33,35,0,202,122,44,34,35,0,202,122,44,35,35,0,202,122,44,36,35,0,202,122,44,37,35,0,202,122,44,38,35,0,202,122,44,39,35,0,202,122,44,40,35,0,202,122,44,41,35,0,202,122,44,42,35,0,202,122,44,43,35,0,202,122,44,44,35,0,202,122,44,45,35,0,202,122,44,46,35,0,202,122,44,47,35,0,202,122,44,48,35,0,202,122,44,49,35,0,202,122,44,50,35,0,202,122,44,51,35,0,202,122,44,52,35,0,202,122,44,53,35,0,202,122,44,54,35,0,202,122,44,55,35,0,202,122,44,56,35,0,202,122,44,57,35,0,202,122,44,58,35,0,202,122,44,59,35,0,202,122,44,60,35,0,202,122,44,61,35,0,202,122,44,62,35,0,202,122,44,63,35,0,202,122,44,64,35,0,202,122,44,65,35,0,202,122,44,66,35,0,202,122,44,67,35,0,202,122,44,68,35,0,202,122,44,69,35,0,202,122,44,70,35,0,202,122,44,71,35,0,202,122,44,72,35,0,202,122,44,73,35,0,202,122,44,74,35,0,202,122,44,75,35,0,202,122,44,76,35,0,202,122,44,77,35,0,202,122,44,78,35,0,202,122,44,79,35,0,202,122,44,80,35,0,202,122,44,81,35,0,202,122,44,82,35,0,202,122,44,83,35,0,202,122,44,84,35,0,202,122,44,85,35,0,202,122,44,-40,36,0,202,122,44,-39,36,0,202,122,44,-38,36,0,202,122,44,-37,36,0,202,122,44,-36,36,0,202,122,44,-35,36,0,202,122,44,-34,36,0,202,122,44,-33,36,0,202,122,44,-32,36,0,202,122,44,-31,36,0,202,122,44,-30,36,0,202,122,44,-29,36,0,202,122,44,-28,36,0,202,122,44,-27,36,0,202,122,44,-26,36,0,202,122,44,-25,36,0,202,122,44,-24,36,0,202,122,44,-23,36,0,202,122,44,-22,36,0,202,122,44,-21,36,0,202,122,44,-20,36,0,202,122,44,-19,36,0,202,122,44,-18,36,0,202,122,44,-17,36,0,202,122,44,-16,36,0,202,122,44,-15,36,0,202,122,44,-14,36,0,202,122,44,-13,36,0,202,122,44,-12,36,0,202,122,44,-11,36,0,202,122,44,-10,36,0,202,122,44,-9,36,0,202,122,44,-8,36,0,202,122,44,-7,36,0,202,122,44,-6,36,0,202,122,44,-5,36,0,202,122,44,-4,36,0,202,122,44,-3,36,0,202,122,44,-2,36,0,202,122,44,-1,36,0,202,122,44,0,36,0,202,122,44,1,36,0,202,122,44,2,36,0,202,122,44,3,36,0,202,122,44,4,36,0,202,122,44,5,36,0,202,122,44,6,36,0,202,122,44,7,36,0,202,122,44,8,36,0,202,122,44,9,36,0,202,122,44,10,36,0,202,122,44,11,36,0,202,122,44,12,36,0,202,122,44,13,36,0,202,122,44,14,36,0,202,122,44,15,36,0,202,122,44,16,36,0,202,122,44,17,36,0,202,122,44,18,36,0,202,122,44,19,36,0,202,122,44,20,36,0,202,122,44,21,36,0,202,122,44,22,36,0,202,122,44,23,36,0,202,122,44,24,36,0,202,122,44,25,36,0,202,122,44,26,36,0,202,122,44,27,36,0,202,122,44,28,36,0,202,122,44,29,36,0,202,122,44,30,36,0,202,122,44,31,36,0,202,122,44,32,36,0,202,122,44,33,36,0,202,122,44,34,36,0,202,122,44,35,36,0,202,122,44,36,36,0,202,122,44,37,36,0,202,122,44,38,36,0,202,122,44,39,36,0,202,122,44,40,36,0,202,122,44,41,36,0,202,122,44,42,36,0,202,122,44,43,36,0,202,122,44,44,36,0,202,122,44,45,36,0,202,122,44,46,36,0,202,122,44,47,36,0,202,122,44,48,36,0,202,122,44,49,36,0,202,122,44,50,36,0,202,122,44,51,36,0,202,122,44,52,36,0,202,122,44,53,36,0,202,122,44,54,36,0,202,122,44,55,36,0,202,122,44,56,36,0,202,122,44,57,36,0,202,122,44,58,36,0,202,122,44,59,36,0,202,122,44,60,36,0,202,122,44,61,36,0,202,122,44,62,36,0,202,122,44,63,36,0,202,122,44,64,36,0,202,122,44,65,36,0,202,122,44,66,36,0,202,122,44,67,36,0,202,122,44,68,36,0,202,122,44,69,36,0,202,122,44,70,36,0,202,122,44,71,36,0,202,122,44,72,36,0,202,122,44,73,36,0,202,122,44,74,36,0,202,122,44,75,36,0,202,122,44,76,36,0,202,122,44,77,36,0,202,122,44,78,36,0,202,122,44,79,36,0,202,122,44,80,36,0,202,122,44,81,36,0,202,122,44,82,36,0,202,122,44,83,36,0,202,122,44,84,36,0,202,122,44,85,36,0,202,122,44,-40,37,0,202,122,44,-39,37,0,202,122,44,-38,37,0,202,122,44,-37,37,0,202,122,44,-36,37,0,202,122,44,-35,37,0,202,122,44,-34,37,0,202,122,44,-33,37,0,202,122,44,-32,37,0,202,122,44,-31,37,0,202,122,44,-30,37,0,202,122,44,-29,37,0,202,122,44,-28,37,0,202,122,44,-27,37,0,202,122,44,-26,37,0,202,122,44,-25,37,0,202,122,44,-24,37,0,202,122,44,-23,37,0,202,122,44,-22,37,0,202,122,44,-21,37,0,202,122,44,-20,37,0,202,122,44,-19,37,0,202,122,44,-18,37,0,202,122,44,-17,37,0,202,122,44,-16,37,0,202,122,44,-15,37,0,202,122,44,-14,37,0,202,122,44,-13,37,0,202,122,44,-12,37,0,202,122,44,-11,37,0,202,122,44,-10,37,0,202,122,44,-9,37,0,202,122,44,-8,37,0,202,122,44,-7,37,0,202,122,44,-6,37,0,202,122,44,-5,37,0,202,122,44,-4,37,0,202,122,44,-3,37,0,202,122,44,-2,37,0,202,122,44,-1,37,0,202,122,44,0,37,0,202,122,44,1,37,0,202,122,44,2,37,0,202,122,44,3,37,0,202,122,44,4,37,0,202,122,44,5,37,0,202,122,44,6,37,0,202,122,44,7,37,0,202,122,44,8,37,0,202,122,44,9,37,0,202,122,44,10,37,0,202,122,44,11,37,0,202,122,44,12,37,0,202,122,44,13,37,0,202,122,44,14,37,0,202,122,44,15,37,0,202,122,44,16,37,0,202,122,44,17,37,0,202,122,44,18,37,0,202,122,44,19,37,0,202,122,44,20,37,0,202,122,44,21,37,0,202,122,44,22,37,0,202,122,44,23,37,0,202,122,44,24,37,0,202,122,44,25,37,0,202,122,44,26,37,0,202,122,44,27,37,0,202,122,44,28,37,0,202,122,44,29,37,0,202,122,44,30,37,0,202,122,44,31,37,0,202,122,44,32,37,0,202,122,44,33,37,0,202,122,44,34,37,0,202,122,44,35,37,0,202,122,44,36,37,0,202,122,44,37,37,0,202,122,44,38,37,0,202,122,44,39,37,0,202,122,44,40,37,0,202,122,44,41,37,0,202,122,44,42,37,0,202,122,44,43,37,0,202,122,44,44,37,0,202,122,44,45,37,0,202,122,44,46,37,0,202,122,44,47,37,0,202,122,44,48,37,0,202,122,44,49,37,0,202,122,44,50,37,0,202,122,44,51,37,0,202,122,44,52,37,0,202,122,44,53,37,0,202,122,44,54,37,0,202,122,44,55,37,0,202,122,44,56,37,0,202,122,44,57,37,0,202,122,44,58,37,0,202,122,44,59,37,0,202,122,44,60,37,0,202,122,44,61,37,0,202,122,44,62,37,0,202,122,44,63,37,0,202,122,44,64,37,0,202,122,44,65,37,0,202,122,44,66,37,0,202,122,44,67,37,0,202,122,44,68,37,0,202,122,44,69,37,0,202,122,44,70,37,0,202,122,44,71,37,0,202,122,44,72,37,0,202,122,44,73,37,0,202,122,44,74,37,0,202,122,44,75,37,0,202,122,44,76,37,0,202,122,44,77,37,0,202,122,44,78,37,0,202,122,44,79,37,0,202,122,44,80,37,0,202,122,44,81,37,0,202,122,44,82,37,0,202,122,44,83,37,0,202,122,44,84,37,0,202,122,44,85,37,0,202,122,44,-40,38,0,202,122,44,-39,38,0,202,122,44,-38,38,0,202,122,44,-37,38,0,202,122,44,-36,38,0,202,122,44,-35,38,0,202,122,44,-34,38,0,202,122,44,-33,38,0,202,122,44,-32,38,0,202,122,44,-31,38,0,202,122,44,-30,38,0,202,122,44,-29,38,0,202,122,44,-28,38,0,202,122,44,-27,38,0,202,122,44,-26,38,0,202,122,44,-25,38,0,202,122,44,-24,38,0,202,122,44,-23,38,0,202,122,44,-22,38,0,202,122,44,-21,38,0,202,122,44,-20,38,0,202,122,44,-19,38,0,202,122,44,-18,38,0,202,122,44,-17,38,0,202,122,44,-16,38,0,202,122,44,-15,38,0,202,122,44,-14,38,0,202,122,44,-13,38,0,202,122,44,-12,38,0,202,122,44,-11,38,0,202,122,44,-10,38,0,202,122,44,-9,38,0,202,122,44,-8,38,0,202,122,44,-7,38,0,202,122,44,-6,38,0,202,122,44,-5,38,0,202,122,44,-4,38,0,202,122,44,-3,38,0,202,122,44,-2,38,0,202,122,44,-1,38,0,202,122,44,0,38,0,202,122,44,1,38,0,202,122,44,2,38,0,202,122,44,3,38,0,202,122,44,4,38,0,202,122,44,5,38,0,202,122,44,6,38,0,202,122,44,7,38,0,202,122,44,8,38,0,202,122,44,9,38,0,202,122,44,10,38,0,202,122,44,11,38,0,202,122,44,12,38,0,202,122,44,13,38,0,202,122,44,14,38,0,202,122,44,15,38,0,202,122,44,16,38,0,202,122,44,17,38,0,202,122,44,18,38,0,202,122,44,19,38,0,202,122,44,20,38,0,202,122,44,21,38,0,202,122,44,22,38,0,202,122,44,23,38,0,202,122,44,24,38,0,202,122,44,25,38,0,202,122,44,26,38,0,202,122,44,27,38,0,202,122,44,28,38,0,202,122,44,29,38,0,202,122,44,30,38,0,202,122,44,31,38,0,202,122,44,32,38,0,202,122,44,33,38,0,202,122,44,34,38,0,202,122,44,35,38,0,202,122,44,36,38,0,202,122,44,37,38,0,202,122,44,38,38,0,202,122,44,39,38,0,202,122,44,40,38,0,202,122,44,41,38,0,202,122,44,42,38,0,202,122,44,43,38,0,202,122,44,44,38,0,202,122,44,45,38,0,202,122,44,46,38,0,202,122,44,47,38,0,202,122,44,48,38,0,202,122,44,49,38,0,202,122,44,50,38,0,202,122,44,51,38,0,202,122,44,52,38,0,202,122,44,53,38,0,202,122,44,54,38,0,202,122,44,55,38,0,202,122,44,56,38,0,202,122,44,57,38,0,202,122,44,58,38,0,202,122,44,59,38,0,202,122,44,60,38,0,202,122,44,61,38,0,202,122,44,62,38,0,202,122,44,63,38,0,202,122,44,64,38,0,202,122,44,65,38,0,202,122,44,66,38,0,202,122,44,67,38,0,202,122,44,68,38,0,202,122,44,69,38,0,202,122,44,70,38,0,202,122,44,71,38,0,202,122,44,72,38,0,202,122,44,73,38,0,202,122,44,74,38,0,202,122,44,75,38,0,202,122,44,76,38,0,202,122,44,77,38,0,202,122,44,78,38,0,202,122,44,79,38,0,202,122,44,80,38,0,202,122,44,81,38,0,202,122,44,82,38,0,202,122,44,83,38,0,202,122,44,84,38,0,202,122,44,85,38,0,202,122,44,-40,39,0,202,122,44,-39,39,0,202,122,44,-38,39,0,202,122,44,-37,39,0,202,122,44,-36,39,0,202,122,44,-35,39,0,202,122,44,-34,39,0,202,122,44,-33,39,0,202,122,44,-32,39,0,202,122,44,-31,39,0,202,122,44,-30,39,0,202,122,44,-29,39,0,202,122,44,-28,39,0,202,122,44,-27,39,0,202,122,44,-26,39,0,202,122,44,-25,39,0,202,122,44,-24,39,0,202,122,44,-23,39,0,202,122,44,-22,39,0,202,122,44,-21,39,0,202,122,44,-20,39,0,202,122,44,-19,39,0,202,122,44,-18,39,0,202,122,44,-17,39,0,202,122,44,-16,39,0,202,122,44,-15,39,0,202,122,44,-14,39,0,202,122,44,-13,39,0,202,122,44,-12,39,0,202,122,44,-11,39,0,202,122,44,-10,39,0,202,122,44,-9,39,0,202,122,44,-8,39,0,202,122,44,-7,39,0,202,122,44,-6,39,0,202,122,44,-5,39,0,202,122,44,-4,39,0,202,122,44,-3,39,0,202,122,44,-2,39,0,202,122,44,-1,39,0,202,122,44,0,39,0,202,122,44,1,39,0,202,122,44,2,39,0,202,122,44,3,39,0,202,122,44,4,39,0,202,122,44,5,39,0,202,122,44,6,39,0,202,122,44,7,39,0,202,122,44,8,39,0,202,122,44,9,39,0,202,122,44,10,39,0,202,122,44,11,39,0,202,122,44,12,39,0,202,122,44,13,39,0,202,122,44,14,39,0,202,122,44,15,39,0,202,122,44,16,39,0,202,122,44,17,39,0,202,122,44,18,39,0,202,122,44,19,39,0,202,122,44,20,39,0,202,122,44,21,39,0,202,122,44,22,39,0,202,122,44,23,39,0,202,122,44,24,39,0,202,122,44,25,39,0,202,122,44,26,39,0,202,122,44,27,39,0,202,122,44,28,39,0,202,122,44,29,39,0,202,122,44,30,39,0,202,122,44,31,39,0,202,122,44,32,39,0,202,122,44,33,39,0,202,122,44,34,39,0,202,122,44,35,39,0,202,122,44,36,39,0,202,122,44,37,39,0,202,122,44,38,39,0,202,122,44,39,39,0,202,122,44,40,39,0,202,122,44,41,39,0,202,122,44,42,39,0,202,122,44,43,39,0,202,122,44,44,39,0,202,122,44,45,39,0,202,122,44,46,39,0,202,122,44,47,39,0,202,122,44,48,39,0,202,122,44,49,39,0,202,122,44,50,39,0,202,122,44,51,39,0,202,122,44,52,39,0,202,122,44,53,39,0,202,122,44,54,39,0,202,122,44,55,39,0,202,122,44,56,39,0,202,122,44,57,39,0,202,122,44,58,39,0,202,122,44,59,39,0,202,122,44,60,39,0,202,122,44,61,39,0,202,122,44,62,39,0,202,122,44,63,39,0,202,122,44,64,39,0,202,122,44,65,39,0,202,122,44,66,39,0,202,122,44,67,39,0,202,122,44,68,39,0,202,122,44,69,39,0,202,122,44,70,39,0,202,122,44,71,39,0,202,122,44,72,39,0,202,122,44,73,39,0,202,122,44,74,39,0,202,122,44,75,39,0,202,122,44,76,39,0,202,122,44,77,39,0,202,122,44,78,39,0,202,122,44,79,39,0,202,122,44,80,39,0,202,122,44,81,39,0,202,122,44,82,39,0,202,122,44,83,39,0,202,122,44,84,39,0,202,122,44,85,39,0,202,122,44,-40,40,0,202,122,44,-39,40,0,202,122,44,-38,40,0,202,122,44,-37,40,0,202,122,44,-36,40,0,202,122,44,-35,40,0,202,122,44,-34,40,0,202,122,44,-33,40,0,202,122,44,-32,40,0,202,122,44,-31,40,0,202,122,44,-30,40,0,202,122,44,-29,40,0,202,122,44,-28,40,0,202,122,44,-27,40,0,202,122,44,-26,40,0,202,122,44,-25,40,0,202,122,44,-24,40,0,202,122,44,-23,40,0,202,122,44,-22,40,0,202,122,44,-21,40,0,202,122,44,-20,40,0,202,122,44,-19,40,0,202,122,44,-18,40,0,202,122,44,-17,40,0,202,122,44,-16,40,0,202,122,44,-15,40,0,202,122,44,-14,40,0,202,122,44,-13,40,0,202,122,44,-12,40,0,202,122,44,-11,40,0,202,122,44,-10,40,0,202,122,44,-9,40,0,202,122,44,-8,40,0,202,122,44,-7,40,0,202,122,44,-6,40,0,202,122,44,-5,40,0,202,122,44,-4,40,0,202,122,44,-3,40,0,202,122,44,-2,40,0,202,122,44,-1,40,0,202,122,44,0,40,0,202,122,44,1,40,0,202,122,44,2,40,0,202,122,44,3,40,0,202,122,44,4,40,0,202,122,44,5,40,0,202,122,44,6,40,0,202,122,44,7,40,0,202,122,44,8,40,0,202,122,44,9,40,0,202,122,44,10,40,0,202,122,44,11,40,0,202,122,44,12,40,0,202,122,44,13,40,0,202,122,44,14,40,0,202,122,44,15,40,0,202,122,44,16,40,0,202,122,44,17,40,0,202,122,44,18,40,0,202,122,44,19,40,0,202,122,44,20,40,0,202,122,44,21,40,0,202,122,44,22,40,0,202,122,44,23,40,0,202,122,44,24,40,0,202,122,44,25,40,0,202,122,44,26,40,0,202,122,44,27,40,0,202,122,44,28,40,0,202,122,44,29,40,0,202,122,44,30,40,0,202,122,44,31,40,0,202,122,44,32,40,0,202,122,44,33,40,0,202,122,44,34,40,0,202,122,44,35,40,0,202,122,44,36,40,0,202,122,44,37,40,0,202,122,44,38,40,0,202,122,44,39,40,0,202,122,44,40,40,0,202,122,44,41,40,0,202,122,44,42,40,0,202,122,44,43,40,0,202,122,44,44,40,0,202,122,44,45,40,0,202,122,44,46,40,0,202,122,44,47,40,0,202,122,44,48,40,0,202,122,44,49,40,0,202,122,44,50,40,0,202,122,44,51,40,0,202,122,44,52,40,0,202,122,44,53,40,0,202,122,44,54,40,0,202,122,44,55,40,0,202,122,44,56,40,0,202,122,44,57,40,0,202,122,44,58,40,0,202,122,44,59,40,0,202,122,44,60,40,0,202,122,44,61,40,0,202,122,44,62,40,0,202,122,44,63,40,0,202,122,44,64,40,0,202,122,44,65,40,0,202,122,44,66,40,0,202,122,44,67,40,0,202,122,44,68,40,0,202,122,44,69,40,0,202,122,44,70,40,0,202,122,44,71,40,0,202,122,44,72,40,0,202,122,44,73,40,0,202,122,44,74,40,0,202,122,44,75,40,0,202,122,44,76,40,0,202,122,44,77,40,0,202,122,44,78,40,0,202,122,44,79,40,0,202,122,44,80,40,0,202,122,44,81,40,0,202,122,44,82,40,0,202,122,44,83,40,0,202,122,44,84,40,0,202,122,44,85,40,0,202,122,44,-40,41,0,202,122,44,-39,41,0,202,122,44,-38,41,0,202,122,44,-37,41,0,202,122,44,-36,41,0,202,122,44,-35,41,0,202,122,44,-34,41,0,202,122,44,-33,41,0,202,122,44,-32,41,0,202,122,44,-31,41,0,202,122,44,-30,41,0,202,122,44,-29,41,0,202,122,44,-28,41,0,202,122,44,-27,41,0,202,122,44,-26,41,0,202,122,44,-25,41,0,202,122,44,-24,41,0,202,122,44,-23,41,0,202,122,44,-22,41,0,202,122,44,-21,41,0,202,122,44,-20,41,0,202,122,44,-19,41,0,202,122,44,-18,41,0,202,122,44,-17,41,0,202,122,44,-16,41,0,202,122,44,-15,41,0,202,122,44,-14,41,0,202,122,44,-13,41,0,202,122,44,-12,41,0,202,122,44,-11,41,0,202,122,44,-10,41,0,202,122,44,-9,41,0,202,122,44,-8,41,0,202,122,44,-7,41,0,202,122,44,-6,41,0,202,122,44,-5,41,0,202,122,44,-4,41,0,202,122,44,-3,41,0,202,122,44,-2,41,0,202,122,44,-1,41,0,202,122,44,0,41,0,202,122,44,1,41,0,202,122,44,2,41,0,202,122,44,3,41,0,202,122,44,4,41,0,202,122,44,5,41,0,202,122,44,6,41,0,202,122,44,7,41,0,202,122,44,8,41,0,202,122,44,9,41,0,202,122,44,10,41,0,202,122,44,11,41,0,202,122,44,12,41,0,202,122,44,13,41,0,202,122,44,14,41,0,202,122,44,15,41,0,202,122,44,16,41,0,202,122,44,17,41,0,202,122,44,18,41,0,202,122,44,19,41,0,202,122,44,20,41,0,202,122,44,21,41,0,202,122,44,22,41,0,202,122,44,23,41,0,202,122,44,24,41,0,202,122,44,25,41,0,202,122,44,26,41,0,202,122,44,27,41,0,202,122,44,28,41,0,202,122,44,29,41,0,202,122,44,30,41,0,202,122,44,31,41,0,202,122,44,32,41,0,202,122,44,33,41,0,202,122,44,34,41,0,202,122,44,35,41,0,202,122,44,36,41,0,202,122,44,37,41,0,202,122,44,38,41,0,202,122,44,39,41,0,202,122,44,40,41,0,202,122,44,41,41,0,202,122,44,42,41,0,202,122,44,43,41,0,202,122,44,44,41,0,202,122,44,45,41,0,202,122,44,46,41,0,202,122,44,47,41,0,202,122,44,48,41,0,202,122,44,49,41,0,202,122,44,50,41,0,202,122,44,51,41,0,202,122,44,52,41,0,202,122,44,53,41,0,202,122,44,54,41,0,202,122,44,55,41,0,202,122,44,56,41,0,202,122,44,57,41,0,202,122,44,58,41,0,202,122,44,59,41,0,202,122,44,60,41,0,202,122,44,61,41,0,202,122,44,62,41,0,202,122,44,63,41,0,202,122,44,64,41,0,202,122,44,65,41,0,202,122,44,66,41,0,202,122,44,67,41,0,202,122,44,68,41,0,202,122,44,69,41,0,202,122,44,70,41,0,202,122,44,71,41,0,202,122,44,72,41,0,202,122,44,73,41,0,202,122,44,74,41,0,202,122,44,75,41,0,202,122,44,76,41,0,202,122,44,77,41,0,202,122,44,78,41,0,202,122,44,79,41,0,202,122,44,80,41,0,202,122,44,81,41,0,202,122,44,82,41,0,202,122,44,83,41,0,202,122,44,84,41,0,202,122,44,85,41,0,202,122,44,-40,42,0,202,122,44,-39,42,0,202,122,44,-38,42,0,202,122,44,-37,42,0,202,122,44,-36,42,0,202,122,44,-35,42,0,202,122,44,-34,42,0,202,122,44,-33,42,0,202,122,44,-32,42,0,202,122,44,-31,42,0,202,122,44,-30,42,0,202,122,44,-29,42,0,202,122,44,-28,42,0,202,122,44,-27,42,0,202,122,44,-26,42,0,202,122,44,-25,42,0,202,122,44,-24,42,0,202,122,44,-23,42,0,202,122,44,-22,42,0,202,122,44,-21,42,0,202,122,44,-20,42,0,202,122,44,-19,42,0,202,122,44,-18,42,0,202,122,44,-17,42,0,202,122,44,-16,42,0,202,122,44,-15,42,0,202,122,44,-14,42,0,202,122,44,-13,42,0,202,122,44,-12,42,0,202,122,44,-11,42,0,202,122,44,-10,42,0,202,122,44,-9,42,0,202,122,44,-8,42,0,202,122,44,-7,42,0,202,122,44,-6,42,0,202,122,44,-5,42,0,202,122,44,-4,42,0,202,122,44,-3,42,0,202,122,44,-2,42,0,202,122,44,-1,42,0,202,122,44,0,42,0,202,122,44,1,42,0,202,122,44,2,42,0,202,122,44,3,42,0,202,122,44,4,42,0,202,122,44,5,42,0,202,122,44,6,42,0,202,122,44,7,42,0,202,122,44,8,42,0,202,122,44,9,42,0,202,122,44,10,42,0,202,122,44,11,42,0,202,122,44,12,42,0,202,122,44,13,42,0,202,122,44,14,42,0,202,122,44,15,42,0,202,122,44,16,42,0,202,122,44,17,42,0,202,122,44,18,42,0,202,122,44,19,42,0,202,122,44,20,42,0,202,122,44,21,42,0,202,122,44,22,42,0,202,122,44,23,42,0,202,122,44,24,42,0,202,122,44,25,42,0,202,122,44,26,42,0,202,122,44,27,42,0,202,122,44,28,42,0,202,122,44,29,42,0,202,122,44,30,42,0,202,122,44,31,42,0,202,122,44,32,42,0,202,122,44,33,42,0,202,122,44,34,42,0,202,122,44,35,42,0,202,122,44,36,42,0,202,122,44,37,42,0,202,122,44,38,42,0,202,122,44,39,42,0,202,122,44,40,42,0,202,122,44,41,42,0,202,122,44,42,42,0,202,122,44,43,42,0,202,122,44,44,42,0,202,122,44,45,42,0,202,122,44,46,42,0,202,122,44,47,42,0,202,122,44,48,42,0,202,122,44,49,42,0,202,122,44,50,42,0,202,122,44,51,42,0,202,122,44,52,42,0,202,122,44,53,42,0,202,122,44,54,42,0,202,122,44,55,42,0,202,122,44,56,42,0,202,122,44,57,42,0,202,122,44,58,42,0,202,122,44,59,42,0,202,122,44,60,42,0,202,122,44,61,42,0,202,122,44,62,42,0,202,122,44,63,42,0,202,122,44,64,42,0,202,122,44,65,42,0,202,122,44,66,42,0,202,122,44,67,42,0,202,122,44,68,42,0,202,122,44,69,42,0,202,122,44,70,42,0,202,122,44,71,42,0,202,122,44,72,42,0,202,122,44,73,42,0,202,122,44,74,42,0,202,122,44,75,42,0,202,122,44,76,42,0,202,122,44,77,42,0,202,122,44,78,42,0,202,122,44,79,42,0,202,122,44,80,42,0,202,122,44,81,42,0,202,122,44,82,42,0,202,122,44,83,42,0,202,122,44,84,42,0,202,122,44,85,42,0,202,122,44,-40,43,0,202,122,44,-39,43,0,202,122,44,-38,43,0,202,122,44,-37,43,0,202,122,44,-36,43,0,202,122,44,-35,43,0,202,122,44,-34,43,0,202,122,44,-33,43,0,202,122,44,-32,43,0,202,122,44,-31,43,0,202,122,44,-30,43,0,202,122,44,-29,43,0,202,122,44,-28,43,0,202,122,44,-27,43,0,202,122,44,-26,43,0,202,122,44,-25,43,0,202,122,44,-24,43,0,202,122,44,-23,43,0,202,122,44,-22,43,0,202,122,44,-21,43,0,202,122,44,-20,43,0,202,122,44,-19,43,0,202,122,44,-18,43,0,202,122,44,-17,43,0,202,122,44,-16,43,0,202,122,44,-15,43,0,202,122,44,-14,43,0,202,122,44,-13,43,0,202,122,44,-12,43,0,202,122,44,-11,43,0,202,122,44,-10,43,0,202,122,44,-9,43,0,202,122,44,-8,43,0,202,122,44,-7,43,0,202,122,44,-6,43,0,202,122,44,-5,43,0,202,122,44,-4,43,0,202,122,44,-3,43,0,202,122,44,-2,43,0,202,122,44,-1,43,0,202,122,44,0,43,0,202,122,44,1,43,0,202,122,44,2,43,0,202,122,44,3,43,0,202,122,44,4,43,0,202,122,44,5,43,0,202,122,44,6,43,0,202,122,44,7,43,0,202,122,44,8,43,0,202,122,44,9,43,0,202,122,44,10,43,0,202,122,44,11,43,0,202,122,44,12,43,0,202,122,44,13,43,0,202,122,44,14,43,0,202,122,44,15,43,0,202,122,44,16,43,0,202,122,44,17,43,0,202,122,44,18,43,0,202,122,44,19,43,0,202,122,44,20,43,0,202,122,44,21,43,0,202,122,44,22,43,0,202,122,44,23,43,0,202,122,44,24,43,0,202,122,44,25,43,0,202,122,44,26,43,0,202,122,44,27,43,0,202,122,44,28,43,0,202,122,44,29,43,0,202,122,44,30,43,0,202,122,44,31,43,0,202,122,44,32,43,0,202,122,44,33,43,0,202,122,44,34,43,0,202,122,44,35,43,0,202,122,44,36,43,0,202,122,44,37,43,0,202,122,44,38,43,0,202,122,44,39,43,0,202,122,44,40,43,0,202,122,44,41,43,0,202,122,44,42,43,0,202,122,44,43,43,0,202,122,44,44,43,0,202,122,44,45,43,0,202,122,44,46,43,0,202,122,44,47,43,0,202,122,44,48,43,0,202,122,44,49,43,0,202,122,44,50,43,0,202,122,44,51,43,0,202,122,44,52,43,0,202,122,44,53,43,0,202,122,44,54,43,0,202,122,44,55,43,0,202,122,44,56,43,0,202,122,44,57,43,0,202,122,44,58,43,0,202,122,44,59,43,0,202,122,44,60,43,0,202,122,44,61,43,0,202,122,44,62,43,0,202,122,44,63,43,0,202,122,44,64,43,0,202,122,44,65,43,0,202,122,44,66,43,0,202,122,44,67,43,0,202,122,44,68,43,0,202,122,44,69,43,0,202,122,44,70,43,0,202,122,44,71,43,0,202,122,44,72,43,0,202,122,44,73,43,0,202,122,44,74,43,0,202,122,44,75,43,0,202,122,44,76,43,0,202,122,44,77,43,0,202,122,44,78,43,0,202,122,44,79,43,0,202,122,44,80,43,0,202,122,44,81,43,0,202,122,44,82,43,0,202,122,44,83,43,0,202,122,44,84,43,0,202,122,44,85,43,0,202,122,44,-40,44,0,202,122,44,-39,44,0,202,122,44,-38,44,0,202,122,44,-37,44,0,202,122,44,-36,44,0,202,122,44,-35,44,0,202,122,44,-34,44,0,202,122,44,-33,44,0,202,122,44,-32,44,0,202,122,44,-31,44,0,202,122,44,-30,44,0,202,122,44,-29,44,0,202,122,44,-28,44,0,202,122,44,-27,44,0,202,122,44,-26,44,0,202,122,44,-25,44,0,202,122,44,-24,44,0,202,122,44,-23,44,0,202,122,44,-22,44,0,202,122,44,-21,44,0,202,122,44,-20,44,0,202,122,44,-19,44,0,202,122,44,-18,44,0,202,122,44,-17,44,0,202,122,44,-16,44,0,202,122,44,-15,44,0,202,122,44,-14,44,0,202,122,44,-13,44,0,202,122,44,-12,44,0,202,122,44,-11,44,0,202,122,44,-10,44,0,202,122,44,-9,44,0,202,122,44,-8,44,0,202,122,44,-7,44,0,202,122,44,-6,44,0,202,122,44,-5,44,0,202,122,44,-4,44,0,202,122,44,-3,44,0,202,122,44,-2,44,0,202,122,44,-1,44,0,202,122,44,0,44,0,202,122,44,1,44,0,202,122,44,2,44,0,202,122,44,3,44,0,202,122,44,4,44,0,202,122,44,5,44,0,202,122,44,6,44,0,202,122,44,7,44,0,202,122,44,8,44,0,202,122,44,9,44,0,202,122,44,10,44,0,202,122,44,11,44,0,202,122,44,12,44,0,202,122,44,13,44,0,202,122,44,14,44,0,202,122,44,15,44,0,202,122,44,16,44,0,202,122,44,17,44,0,202,122,44,18,44,0,202,122,44,19,44,0,202,122,44,20,44,0,202,122,44,21,44,0,202,122,44,22,44,0,202,122,44,23,44,0,202,122,44,24,44,0,202,122,44,25,44,0,202,122,44,26,44,0,202,122,44,27,44,0,202,122,44,28,44,0,202,122,44,29,44,0,202,122,44,30,44,0,202,122,44,31,44,0,202,122,44,32,44,0,202,122,44,33,44,0,202,122,44,34,44,0,202,122,44,35,44,0,202,122,44,36,44,0,202,122,44,37,44,0,202,122,44,38,44,0,202,122,44,39,44,0,202,122,44,40,44,0,202,122,44,41,44,0,202,122,44,42,44,0,202,122,44,43,44,0,202,122,44,44,44,0,202,122,44,45,44,0,202,122,44,46,44,0,202,122,44,47,44,0,202,122,44,48,44,0,202,122,44,49,44,0,202,122,44,50,44,0,202,122,44,51,44,0,202,122,44,52,44,0,202,122,44,53,44,0,202,122,44,54,44,0,202,122,44,55,44,0,202,122,44,56,44,0,202,122,44,57,44,0,202,122,44,58,44,0,202,122,44,59,44,0,202,122,44,60,44,0,202,122,44,61,44,0,202,122,44,62,44,0,202,122,44,63,44,0,202,122,44,64,44,0,202,122,44,65,44,0,202,122,44,66,44,0,202,122,44,67,44,0,202,122,44,68,44,0,202,122,44,69,44,0,202,122,44,70,44,0,202,122,44,71,44,0,202,122,44,72,44,0,202,122,44,73,44,0,202,122,44,74,44,0,202,122,44,75,44,0,202,122,44,76,44,0,202,122,44,77,44,0,202,122,44,78,44,0,202,122,44,79,44,0,202,122,44,80,44,0,202,122,44,81,44,0,202,122,44,82,44,0,202,122,44,83,44,0,202,122,44,84,44,0,202,122,44,85,44,0,202,122,44,-40,45,0,202,122,44,-39,45,0,202,122,44,-38,45,0,202,122,44,-37,45,0,202,122,44,-36,45,0,202,122,44,-35,45,0,202,122,44,-34,45,0,202,122,44,-33,45,0,202,122,44,-32,45,0,202,122,44,-31,45,0,202,122,44,-30,45,0,202,122,44,-29,45,0,202,122,44,-28,45,0,202,122,44,-27,45,0,202,122,44,-26,45,0,202,122,44,-25,45,0,202,122,44,-24,45,0,202,122,44,-23,45,0,202,122,44,-22,45,0,202,122,44,-21,45,0,202,122,44,-20,45,0,202,122,44,-19,45,0,202,122,44,-18,45,0,202,122,44,-17,45,0,202,122,44,-16,45,0,202,122,44,-15,45,0,202,122,44,-14,45,0,202,122,44,-13,45,0,202,122,44,-12,45,0,202,122,44,-11,45,0,202,122,44,-10,45,0,202,122,44,-9,45,0,202,122,44,-8,45,0,202,122,44,-7,45,0,202,122,44,-6,45,0,202,122,44,-5,45,0,202,122,44,-4,45,0,202,122,44,-3,45,0,202,122,44,-2,45,0,202,122,44,-1,45,0,202,122,44,0,45,0,202,122,44,1,45,0,202,122,44,2,45,0,202,122,44,3,45,0,202,122,44,4,45,0,202,122,44,5,45,0,202,122,44,6,45,0,202,122,44,7,45,0,202,122,44,8,45,0,202,122,44,9,45,0,202,122,44,10,45,0,202,122,44,11,45,0,202,122,44,12,45,0,202,122,44,13,45,0,202,122,44,14,45,0,202,122,44,15,45,0,202,122,44,16,45,0,202,122,44,17,45,0,202,122,44,18,45,0,202,122,44,19,45,0,202,122,44,20,45,0,202,122,44,21,45,0,202,122,44,22,45,0,202,122,44,23,45,0,202,122,44,24,45,0,202,122,44,25,45,0,202,122,44,26,45,0,202,122,44,27,45,0,202,122,44,28,45,0,202,122,44,29,45,0,202,122,44,30,45,0,202,122,44,31,45,0,202,122,44,32,45,0,202,122,44,33,45,0,202,122,44,34,45,0,202,122,44,35,45,0,202,122,44,36,45,0,202,122,44,37,45,0,202,122,44,38,45,0,202,122,44,39,45,0,202,122,44,40,45,0,202,122,44,41,45,0,202,122,44,42,45,0,202,122,44,43,45,0,202,122,44,44,45,0,202,122,44,45,45,0,202,122,44,46,45,0,202,122,44,47,45,0,202,122,44,48,45,0,202,122,44,49,45,0,202,122,44,50,45,0,202,122,44,51,45,0,202,122,44,52,45,0,202,122,44,53,45,0,202,122,44,54,45,0,202,122,44,55,45,0,202,122,44,56,45,0,202,122,44,57,45,0,202,122,44,58,45,0,202,122,44,59,45,0,202,122,44,60,45,0,202,122,44,61,45,0,202,122,44,62,45,0,202,122,44,63,45,0,202,122,44,64,45,0,202,122,44,65,45,0,202,122,44,66,45,0,202,122,44,67,45,0,202,122,44,68,45,0,202,122,44,69,45,0,202,122,44,70,45,0,202,122,44,71,45,0,202,122,44,72,45,0,202,122,44,73,45,0,202,122,44,74,45,0,202,122,44,75,45,0,202,122,44,76,45,0,202,122,44,77,45,0,202,122,44,78,45,0,202,122,44,79,45,0,202,122,44,80,45,0,202,122,44,81,45,0,202,122,44,82,45,0,202,122,44,83,45,0,202,122,44,84,45,0,202,122,44,85,45,0,202,122,44,-40,46,0,202,122,44,-39,46,0,202,122,44,-38,46,0,202,122,44,-37,46,0,202,122,44,-36,46,0,202,122,44,-35,46,0,202,122,44,-34,46,0,202,122,44,-33,46,0,202,122,44,-32,46,0,202,122,44,-31,46,0,202,122,44,-30,46,0,202,122,44,-29,46,0,202,122,44,-28,46,0,202,122,44,-27,46,0,202,122,44,-26,46,0,202,122,44,-25,46,0,202,122,44,-24,46,0,202,122,44,-23,46,0,202,122,44,-22,46,0,202,122,44,-21,46,0,202,122,44,-20,46,0,202,122,44,-19,46,0,202,122,44,-18,46,0,202,122,44,-17,46,0,202,122,44,-16,46,0,202,122,44,-15,46,0,202,122,44,-14,46,0,202,122,44,-13,46,0,202,122,44,-12,46,0,202,122,44,-11,46,0,202,122,44,-10,46,0,202,122,44,-9,46,0,202,122,44,-8,46,0,202,122,44,-7,46,0,202,122,44,-6,46,0,202,122,44,-5,46,0,202,122,44,-4,46,0,202,122,44,-3,46,0,202,122,44,-2,46,0,202,122,44,-1,46,0,202,122,44,0,46,0,202,122,44,1,46,0,202,122,44,2,46,0,202,122,44,3,46,0,202,122,44,4,46,0,202,122,44,5,46,0,202,122,44,6,46,0,202,122,44,7,46,0,202,122,44,8,46,0,202,122,44,9,46,0,202,122,44,10,46,0,202,122,44,11,46,0,202,122,44,12,46,0,202,122,44,13,46,0,202,122,44,14,46,0,202,122,44,15,46,0,202,122,44,16,46,0,202,122,44,17,46,0,202,122,44,18,46,0,202,122,44,19,46,0,202,122,44,20,46,0,202,122,44,21,46,0,202,122,44,22,46,0,202,122,44,23,46,0,202,122,44,24,46,0,202,122,44,25,46,0,202,122,44,26,46,0,202,122,44,27,46,0,202,122,44,28,46,0,202,122,44,29,46,0,202,122,44,30,46,0,202,122,44,31,46,0,202,122,44,32,46,0,202,122,44,33,46,0,202,122,44,34,46,0,202,122,44,35,46,0,202,122,44,36,46,0,202,122,44,37,46,0,202,122,44,38,46,0,202,122,44,39,46,0,202,122,44,40,46,0,202,122,44,41,46,0,202,122,44,42,46,0,202,122,44,43,46,0,202,122,44,44,46,0,202,122,44,45,46,0,202,122,44,46,46,0,202,122,44,47,46,0,202,122,44,48,46,0,202,122,44,49,46,0,202,122,44,50,46,0,202,122,44,51,46,0,202,122,44,52,46,0,202,122,44,53,46,0,202,122,44,54,46,0,202,122,44,55,46,0,202,122,44,56,46,0,202,122,44,57,46,0,202,122,44,58,46,0,202,122,44,59,46,0,202,122,44,60,46,0,202,122,44,61,46,0,202,122,44,62,46,0,202,122,44,63,46,0,202,122,44,64,46,0,202,122,44,65,46,0,202,122,44,66,46,0,202,122,44,67,46,0,202,122,44,68,46,0,202,122,44,69,46,0,202,122,44,70,46,0,202,122,44,71,46,0,202,122,44,72,46,0,202,122,44,73,46,0,202,122,44,74,46,0,202,122,44,75,46,0,202,122,44,76,46,0,202,122,44,77,46,0,202,122,44,78,46,0,202,122,44,79,46,0,202,122,44,80,46,0,202,122,44,81,46,0,202,122,44,82,46,0,202,122,44,83,46,0,202,122,44,84,46,0,202,122,44,85,46,0,202,122,44,-40,47,0,202,122,44,-39,47,0,202,122,44,-38,47,0,202,122,44,-37,47,0,202,122,44,-36,47,0,202,122,44,-35,47,0,202,122,44,-34,47,0,202,122,44,-33,47,0,202,122,44,-32,47,0,202,122,44,-31,47,0,202,122,44,-30,47,0,202,122,44,-29,47,0,202,122,44,-28,47,0,202,122,44,-27,47,0,202,122,44,-26,47,0,202,122,44,-25,47,0,202,122,44,-24,47,0,202,122,44,-23,47,0,202,122,44,-22,47,0,202,122,44,-21,47,0,202,122,44,-20,47,0,202,122,44,-19,47,0,202,122,44,-18,47,0,202,122,44,-17,47,0,202,122,44,-16,47,0,202,122,44,-15,47,0,202,122,44,-14,47,0,202,122,44,-13,47,0,202,122,44,-12,47,0,202,122,44,-11,47,0,202,122,44,-10,47,0,202,122,44,-9,47,0,202,122,44,-8,47,0,202,122,44,-7,47,0,202,122,44,-6,47,0,202,122,44,-5,47,0,202,122,44,-4,47,0,202,122,44,-3,47,0,202,122,44,-2,47,0,202,122,44,-1,47,0,202,122,44,0,47,0,202,122,44,1,47,0,202,122,44,2,47,0,202,122,44,3,47,0,202,122,44,4,47,0,202,122,44,5,47,0,202,122,44,6,47,0,202,122,44,7,47,0,202,122,44,8,47,0,202,122,44,9,47,0,202,122,44,10,47,0,202,122,44,11,47,0,202,122,44,12,47,0,202,122,44,13,47,0,202,122,44,14,47,0,202,122,44,15,47,0,202,122,44,16,47,0,202,122,44,17,47,0,202,122,44,18,47,0,202,122,44,19,47,0,202,122,44,20,47,0,202,122,44,21,47,0,202,122,44,22,47,0,202,122,44,23,47,0,202,122,44,24,47,0,202,122,44,25,47,0,202,122,44,26,47,0,202,122,44,27,47,0,202,122,44,28,47,0,202,122,44,29,47,0,202,122,44,30,47,0,202,122,44,31,47,0,202,122,44,32,47,0,202,122,44,33,47,0,202,122,44,34,47,0,202,122,44,35,47,0,202,122,44,36,47,0,202,122,44,37,47,0,202,122,44,38,47,0,202,122,44,39,47,0,202,122,44,40,47,0,202,122,44,41,47,0,202,122,44,42,47,0,202,122,44,43,47,0,202,122,44,44,47,0,202,122,44,45,47,0,202,122,44,46,47,0,202,122,44,47,47,0,202,122,44,48,47,0,202,122,44,49,47,0,202,122,44,50,47,0,202,122,44,51,47,0,202,122,44,52,47,0,202,122,44,53,47,0,202,122,44,54,47,0,202,122,44,55,47,0,202,122,44,56,47,0,202,122,44,57,47,0,202,122,44,58,47,0,202,122,44,59,47,0,202,122,44,60,47,0,202,122,44,61,47,0,202,122,44,62,47,0,202,122,44,63,47,0,202,122,44,64,47,0,202,122,44,65,47,0,202,122,44,66,47,0,202,122,44,67,47,0,202,122,44,68,47,0,202,122,44,69,47,0,202,122,44,70,47,0,202,122,44,71,47,0,202,122,44,72,47,0,202,122,44,73,47,0,202,122,44,74,47,0,202,122,44,75,47,0,202,122,44,76,47,0,202,122,44,77,47,0,202,122,44,78,47,0,202,122,44,79,47,0,202,122,44,80,47,0,202,122,44,81,47,0,202,122,44,82,47,0,202,122,44,83,47,0,202,122,44,84,47,0,202,122,44,85,47,0,202,122,44,-40,48,0,202,122,44,-39,48,0,202,122,44,-38,48,0,202,122,44,-37,48,0,202,122,44,-36,48,0,202,122,44,-35,48,0,202,122,44,-34,48,0,202,122,44,-33,48,0,202,122,44,-32,48,0,202,122,44,-31,48,0,202,122,44,-30,48,0,202,122,44,-29,48,0,202,122,44,-28,48,0,202,122,44,-27,48,0,202,122,44,-26,48,0,202,122,44,-25,48,0,202,122,44,-24,48,0,202,122,44,-23,48,0,202,122,44,-22,48,0,202,122,44,-21,48,0,202,122,44,-20,48,0,202,122,44,-19,48,0,202,122,44,-18,48,0,202,122,44,-17,48,0,202,122,44,-16,48,0,202,122,44,-15,48,0,202,122,44,-14,48,0,202,122,44,-13,48,0,202,122,44,-12,48,0,202,122,44,-11,48,0,202,122,44,-10,48,0,202,122,44,-9,48,0,202,122,44,-8,48,0,202,122,44,-7,48,0,202,122,44,-6,48,0,202,122,44,-5,48,0,202,122,44,-4,48,0,202,122,44,-3,48,0,202,122,44,-2,48,0,202,122,44,-1,48,0,202,122,44,0,48,0,202,122,44,1,48,0,202,122,44,2,48,0,202,122,44,3,48,0,202,122,44,4,48,0,202,122,44,5,48,0,202,122,44,6,48,0,202,122,44,7,48,0,202,122,44,8,48,0,202,122,44,9,48,0,202,122,44,10,48,0,202,122,44,11,48,0,202,122,44,12,48,0,202,122,44,13,48,0,202,122,44,14,48,0,202,122,44,15,48,0,202,122,44,16,48,0,202,122,44,17,48,0,202,122,44,18,48,0,202,122,44,19,48,0,202,122,44,20,48,0,202,122,44,21,48,0,202,122,44,22,48,0,202,122,44,23,48,0,202,122,44,24,48,0,202,122,44,25,48,0,202,122,44,26,48,0,202,122,44,27,48,0,202,122,44,28,48,0,202,122,44,29,48,0,202,122,44,30,48,0,202,122,44,31,48,0,202,122,44,32,48,0,202,122,44,33,48,0,202,122,44,34,48,0,202,122,44,35,48,0,202,122,44,36,48,0,202,122,44,37,48,0,202,122,44,38,48,0,202,122,44,39,48,0,202,122,44,40,48,0,202,122,44,41,48,0,202,122,44,42,48,0,202,122,44,43,48,0,202,122,44,44,48,0,202,122,44,45,48,0,202,122,44,46,48,0,202,122,44,47,48,0,202,122,44,48,48,0,202,122,44,49,48,0,202,122,44,50,48,0,202,122,44,51,48,0,202,122,44,52,48,0,202,122,44,53,48,0,202,122,44,54,48,0,202,122,44,55,48,0,202,122,44,56,48,0,202,122,44,57,48,0,202,122,44,58,48,0,202,122,44,59,48,0,202,122,44,60,48,0,202,122,44,61,48,0,202,122,44,62,48,0,202,122,44,63,48,0,202,122,44,64,48,0,202,122,44,65,48,0,202,122,44,66,48,0,202,122,44,67,48,0,202,122,44,68,48,0,202,122,44,69,48,0,202,122,44,70,48,0,202,122,44,71,48,0,202,122,44,72,48,0,202,122,44,73,48,0,202,122,44,74,48,0,202,122,44,75,48,0,202,122,44,76,48,0,202,122,44,77,48,0,202,122,44,78,48,0,202,122,44,79,48,0,202,122,44,80,48,0,202,122,44,81,48,0,202,122,44,82,48,0,202,122,44,83,48,0,202,122,44,84,48,0,202,122,44,85,48,0,202,122,44,-40,49,0,202,122,44,-39,49,0,202,122,44,-38,49,0,202,122,44,-37,49,0,202,122,44,-36,49,0,202,122,44,-35,49,0,202,122,44,-34,49,0,202,122,44,-33,49,0,202,122,44,-32,49,0,202,122,44,-31,49,0,202,122,44,-30,49,0,202,122,44,-29,49,0,202,122,44,-28,49,0,202,122,44,-27,49,0,202,122,44,-26,49,0,202,122,44,-25,49,0,202,122,44,-24,49,0,202,122,44,-23,49,0,202,122,44,-22,49,0,202,122,44,-21,49,0,202,122,44,-20,49,0,202,122,44,-19,49,0,202,122,44,-18,49,0,202,122,44,-17,49,0,202,122,44,-16,49,0,202,122,44,-15,49,0,202,122,44,-14,49,0,202,122,44,-13,49,0,202,122,44,-12,49,0,202,122,44,-11,49,0,202,122,44,-10,49,0,202,122,44,-9,49,0,202,122,44,-8,49,0,202,122,44,-7,49,0,202,122,44,-6,49,0,202,122,44,-5,49,0,202,122,44,-4,49,0,202,122,44,-3,49,0,202,122,44,-2,49,0,202,122,44,-1,49,0,202,122,44,0,49,0,202,122,44,1,49,0,202,122,44,2,49,0,202,122,44,3,49,0,202,122,44,4,49,0,202,122,44,5,49,0,202,122,44,6,49,0,202,122,44,7,49,0,202,122,44,8,49,0,202,122,44,9,49,0,202,122,44,10,49,0,202,122,44,11,49,0,202,122,44,12,49,0,202,122,44,13,49,0,202,122,44,14,49,0,202,122,44,15,49,0,202,122,44,16,49,0,202,122,44,17,49,0,202,122,44,18,49,0,202,122,44,19,49,0,202,122,44,20,49,0,202,122,44,21,49,0,202,122,44,22,49,0,202,122,44,23,49,0,202,122,44,24,49,0,202,122,44,25,49,0,202,122,44,26,49,0,202,122,44,27,49,0,202,122,44,28,49,0,202,122,44,29,49,0,202,122,44,30,49,0,202,122,44,31,49,0,202,122,44,32,49,0,202,122,44,33,49,0,202,122,44,34,49,0,202,122,44,35,49,0,202,122,44,36,49,0,202,122,44,37,49,0,202,122,44,38,49,0,202,122,44,39,49,0,202,122,44,40,49,0,202,122,44,41,49,0,202,122,44,42,49,0,202,122,44,43,49,0,202,122,44,44,49,0,202,122,44,45,49,0,202,122,44,46,49,0,202,122,44,47,49,0,202,122,44,48,49,0,202,122,44,49,49,0,202,122,44,50,49,0,202,122,44,51,49,0,202,122,44,52,49,0,202,122,44,53,49,0,202,122,44,54,49,0,202,122,44,55,49,0,202,122,44,56,49,0,202,122,44,57,49,0,202,122,44,58,49,0,202,122,44,59,49,0,202,122,44,60,49,0,202,122,44,61,49,0,202,122,44,62,49,0,202,122,44,63,49,0,202,122,44,64,49,0,202,122,44,65,49,0,202,122,44,66,49,0,202,122,44,67,49,0,202,122,44,68,49,0,202,122,44,69,49,0,202,122,44,70,49,0,202,122,44,71,49,0,202,122,44,72,49,0,202,122,44,73,49,0,202,122,44,74,49,0,202,122,44,75,49,0,202,122,44,76,49,0,202,122,44,77,49,0,202,122,44,78,49,0,202,122,44,79,49,0,202,122,44,80,49,0,202,122,44,81,49,0,202,122,44,82,49,0,202,122,44,83,49,0,202,122,44,84,49,0,202,122,44,85,49,0,202,122,44,-40,50,0,202,122,44,-39,50,0,202,122,44,-38,50,0,202,122,44,-37,50,0,202,122,44,-36,50,0,202,122,44,-35,50,0,202,122,44,-34,50,0,202,122,44,-33,50,0,202,122,44,-32,50,0,202,122,44,-31,50,0,202,122,44,-30,50,0,202,122,44,-29,50,0,202,122,44,-28,50,0,202,122,44,-27,50,0,202,122,44,-26,50,0,202,122,44,-25,50,0,202,122,44,-24,50,0,202,122,44,-23,50,0,202,122,44,-22,50,0,202,122,44,-21,50,0,202,122,44,-20,50,0,202,122,44,-19,50,0,202,122,44,-18,50,0,202,122,44,-17,50,0,202,122,44,-16,50,0,202,122,44,-15,50,0,202,122,44,-14,50,0,202,122,44,-13,50,0,202,122,44,-12,50,0,202,122,44,-11,50,0,202,122,44,-10,50,0,202,122,44,-9,50,0,202,122,44,-8,50,0,202,122,44,-7,50,0,202,122,44,-6,50,0,202,122,44,-5,50,0,202,122,44,-4,50,0,202,122,44,-3,50,0,202,122,44,-2,50,0,202,122,44,-1,50,0,202,122,44,0,50,0,202,122,44,1,50,0,202,122,44,2,50,0,202,122,44,3,50,0,202,122,44,4,50,0,202,122,44,5,50,0,202,122,44,6,50,0,202,122,44,7,50,0,202,122,44,8,50,0,202,122,44,9,50,0,202,122,44,10,50,0,202,122,44,11,50,0,202,122,44,12,50,0,202,122,44,13,50,0,202,122,44,14,50,0,202,122,44,15,50,0,202,122,44,16,50,0,202,122,44,17,50,0,202,122,44,18,50,0,202,122,44,19,50,0,202,122,44,20,50,0,202,122,44,21,50,0,202,122,44,22,50,0,202,122,44,23,50,0,202,122,44,24,50,0,202,122,44,25,50,0,202,122,44,26,50,0,202,122,44,27,50,0,202,122,44,28,50,0,202,122,44,29,50,0,202,122,44,30,50,0,202,122,44,31,50,0,202,122,44,32,50,0,202,122,44,33,50,0,202,122,44,34,50,0,202,122,44,35,50,0,202,122,44,36,50,0,202,122,44,37,50,0,202,122,44,38,50,0,202,122,44,39,50,0,202,122,44,40,50,0,202,122,44,41,50,0,202,122,44,42,50,0,202,122,44,43,50,0,202,122,44,44,50,0,202,122,44,45,50,0,202,122,44,46,50,0,202,122,44,47,50,0,202,122,44,48,50,0,202,122,44,49,50,0,202,122,44,50,50,0,202,122,44,51,50,0,202,122,44,52,50,0,202,122,44,53,50,0,202,122,44,54,50,0,202,122,44,55,50,0,202,122,44,56,50,0,202,122,44,57,50,0,202,122,44,58,50,0,202,122,44,59,50,0,202,122,44,60,50,0,202,122,44,61,50,0,202,122,44,62,50,0,202,122,44,63,50,0,202,122,44,64,50,0,202,122,44,65,50,0,202,122,44,66,50,0,202,122,44,67,50,0,202,122,44,68,50,0,202,122,44,69,50,0,202,122,44,70,50,0,202,122,44,71,50,0,202,122,44,72,50,0,202,122,44,73,50,0,202,122,44,74,50,0,202,122,44,75,50,0,202,122,44,76,50,0,202,122,44,77,50,0,202,122,44,78,50,0,202,122,44,79,50,0,202,122,44,80,50,0,202,122,44,81,50,0,202,122,44,82,50,0,202,122,44,83,50,0,202,122,44,84,50,0,202,122,44,85,50,0,202,122,44,-40,51,0,202,122,44,-39,51,0,202,122,44,-38,51,0,202,122,44,-37,51,0,202,122,44,-36,51,0,202,122,44,-35,51,0,202,122,44,-34,51,0,202,122,44,-33,51,0,202,122,44,-32,51,0,202,122,44,-31,51,0,202,122,44,-30,51,0,202,122,44,-29,51,0,202,122,44,-28,51,0,202,122,44,-27,51,0,202,122,44,-26,51,0,202,122,44,-25,51,0,202,122,44,-24,51,0,202,122,44,-23,51,0,202,122,44,-22,51,0,202,122,44,-21,51,0,202,122,44,-20,51,0,202,122,44,-19,51,0,202,122,44,-18,51,0,202,122,44,-17,51,0,202,122,44,-16,51,0,202,122,44,-15,51,0,202,122,44,-14,51,0,202,122,44,-13,51,0,202,122,44,-12,51,0,202,122,44,-11,51,0,202,122,44,-10,51,0,202,122,44,-9,51,0,202,122,44,-8,51,0,202,122,44,-7,51,0,202,122,44,-6,51,0,202,122,44,-5,51,0,202,122,44,-4,51,0,202,122,44,-3,51,0,202,122,44,-2,51,0,202,122,44,-1,51,0,202,122,44,0,51,0,202,122,44,1,51,0,202,122,44,2,51,0,202,122,44,3,51,0,202,122,44,4,51,0,202,122,44,5,51,0,202,122,44,6,51,0,202,122,44,7,51,0,202,122,44,8,51,0,202,122,44,9,51,0,202,122,44,10,51,0,202,122,44,11,51,0,202,122,44,12,51,0,202,122,44,13,51,0,202,122,44,14,51,0,202,122,44,15,51,0,202,122,44,16,51,0,202,122,44,17,51,0,202,122,44,18,51,0,202,122,44,19,51,0,202,122,44,20,51,0,202,122,44,21,51,0,202,122,44,22,51,0,202,122,44,23,51,0,202,122,44,24,51,0,202,122,44,25,51,0,202,122,44,26,51,0,202,122,44,27,51,0,202,122,44,28,51,0,202,122,44,29,51,0,202,122,44,30,51,0,202,122,44,31,51,0,202,122,44,32,51,0,202,122,44,33,51,0,202,122,44,34,51,0,202,122,44,35,51,0,202,122,44,36,51,0,202,122,44,37,51,0,202,122,44,38,51,0,202,122,44,39,51,0,202,122,44,40,51,0,202,122,44,41,51,0,202,122,44,42,51,0,202,122,44,43,51,0,202,122,44,44,51,0,202,122,44,45,51,0,202,122,44,46,51,0,202,122,44,47,51,0,202,122,44,48,51,0,202,122,44,49,51,0,202,122,44,50,51,0,202,122,44,51,51,0,202,122,44,52,51,0,202,122,44,53,51,0,202,122,44,54,51,0,202,122,44,55,51,0,202,122,44,56,51,0,202,122,44,57,51,0,202,122,44,58,51,0,202,122,44,59,51,0,202,122,44,60,51,0,202,122,44,61,51,0,202,122,44,62,51,0,202,122,44,63,51,0,202,122,44,64,51,0,202,122,44,65,51,0,202,122,44,66,51,0,202,122,44,67,51,0,202,122,44,68,51,0,202,122,44,69,51,0,202,122,44,70,51,0,202,122,44,71,51,0,202,122,44,72,51,0,202,122,44,73,51,0,202,122,44,74,51,0,202,122,44,75,51,0,202,122,44,76,51,0,202,122,44,77,51,0,202,122,44,78,51,0,202,122,44,79,51,0,202,122,44,80,51,0,202,122,44,81,51,0,202,122,44,82,51,0,202,122,44,83,51,0,202,122,44,84,51,0,202,122,44,85,51,0,202,122,44,-40,52,0,202,122,44,-39,52,0,202,122,44,-38,52,0,202,122,44,-37,52,0,202,122,44,-36,52,0,202,122,44,-35,52,0,202,122,44,-34,52,0,202,122,44,-33,52,0,202,122,44,-32,52,0,202,122,44,-31,52,0,202,122,44,-30,52,0,202,122,44,-29,52,0,202,122,44,-28,52,0,202,122,44,-27,52,0,202,122,44,-26,52,0,202,122,44,-25,52,0,202,122,44,-24,52,0,202,122,44,-23,52,0,202,122,44,-22,52,0,202,122,44,-21,52,0,202,122,44,-20,52,0,202,122,44,-19,52,0,202,122,44,-18,52,0,202,122,44,-17,52,0,202,122,44,-16,52,0,202,122,44,-15,52,0,202,122,44,-14,52,0,202,122,44,-13,52,0,202,122,44,-12,52,0,202,122,44,-11,52,0,202,122,44,-10,52,0,202,122,44,-9,52,0,202,122,44,-8,52,0,202,122,44,-7,52,0,202,122,44,-6,52,0,202,122,44,-5,52,0,202,122,44,-4,52,0,202,122,44,-3,52,0,202,122,44,-2,52,0,202,122,44,-1,52,0,202,122,44,0,52,0,202,122,44,1,52,0,202,122,44,2,52,0,202,122,44,3,52,0,202,122,44,4,52,0,202,122,44,5,52,0,202,122,44,6,52,0,202,122,44,7,52,0,202,122,44,8,52,0,202,122,44,9,52,0,202,122,44,10,52,0,202,122,44,11,52,0,202,122,44,12,52,0,202,122,44,13,52,0,202,122,44,14,52,0,202,122,44,15,52,0,202,122,44,16,52,0,202,122,44,17,52,0,202,122,44,18,52,0,202,122,44,19,52,0,202,122,44,20,52,0,202,122,44,21,52,0,202,122,44,22,52,0,202,122,44,23,52,0,202,122,44,24,52,0,202,122,44,25,52,0,202,122,44,26,52,0,202,122,44,27,52,0,202,122,44,28,52,0,202,122,44,29,52,0,202,122,44,30,52,0,202,122,44,31,52,0,202,122,44,32,52,0,202,122,44,33,52,0,202,122,44,34,52,0,202,122,44,35,52,0,202,122,44,36,52,0,202,122,44,37,52,0,202,122,44,38,52,0,202,122,44,39,52,0,202,122,44,40,52,0,202,122,44,41,52,0,202,122,44,42,52,0,202,122,44,43,52,0,202,122,44,44,52,0,202,122,44,45,52,0,202,122,44,46,52,0,202,122,44,47,52,0,202,122,44,48,52,0,202,122,44,49,52,0,202,122,44,50,52,0,202,122,44,51,52,0,202,122,44,52,52,0,202,122,44,53,52,0,202,122,44,54,52,0,202,122,44,55,52,0,202,122,44,56,52,0,202,122,44,57,52,0,202,122,44,58,52,0,202,122,44,59,52,0,202,122,44,60,52,0,202,122,44,61,52,0,202,122,44,62,52,0,202,122,44,63,52,0,202,122,44,64,52,0,202,122,44,65,52,0,202,122,44,66,52,0,202,122,44,67,52,0,202,122,44,68,52,0,202,122,44,69,52,0,202,122,44,70,52,0,202,122,44,71,52,0,202,122,44,72,52,0,202,122,44,73,52,0,202,122,44,74,52,0,202,122,44,75,52,0,202,122,44,76,52,0,202,122,44,77,52,0,202,122,44,78,52,0,202,122,44,79,52,0,202,122,44,80,52,0,202,122,44,81,52,0,202,122,44,82,52,0,202,122,44,83,52,0,202,122,44,84,52,0,202,122,44,85,52,0,202,122,44,-40,53,0,202,122,44,-39,53,0,202,122,44,-38,53,0,202,122,44,-37,53,0,202,122,44,-36,53,0,202,122,44,-35,53,0,202,122,44,-34,53,0,202,122,44,-33,53,0,202,122,44,-32,53,0,202,122,44,-31,53,0,202,122,44,-30,53,0,202,122,44,-29,53,0,202,122,44,-28,53,0,202,122,44,-27,53,0,202,122,44,-26,53,0,202,122,44,-25,53,0,202,122,44,-24,53,0,202,122,44,-23,53,0,202,122,44,-22,53,0,202,122,44,-21,53,0,202,122,44,-20,53,0,202,122,44,-19,53,0,202,122,44,-18,53,0,202,122,44,-17,53,0,202,122,44,-16,53,0,202,122,44,-15,53,0,202,122,44,-14,53,0,202,122,44,-13,53,0,202,122,44,-12,53,0,202,122,44,-11,53,0,202,122,44,-10,53,0,202,122,44,-9,53,0,202,122,44,-8,53,0,202,122,44,-7,53,0,202,122,44,-6,53,0,202,122,44,-5,53,0,202,122,44,-4,53,0,202,122,44,-3,53,0,202,122,44,-2,53,0,202,122,44,-1,53,0,202,122,44,0,53,0,202,122,44,1,53,0,202,122,44,2,53,0,202,122,44,3,53,0,202,122,44,4,53,0,202,122,44,5,53,0,202,122,44,6,53,0,202,122,44,7,53,0,202,122,44,8,53,0,202,122,44,9,53,0,202,122,44,10,53,0,202,122,44,11,53,0,202,122,44,12,53,0,202,122,44,13,53,0,202,122,44,14,53,0,202,122,44,15,53,0,202,122,44,16,53,0,202,122,44,17,53,0,202,122,44,18,53,0,202,122,44,19,53,0,202,122,44,20,53,0,202,122,44,21,53,0,202,122,44,22,53,0,202,122,44,23,53,0,202,122,44,24,53,0,202,122,44,25,53,0,202,122,44,26,53,0,202,122,44,27,53,0,202,122,44,28,53,0,202,122,44,29,53,0,202,122,44,30,53,0,202,122,44,31,53,0,202,122,44,32,53,0,202,122,44,33,53,0,202,122,44,34,53,0,202,122,44,35,53,0,202,122,44,36,53,0,202,122,44,37,53,0,202,122,44,38,53,0,202,122,44,39,53,0,202,122,44,40,53,0,202,122,44,41,53,0,202,122,44,42,53,0,202,122,44,43,53,0,202,122,44,44,53,0,202,122,44,45,53,0,202,122,44,46,53,0,202,122,44,47,53,0,202,122,44,48,53,0,202,122,44,49,53,0,202,122,44,50,53,0,202,122,44,51,53,0,202,122,44,52,53,0,202,122,44,53,53,0,202,122,44,54,53,0,202,122,44,55,53,0,202,122,44,56,53,0,202,122,44,57,53,0,202,122,44,58,53,0,202,122,44,59,53,0,202,122,44,60,53,0,202,122,44,61,53,0,202,122,44,62,53,0,202,122,44,63,53,0,202,122,44,64,53,0,202,122,44,65,53,0,202,122,44,66,53,0,202,122,44,67,53,0,202,122,44,68,53,0,202,122,44,69,53,0,202,122,44,70,53,0,202,122,44,71,53,0,202,122,44,72,53,0,202,122,44,73,53,0,202,122,44,74,53,0,202,122,44,75,53,0,202,122,44,76,53,0,202,122,44,77,53,0,202,122,44,78,53,0,202,122,44,79,53,0,202,122,44,80,53,0,202,122,44,81,53,0,202,122,44,82,53,0,202,122,44,83,53,0,202,122,44,84,53,0,202,122,44,85,53,0,202,122,44,-40,54,0,202,122,44,-39,54,0,202,122,44,-38,54,0,202,122,44,-37,54,0,202,122,44,-36,54,0,202,122,44,-35,54,0,202,122,44,-34,54,0,202,122,44,-33,54,0,202,122,44,-32,54,0,202,122,44,-31,54,0,202,122,44,-30,54,0,202,122,44,-29,54,0,202,122,44,-28,54,0,202,122,44,-27,54,0,202,122,44,-26,54,0,202,122,44,-25,54,0,202,122,44,-24,54,0,202,122,44,-23,54,0,202,122,44,-22,54,0,202,122,44,-21,54,0,202,122,44,-20,54,0,202,122,44,-19,54,0,202,122,44,-18,54,0,202,122,44,-17,54,0,202,122,44,-16,54,0,202,122,44,-15,54,0,202,122,44,-14,54,0,202,122,44,-13,54,0,202,122,44,-12,54,0,202,122,44,-11,54,0,202,122,44,-10,54,0,202,122,44,-9,54,0,202,122,44,-8,54,0,202,122,44,-7,54,0,202,122,44,-6,54,0,202,122,44,-5,54,0,202,122,44,-4,54,0,202,122,44,-3,54,0,202,122,44,-2,54,0,202,122,44,-1,54,0,202,122,44,0,54,0,202,122,44,1,54,0,202,122,44,2,54,0,202,122,44,3,54,0,202,122,44,4,54,0,202,122,44,5,54,0,202,122,44,6,54,0,202,122,44,7,54,0,202,122,44,8,54,0,202,122,44,9,54,0,202,122,44,10,54,0,202,122,44,11,54,0,202,122,44,12,54,0,202,122,44,13,54,0,202,122,44,14,54,0,202,122,44,15,54,0,202,122,44,16,54,0,202,122,44,17,54,0,202,122,44,18,54,0,202,122,44,19,54,0,202,122,44,20,54,0,202,122,44,21,54,0,202,122,44,22,54,0,202,122,44,23,54,0,202,122,44,24,54,0,202,122,44,25,54,0,202,122,44,26,54,0,202,122,44,27,54,0,202,122,44,28,54,0,202,122,44,29,54,0,202,122,44,30,54,0,202,122,44,31,54,0,202,122,44,32,54,0,202,122,44,33,54,0,202,122,44,34,54,0,202,122,44,35,54,0,202,122,44,36,54,0,202,122,44,37,54,0,202,122,44,38,54,0,202,122,44,39,54,0,202,122,44,40,54,0,202,122,44,41,54,0,202,122,44,42,54,0,202,122,44,43,54,0,202,122,44,44,54,0,202,122,44,45,54,0,202,122,44,46,54,0,202,122,44,47,54,0,202,122,44,48,54,0,202,122,44,49,54,0,202,122,44,50,54,0,202,122,44,51,54,0,202,122,44,52,54,0,202,122,44,53,54,0,202,122,44,54,54,0,202,122,44,55,54,0,202,122,44,56,54,0,202,122,44,57,54,0,202,122,44,58,54,0,202,122,44,59,54,0,202,122,44,60,54,0,202,122,44,61,54,0,202,122,44,62,54,0,202,122,44,63,54,0,202,122,44,64,54,0,202,122,44,65,54,0,202,122,44,66,54,0,202,122,44,67,54,0,202,122,44,68,54,0,202,122,44,69,54,0,202,122,44,70,54,0,202,122,44,71,54,0,202,122,44,72,54,0,202,122,44,73,54,0,202,122,44,74,54,0,202,122,44,75,54,0,202,122,44,76,54,0,202,122,44,77,54,0,202,122,44,78,54,0,202,122,44,79,54,0,202,122,44,80,54,0,202,122,44,81,54,0,202,122,44,82,54,0,202,122,44,83,54,0,202,122,44,84,54,0,202,122,44,85,54,0,202,122,44,-40,55,0,202,122,44,-39,55,0,202,122,44,-38,55,0,202,122,44,-37,55,0,202,122,44,-36,55,0,202,122,44,-35,55,0,202,122,44,-34,55,0,202,122,44,-33,55,0,202,122,44,-32,55,0,202,122,44,-31,55,0,202,122,44,-30,55,0,202,122,44,-29,55,0,202,122,44,-28,55,0,202,122,44,-27,55,0,202,122,44,-26,55,0,202,122,44,-25,55,0,202,122,44,-24,55,0,202,122,44,-23,55,0,202,122,44,-22,55,0,202,122,44,-21,55,0,202,122,44,-20,55,0,202,122,44,-19,55,0,202,122,44,-18,55,0,202,122,44,-17,55,0,202,122,44,-16,55,0,202,122,44,-15,55,0,202,122,44,-14,55,0,202,122,44,-13,55,0,202,122,44,-12,55,0,202,122,44,-11,55,0,202,122,44,-10,55,0,202,122,44,-9,55,0,202,122,44,-8,55,0,202,122,44,-7,55,0,202,122,44,-6,55,0,202,122,44,-5,55,0,202,122,44,-4,55,0,202,122,44,-3,55,0,202,122,44,-2,55,0,202,122,44,-1,55,0,202,122,44,0,55,0,202,122,44,1,55,0,202,122,44,2,55,0,202,122,44,3,55,0,202,122,44,4,55,0,202,122,44,5,55,0,202,122,44,6,55,0,202,122,44,7,55,0,202,122,44,8,55,0,202,122,44,9,55,0,202,122,44,10,55,0,202,122,44,11,55,0,202,122,44,12,55,0,202,122,44,13,55,0,202,122,44,14,55,0,202,122,44,15,55,0,202,122,44,16,55,0,202,122,44,17,55,0,202,122,44,18,55,0,202,122,44,19,55,0,202,122,44,20,55,0,202,122,44,21,55,0,202,122,44,22,55,0,202,122,44,23,55,0,202,122,44,24,55,0,202,122,44,25,55,0,202,122,44,26,55,0,202,122,44,27,55,0,202,122,44,28,55,0,202,122,44,29,55,0,202,122,44,30,55,0,202,122,44,31,55,0,202,122,44,32,55,0,202,122,44,33,55,0,202,122,44,34,55,0,202,122,44,35,55,0,202,122,44,36,55,0,202,122,44,37,55,0,202,122,44,38,55,0,202,122,44,39,55,0,202,122,44,40,55,0,202,122,44,41,55,0,202,122,44,42,55,0,202,122,44,43,55,0,202,122,44,44,55,0,202,122,44,45,55,0,202,122,44,46,55,0,202,122,44,47,55,0,202,122,44,48,55,0,202,122,44,49,55,0,202,122,44,50,55,0,202,122,44,51,55,0,202,122,44,52,55,0,202,122,44,53,55,0,202,122,44,54,55,0,202,122,44,55,55,0,202,122,44,56,55,0,202,122,44,57,55,0,202,122,44,58,55,0,202,122,44,59,55,0,202,122,44,60,55,0,202,122,44,61,55,0,202,122,44,62,55,0,202,122,44,63,55,0,202,122,44,64,55,0,202,122,44,65,55,0,202,122,44,66,55,0,202,122,44,67,55,0,202,122,44,68,55,0,202,122,44,69,55,0,202,122,44,70,55,0,202,122,44,71,55,0,202,122,44,72,55,0,202,122,44,73,55,0,202,122,44,74,55,0,202,122,44,75,55,0,202,122,44,76,55,0,202,122,44,77,55,0,202,122,44,78,55,0,202,122,44,79,55,0,202,122,44,80,55,0,202,122,44,81,55,0,202,122,44,82,55,0,202,122,44,83,55,0,202,122,44,84,55,0,202,122,44,85,55,0,202,122,44,-40,56,0,202,122,44,-39,56,0,202,122,44,-38,56,0,202,122,44,-37,56,0,202,122,44,-36,56,0,202,122,44,-35,56,0,202,122,44,-34,56,0,202,122,44,-33,56,0,202,122,44,-32,56,0,202,122,44,-31,56,0,202,122,44,-30,56,0,202,122,44,-29,56,0,202,122,44,-28,56,0,202,122,44,-27,56,0,202,122,44,-26,56,0,202,122,44,-25,56,0,202,122,44,-24,56,0,202,122,44,-23,56,0,202,122,44,-22,56,0,202,122,44,-21,56,0,202,122,44,-20,56,0,202,122,44,-19,56,0,202,122,44,-18,56,0,202,122,44,-17,56,0,202,122,44,-16,56,0,202,122,44,-15,56,0,202,122,44,-14,56,0,202,122,44,-13,56,0,202,122,44,-12,56,0,202,122,44,-11,56,0,202,122,44,-10,56,0,202,122,44,-9,56,0,202,122,44,-8,56,0,202,122,44,-7,56,0,202,122,44,-6,56,0,202,122,44,-5,56,0,202,122,44,-4,56,0,202,122,44,-3,56,0,202,122,44,-2,56,0,202,122,44,-1,56,0,202,122,44,0,56,0,202,122,44,1,56,0,202,122,44,2,56,0,202,122,44,3,56,0,202,122,44,4,56,0,202,122,44,5,56,0,202,122,44,6,56,0,202,122,44,7,56,0,202,122,44,8,56,0,202,122,44,9,56,0,202,122,44,10,56,0,202,122,44,11,56,0,202,122,44,12,56,0,202,122,44,13,56,0,202,122,44,14,56,0,202,122,44,15,56,0,202,122,44,16,56,0,202,122,44,17,56,0,202,122,44,18,56,0,202,122,44,19,56,0,202,122,44,20,56,0,202,122,44,21,56,0,202,122,44,22,56,0,202,122,44,23,56,0,202,122,44,24,56,0,202,122,44,25,56,0,202,122,44,26,56,0,202,122,44,27,56,0,202,122,44,28,56,0,202,122,44,29,56,0,202,122,44,30,56,0,202,122,44,31,56,0,202,122,44,32,56,0,202,122,44,33,56,0,202,122,44,34,56,0,202,122,44,35,56,0,202,122,44,36,56,0,202,122,44,37,56,0,202,122,44,38,56,0,202,122,44,39,56,0,202,122,44,40,56,0,202,122,44,41,56,0,202,122,44,42,56,0,202,122,44,43,56,0,202,122,44,44,56,0,202,122,44,45,56,0,202,122,44,46,56,0,202,122,44,47,56,0,202,122,44,48,56,0,202,122,44,49,56,0,202,122,44,50,56,0,202,122,44,51,56,0,202,122,44,52,56,0,202,122,44,53,56,0,202,122,44,54,56,0,202,122,44,55,56,0,202,122,44,56,56,0,202,122,44,57,56,0,202,122,44,58,56,0,202,122,44,59,56,0,202,122,44,60,56,0,202,122,44,61,56,0,202,122,44,62,56,0,202,122,44,63,56,0,202,122,44,64,56,0,202,122,44,65,56,0,202,122,44,66,56,0,202,122,44,67,56,0,202,122,44,68,56,0,202,122,44,69,56,0,202,122,44,70,56,0,202,122,44,71,56,0,202,122,44,72,56,0,202,122,44,73,56,0,202,122,44,74,56,0,202,122,44,75,56,0,202,122,44,76,56,0,202,122,44,77,56,0,202,122,44,78,56,0,202,122,44,79,56,0,202,122,44,80,56,0,202,122,44,81,56,0,202,122,44,82,56,0,202,122,44,83,56,0,202,122,44,84,56,0,202,122,44,85,56,0,202,122,44,-40,57,0,202,122,44,-39,57,0,202,122,44,-38,57,0,202,122,44,-37,57,0,202,122,44,-36,57,0,202,122,44,-35,57,0,202,122,44,-34,57,0,202,122,44,-33,57,0,202,122,44,-32,57,0,202,122,44,-31,57,0,202,122,44,-30,57,0,202,122,44,-29,57,0,202,122,44,-28,57,0,202,122,44,-27,57,0,202,122,44,-26,57,0,202,122,44,-25,57,0,202,122,44,-24,57,0,202,122,44,-23,57,0,202,122,44,-22,57,0,202,122,44,-21,57,0,202,122,44,-20,57,0,202,122,44,-19,57,0,202,122,44,-18,57,0,202,122,44,-17,57,0,202,122,44,-16,57,0,202,122,44,-15,57,0,202,122,44,-14,57,0,202,122,44,-13,57,0,202,122,44,-12,57,0,202,122,44,-11,57,0,202,122,44,-10,57,0,202,122,44,-9,57,0,202,122,44,-8,57,0,202,122,44,-7,57,0,202,122,44,-6,57,0,202,122,44,-5,57,0,202,122,44,-4,57,0,202,122,44,-3,57,0,202,122,44,-2,57,0,202,122,44,-1,57,0,202,122,44,0,57,0,202,122,44,1,57,0,202,122,44,2,57,0,202,122,44,3,57,0,202,122,44,4,57,0,202,122,44,5,57,0,202,122,44,6,57,0,202,122,44,7,57,0,202,122,44,8,57,0,202,122,44,9,57,0,202,122,44,10,57,0,202,122,44,11,57,0,202,122,44,12,57,0,202,122,44,13,57,0,202,122,44,14,57,0,202,122,44,15,57,0,202,122,44,16,57,0,202,122,44,17,57,0,202,122,44,18,57,0,202,122,44,19,57,0,202,122,44,20,57,0,202,122,44,21,57,0,202,122,44,22,57,0,202,122,44,23,57,0,202,122,44,24,57,0,202,122,44,25,57,0,202,122,44,26,57,0,202,122,44,27,57,0,202,122,44,28,57,0,202,122,44,29,57,0,202,122,44,30,57,0,202,122,44,31,57,0,202,122,44,32,57,0,202,122,44,33,57,0,202,122,44,34,57,0,202,122,44,35,57,0,202,122,44,36,57,0,202,122,44,37,57,0,202,122,44,38,57,0,202,122,44,39,57,0,202,122,44,40,57,0,202,122,44,41,57,0,202,122,44,42,57,0,202,122,44,43,57,0,202,122,44,44,57,0,202,122,44,45,57,0,202,122,44,46,57,0,202,122,44,47,57,0,202,122,44,48,57,0,202,122,44,49,57,0,202,122,44,50,57,0,202,122,44,51,57,0,202,122,44,52,57,0,202,122,44,53,57,0,202,122,44,54,57,0,202,122,44,55,57,0,202,122,44,56,57,0,202,122,44,57,57,0,202,122,44,58,57,0,202,122,44,59,57,0,202,122,44,60,57,0,202,122,44,61,57,0,202,122,44,62,57,0,202,122,44,63,57,0,202,122,44,64,57,0,202,122,44,65,57,0,202,122,44,66,57,0,202,122,44,67,57,0,202,122,44,68,57,0,202,122,44,69,57,0,202,122,44,70,57,0,202,122,44,71,57,0,202,122,44,72,57,0,202,122,44,73,57,0,202,122,44,74,57,0,202,122,44,75,57,0,202,122,44,76,57,0,202,122,44,77,57,0,202,122,44,78,57,0,202,122,44,79,57,0,202,122,44,80,57,0,202,122,44,81,57,0,202,122,44,82,57,0,202,122,44,83,57,0,202,122,44,84,57,0,202,122,44,85,57,0,202,122,44,-40,58,0,202,122,44,-39,58,0,202,122,44,-38,58,0,202,122,44,-37,58,0,202,122,44,-36,58,0,202,122,44,-35,58,0,202,122,44,-34,58,0,202,122,44,-33,58,0,202,122,44,-32,58,0,202,122,44,-31,58,0,202,122,44,-30,58,0,202,122,44,-29,58,0,202,122,44,-28,58,0,202,122,44,-27,58,0,202,122,44,-26,58,0,202,122,44,-25,58,0,202,122,44,-24,58,0,202,122,44,-23,58,0,202,122,44,-22,58,0,202,122,44,-21,58,0,202,122,44,-20,58,0,202,122,44,-19,58,0,202,122,44,-18,58,0,202,122,44,-17,58,0,202,122,44,-16,58,0,202,122,44,-15,58,0,202,122,44,-14,58,0,202,122,44,-13,58,0,202,122,44,-12,58,0,202,122,44,-11,58,0,202,122,44,-10,58,0,202,122,44,-9,58,0,202,122,44,-8,58,0,202,122,44,-7,58,0,202,122,44,-6,58,0,202,122,44,-5,58,0,202,122,44,-4,58,0,202,122,44,-3,58,0,202,122,44,-2,58,0,202,122,44,-1,58,0,202,122,44,0,58,0,202,122,44,1,58,0,202,122,44,2,58,0,202,122,44,3,58,0,202,122,44,4,58,0,202,122,44,5,58,0,202,122,44,6,58,0,202,122,44,7,58,0,202,122,44,8,58,0,202,122,44,9,58,0,202,122,44,10,58,0,202,122,44,11,58,0,202,122,44,12,58,0,202,122,44,13,58,0,202,122,44,14,58,0,202,122,44,15,58,0,202,122,44,16,58,0,202,122,44,17,58,0,202,122,44,18,58,0,202,122,44,19,58,0,202,122,44,20,58,0,202,122,44,21,58,0,202,122,44,22,58,0,202,122,44,23,58,0,202,122,44,24,58,0,202,122,44,25,58,0,202,122,44,26,58,0,202,122,44,27,58,0,202,122,44,28,58,0,202,122,44,29,58,0,202,122,44,30,58,0,202,122,44,31,58,0,202,122,44,32,58,0,202,122,44,33,58,0,202,122,44,34,58,0,202,122,44,35,58,0,202,122,44,36,58,0,202,122,44,37,58,0,202,122,44,38,58,0,202,122,44,39,58,0,202,122,44,40,58,0,202,122,44,41,58,0,202,122,44,42,58,0,202,122,44,43,58,0,202,122,44,44,58,0,202,122,44,45,58,0,202,122,44,46,58,0,202,122,44,47,58,0,202,122,44,48,58,0,202,122,44,49,58,0,202,122,44,50,58,0,202,122,44,51,58,0,202,122,44,52,58,0,202,122,44,53,58,0,202,122,44,54,58,0,202,122,44,55,58,0,202,122,44,56,58,0,202,122,44,57,58,0,202,122,44,58,58,0,202,122,44,59,58,0,202,122,44,60,58,0,202,122,44,61,58,0,202,122,44,62,58,0,202,122,44,63,58,0,202,122,44,64,58,0,202,122,44,65,58,0,202,122,44,66,58,0,202,122,44,67,58,0,202,122,44,68,58,0,202,122,44,69,58,0,202,122,44,70,58,0,202,122,44,71,58,0,202,122,44,72,58,0,202,122,44,73,58,0,202,122,44,74,58,0,202,122,44,75,58,0,202,122,44,76,58,0,202,122,44,77,58,0,202,122,44,78,58,0,202,122,44,79,58,0,202,122,44,80,58,0,202,122,44,81,58,0,202,122,44,82,58,0,202,122,44,83,58,0,202,122,44,84,58,0,202,122,44,85,58,0,202,122,44,-40,59,0,202,122,44,-39,59,0,202,122,44,-38,59,0,202,122,44,-37,59,0,202,122,44,-36,59,0,202,122,44,-35,59,0,202,122,44,-34,59,0,202,122,44,-33,59,0,202,122,44,-32,59,0,202,122,44,-31,59,0,202,122,44,-30,59,0,202,122,44,-29,59,0,202,122,44,-28,59,0,202,122,44,-27,59,0,202,122,44,-26,59,0,202,122,44,-25,59,0,202,122,44,-24,59,0,202,122,44,-23,59,0,202,122,44,-22,59,0,202,122,44,-21,59,0,202,122,44,-20,59,0,202,122,44,-19,59,0,202,122,44,-18,59,0,202,122,44,-17,59,0,202,122,44,-16,59,0,202,122,44,-15,59,0,202,122,44,-14,59,0,202,122,44,-13,59,0,202,122,44,-12,59,0,202,122,44,-11,59,0,202,122,44,-10,59,0,202,122,44,-9,59,0,202,122,44,-8,59,0,202,122,44,-7,59,0,202,122,44,-6,59,0,202,122,44,-5,59,0,202,122,44,-4,59,0,202,122,44,-3,59,0,202,122,44,-2,59,0,202,122,44,-1,59,0,202,122,44,0,59,0,202,122,44,1,59,0,202,122,44,2,59,0,202,122,44,3,59,0,202,122,44,4,59,0,202,122,44,5,59,0,202,122,44,6,59,0,202,122,44,7,59,0,202,122,44,8,59,0,202,122,44,9,59,0,202,122,44,10,59,0,202,122,44,11,59,0,202,122,44,12,59,0,202,122,44,13,59,0,202,122,44,14,59,0,202,122,44,15,59,0,202,122,44,16,59,0,202,122,44,17,59,0,202,122,44,18,59,0,202,122,44,19,59,0,202,122,44,20,59,0,202,122,44,21,59,0,202,122,44,22,59,0,202,122,44,23,59,0,202,122,44,24,59,0,202,122,44,25,59,0,202,122,44,26,59,0,202,122,44,27,59,0,202,122,44,28,59,0,202,122,44,29,59,0,202,122,44,30,59,0,202,122,44,31,59,0,202,122,44,32,59,0,202,122,44,33,59,0,202,122,44,34,59,0,202,122,44,35,59,0,202,122,44,36,59,0,202,122,44,37,59,0,202,122,44,38,59,0,202,122,44,39,59,0,202,122,44,40,59,0,202,122,44,41,59,0,202,122,44,42,59,0,202,122,44,43,59,0,202,122,44,44,59,0,202,122,44,45,59,0,202,122,44,46,59,0,202,122,44,47,59,0,202,122,44,48,59,0,202,122,44,49,59,0,202,122,44,50,59,0,202,122,44,51,59,0,202,122,44,52,59,0,202,122,44,53,59,0,202,122,44,54,59,0,202,122,44,55,59,0,202,122,44,56,59,0,202,122,44,57,59,0,202,122,44,58,59,0,202,122,44,59,59,0,202,122,44,60,59,0,202,122,44,61,59,0,202,122,44,62,59,0,202,122,44,63,59,0,202,122,44,64,59,0,202,122,44,65,59,0,202,122,44,66,59,0,202,122,44,67,59,0,202,122,44,68,59,0,202,122,44,69,59,0,202,122,44,70,59,0,202,122,44,71,59,0,202,122,44,72,59,0,202,122,44,73,59,0,202,122,44,74,59,0,202,122,44,75,59,0,202,122,44,76,59,0,202,122,44,77,59,0,202,122,44,78,59,0,202,122,44,79,59,0,202,122,44,80,59,0,202,122,44,81,59,0,202,122,44,82,59,0,202,122,44,83,59,0,202,122,44,84,59,0,202,122,44,85,59,0,202,122,44,-40,60,0,202,122,44,-39,60,0,202,122,44,-38,60,0,202,122,44,-37,60,0,202,122,44,-36,60,0,202,122,44,-35,60,0,202,122,44,-34,60,0,202,122,44,-33,60,0,202,122,44,-32,60,0,202,122,44,-31,60,0,202,122,44,-30,60,0,202,122,44,-29,60,0,202,122,44,-28,60,0,202,122,44,-27,60,0,202,122,44,-26,60,0,202,122,44,-25,60,0,202,122,44,-24,60,0,202,122,44,-23,60,0,202,122,44,-22,60,0,202,122,44,-21,60,0,202,122,44,-20,60,0,202,122,44,-19,60,0,202,122,44,-18,60,0,202,122,44,-17,60,0,202,122,44,-16,60,0,202,122,44,-15,60,0,202,122,44,-14,60,0,202,122,44,-13,60,0,202,122,44,-12,60,0,202,122,44,-11,60,0,202,122,44,-10,60,0,202,122,44,-9,60,0,202,122,44,-8,60,0,202,122,44,-7,60,0,202,122,44,-6,60,0,202,122,44,-5,60,0,202,122,44,-4,60,0,202,122,44,-3,60,0,202,122,44,-2,60,0,202,122,44,-1,60,0,202,122,44,0,60,0,202,122,44,1,60,0,202,122,44,2,60,0,202,122,44,3,60,0,202,122,44,4,60,0,202,122,44,5,60,0,202,122,44,6,60,0,202,122,44,7,60,0,202,122,44,8,60,0,202,122,44,9,60,0,202,122,44,10,60,0,202,122,44,11,60,0,202,122,44,12,60,0,202,122,44,13,60,0,202,122,44,14,60,0,202,122,44,15,60,0,202,122,44,16,60,0,202,122,44,17,60,0,202,122,44,18,60,0,202,122,44,19,60,0,202,122,44,20,60,0,202,122,44,21,60,0,202,122,44,22,60,0,202,122,44,23,60,0,202,122,44,24,60,0,202,122,44,25,60,0,202,122,44,26,60,0,202,122,44,27,60,0,202,122,44,28,60,0,202,122,44,29,60,0,202,122,44,30,60,0,202,122,44,31,60,0,202,122,44,32,60,0,202,122,44,33,60,0,202,122,44,34,60,0,202,122,44,35,60,0,202,122,44,36,60,0,202,122,44,37,60,0,202,122,44,38,60,0,202,122,44,39,60,0,202,122,44,40,60,0,202,122,44,41,60,0,202,122,44,42,60,0,202,122,44,43,60,0,202,122,44,44,60,0,202,122,44,45,60,0,202,122,44,46,60,0,202,122,44,47,60,0,202,122,44,48,60,0,202,122,44,49,60,0,202,122,44,50,60,0,202,122,44,51,60,0,202,122,44,52,60,0,202,122,44,53,60,0,202,122,44,54,60,0,202,122,44,55,60,0,202,122,44,56,60,0,202,122,44,57,60,0,202,122,44,58,60,0,202,122,44,59,60,0,202,122,44,60,60,0,202,122,44,61,60,0,202,122,44,62,60,0,202,122,44,63,60,0,202,122,44,64,60,0,202,122,44,65,60,0,202,122,44,66,60,0,202,122,44,67,60,0,202,122,44,68,60,0,202,122,44,69,60,0,202,122,44,70,60,0,202,122,44,71,60,0,202,122,44,72,60,0,202,122,44,73,60,0,202,122,44,74,60,0,202,122,44,75,60,0,202,122,44,76,60,0,202,122,44,77,60,0,202,122,44,78,60,0,202,122,44,79,60,0,202,122,44,80,60,0,202,122,44,81,60,0,202,122,44,82,60,0,202,122,44,83,60,0,202,122,44,84,60,0,202,122,44,85,60,0,202,122,44,-40,61,0,202,122,44,-39,61,0,202,122,44,-38,61,0,202,122,44,-37,61,0,202,122,44,-36,61,0,202,122,44,-35,61,0,202,122,44,-34,61,0,202,122,44,-33,61,0,202,122,44,-32,61,0,202,122,44,-31,61,0,202,122,44,-30,61,0,202,122,44,-29,61,0,202,122,44,-28,61,0,202,122,44,-27,61,0,202,122,44,-26,61,0,202,122,44,-25,61,0,202,122,44,-24,61,0,202,122,44,-23,61,0,202,122,44,-22,61,0,202,122,44,-21,61,0,202,122,44,-20,61,0,202,122,44,-19,61,0,202,122,44,-18,61,0,202,122,44,-17,61,0,202,122,44,-16,61,0,202,122,44,-15,61,0,202,122,44,-14,61,0,202,122,44,-13,61,0,202,122,44,-12,61,0,202,122,44,-11,61,0,202,122,44,-10,61,0,202,122,44,-9,61,0,202,122,44,-8,61,0,202,122,44,-7,61,0,202,122,44,-6,61,0,202,122,44,-5,61,0,202,122,44,-4,61,0,202,122,44,-3,61,0,202,122,44,-2,61,0,202,122,44,-1,61,0,202,122,44,0,61,0,202,122,44,1,61,0,202,122,44,2,61,0,202,122,44,3,61,0,202,122,44,4,61,0,202,122,44,5,61,0,202,122,44,6,61,0,202,122,44,7,61,0,202,122,44,8,61,0,202,122,44,9,61,0,202,122,44,10,61,0,202,122,44,11,61,0,202,122,44,12,61,0,202,122,44,13,61,0,202,122,44,14,61,0,202,122,44,15,61,0,202,122,44,16,61,0,202,122,44,17,61,0,202,122,44,18,61,0,202,122,44,19,61,0,202,122,44,20,61,0,202,122,44,21,61,0,202,122,44,22,61,0,202,122,44,23,61,0,202,122,44,24,61,0,202,122,44,25,61,0,202,122,44,26,61,0,202,122,44,27,61,0,202,122,44,28,61,0,202,122,44,29,61,0,202,122,44,30,61,0,202,122,44,31,61,0,202,122,44,32,61,0,202,122,44,33,61,0,202,122,44,34,61,0,202,122,44,35,61,0,202,122,44,36,61,0,202,122,44,37,61,0,202,122,44,38,61,0,202,122,44,39,61,0,202,122,44,40,61,0,202,122,44,41,61,0,202,122,44,42,61,0,202,122,44,43,61,0,202,122,44,44,61,0,202,122,44,45,61,0,202,122,44,46,61,0,202,122,44,47,61,0,202,122,44,48,61,0,202,122,44,49,61,0,202,122,44,50,61,0,202,122,44,51,61,0,202,122,44,52,61,0,202,122,44,53,61,0,202,122,44,54,61,0,202,122,44,55,61,0,202,122,44,56,61,0,202,122,44,57,61,0,202,122,44,58,61,0,202,122,44,59,61,0,202,122,44,60,61,0,202,122,44,61,61,0,202,122,44,62,61,0,202,122,44,63,61,0,202,122,44,64,61,0,202,122,44,65,61,0,202,122,44,66,61,0,202,122,44,67,61,0,202,122,44,68,61,0,202,122,44,69,61,0,202,122,44,70,61,0,202,122,44,71,61,0,202,122,44,72,61,0,202,122,44,73,61,0,202,122,44,74,61,0,202,122,44,75,61,0,202,122,44,76,61,0,202,122,44,77,61,0,202,122,44,78,61,0,202,122,44,79,61,0,202,122,44,80,61,0,202,122,44,81,61,0,202,122,44,82,61,0,202,122,44,83,61,0,202,122,44,84,61,0,202,122,44,85,61,0,202,122,44,-40,62,0,202,122,44,-39,62,0,202,122,44,-38,62,0,202,122,44,-37,62,0,202,122,44,-36,62,0,202,122,44,-35,62,0,202,122,44,-34,62,0,202,122,44,-33,62,0,202,122,44,-32,62,0,202,122,44,-31,62,0,202,122,44,-30,62,0,202,122,44,-29,62,0,202,122,44,-28,62,0,202,122,44,-27,62,0,202,122,44,-26,62,0,202,122,44,-25,62,0,202,122,44,-24,62,0,202,122,44,-23,62,0,202,122,44,-22,62,0,202,122,44,-21,62,0,202,122,44,-20,62,0,202,122,44,-19,62,0,202,122,44,-18,62,0,202,122,44,-17,62,0,202,122,44,-16,62,0,202,122,44,-15,62,0,202,122,44,-14,62,0,202,122,44,-13,62,0,202,122,44,-12,62,0,202,122,44,-11,62,0,202,122,44,-10,62,0,202,122,44,-9,62,0,202,122,44,-8,62,0,202,122,44,-7,62,0,202,122,44,-6,62,0,202,122,44,-5,62,0,202,122,44,-4,62,0,202,122,44,-3,62,0,202,122,44,-2,62,0,202,122,44,-1,62,0,202,122,44,0,62,0,202,122,44,1,62,0,202,122,44,2,62,0,202,122,44,3,62,0,202,122,44,4,62,0,202,122,44,5,62,0,202,122,44,6,62,0,202,122,44,7,62,0,202,122,44,8,62,0,202,122,44,9,62,0,202,122,44,10,62,0,202,122,44,11,62,0,202,122,44,12,62,0,202,122,44,13,62,0,202,122,44,14,62,0,202,122,44,15,62,0,202,122,44,16,62,0,202,122,44,17,62,0,202,122,44,18,62,0,202,122,44,19,62,0,202,122,44,20,62,0,202,122,44,21,62,0,202,122,44,22,62,0,202,122,44,23,62,0,202,122,44,24,62,0,202,122,44,25,62,0,202,122,44,26,62,0,202,122,44,27,62,0,202,122,44,28,62,0,202,122,44,29,62,0,202,122,44,30,62,0,202,122,44,31,62,0,202,122,44,32,62,0,202,122,44,33,62,0,202,122,44,34,62,0,202,122,44,35,62,0,202,122,44,36,62,0,202,122,44,37,62,0,202,122,44,38,62,0,202,122,44,39,62,0,202,122,44,40,62,0,202,122,44,41,62,0,202,122,44,42,62,0,202,122,44,43,62,0,202,122,44,44,62,0,202,122,44,45,62,0,202,122,44,46,62,0,202,122,44,47,62,0,202,122,44,48,62,0,202,122,44,49,62,0,202,122,44,50,62,0,202,122,44,51,62,0,202,122,44,52,62,0,202,122,44,53,62,0,202,122,44,54,62,0,202,122,44,55,62,0,202,122,44,56,62,0,202,122,44,57,62,0,202,122,44,58,62,0,202,122,44,59,62,0,202,122,44,60,62,0,202,122,44,61,62,0,202,122,44,62,62,0,202,122,44,63,62,0,202,122,44,64,62,0,202,122,44,65,62,0,202,122,44,66,62,0,202,122,44,67,62,0,202,122,44,68,62,0,202,122,44,69,62,0,202,122,44,70,62,0,202,122,44,71,62,0,202,122,44,72,62,0,202,122,44,73,62,0,202,122,44,74,62,0,202,122,44,75,62,0,202,122,44,76,62,0,202,122,44,77,62,0,202,122,44,78,62,0,202,122,44,79,62,0,202,122,44,80,62,0,202,122,44,81,62,0,202,122,44,82,62,0,202,122,44,83,62,0,202,122,44,84,62,0,202,122,44,85,62,0,202,122,44,-40,63,0,202,122,44,-39,63,0,202,122,44,-38,63,0,202,122,44,-37,63,0,202,122,44,-36,63,0,202,122,44,-35,63,0,202,122,44,-34,63,0,202,122,44,-33,63,0,202,122,44,-32,63,0,202,122,44,-31,63,0,202,122,44,-30,63,0,202,122,44,-29,63,0,202,122,44,-28,63,0,202,122,44,-27,63,0,202,122,44,-26,63,0,202,122,44,-25,63,0,202,122,44,-24,63,0,202,122,44,-23,63,0,202,122,44,-22,63,0,202,122,44,-21,63,0,202,122,44,-20,63,0,202,122,44,-19,63,0,202,122,44,-18,63,0,202,122,44,-17,63,0,202,122,44,-16,63,0,202,122,44,-15,63,0,202,122,44,-14,63,0,202,122,44,-13,63,0,202,122,44,-12,63,0,202,122,44,-11,63,0,202,122,44,-10,63,0,202,122,44,-9,63,0,202,122,44,-8,63,0,202,122,44,-7,63,0,202,122,44,-6,63,0,202,122,44,-5,63,0,202,122,44,-4,63,0,202,122,44,-3,63,0,202,122,44,-2,63,0,202,122,44,-1,63,0,202,122,44,0,63,0,202,122,44,1,63,0,202,122,44,2,63,0,202,122,44,3,63,0,202,122,44,4,63,0,202,122,44,5,63,0,202,122,44,6,63,0,202,122,44,7,63,0,202,122,44,8,63,0,202,122,44,9,63,0,202,122,44,10,63,0,202,122,44,11,63,0,202,122,44,12,63,0,202,122,44,13,63,0,202,122,44,14,63,0,202,122,44,15,63,0,202,122,44,16,63,0,202,122,44,17,63,0,202,122,44,18,63,0,202,122,44,19,63,0,202,122,44,20,63,0,202,122,44,21,63,0,202,122,44,22,63,0,202,122,44,23,63,0,202,122,44,24,63,0,202,122,44,25,63,0,202,122,44,26,63,0,202,122,44,27,63,0,202,122,44,28,63,0,202,122,44,29,63,0,202,122,44,30,63,0,202,122,44,31,63,0,202,122,44,32,63,0,202,122,44,33,63,0,202,122,44,34,63,0,202,122,44,35,63,0,202,122,44,36,63,0,202,122,44,37,63,0,202,122,44,38,63,0,202,122,44,39,63,0,202,122,44,40,63,0,202,122,44,41,63,0,202,122,44,42,63,0,202,122,44,43,63,0,202,122,44,44,63,0,202,122,44,45,63,0,202,122,44,46,63,0,202,122,44,47,63,0,202,122,44,48,63,0,202,122,44,49,63,0,202,122,44,50,63,0,202,122,44,51,63,0,202,122,44,52,63,0,202,122,44,53,63,0,202,122,44,54,63,0,202,122,44,55,63,0,202,122,44,56,63,0,202,122,44,57,63,0,202,122,44,58,63,0,202,122,44,59,63,0,202,122,44,60,63,0,202,122,44,61,63,0,202,122,44,62,63,0,202,122,44,63,63,0,202,122,44,64,63,0,202,122,44,65,63,0,202,122,44,66,63,0,202,122,44,67,63,0,202,122,44,68,63,0,202,122,44,69,63,0,202,122,44,70,63,0,202,122,44,71,63,0,202,122,44,72,63,0,202,122,44,73,63,0,202,122,44,74,63,0,202,122,44,75,63,0,202,122,44,76,63,0,202,122,44,77,63,0,202,122,44,78,63,0,202,122,44,79,63,0,202,122,44,80,63,0,202,122,44,81,63,0,202,122,44,82,63,0,202,122,44,83,63,0,202,122,44,84,63,0,202,122,44,85,63,0,202,122,44,-40,64,0,202,122,44,-39,64,0,202,122,44,-38,64,0,202,122,44,-37,64,0,202,122,44,-36,64,0,202,122,44,-35,64,0,202,122,44,-34,64,0,202,122,44,-33,64,0,202,122,44,-32,64,0,202,122,44,-31,64,0,202,122,44,-30,64,0,202,122,44,-29,64,0,202,122,44,-28,64,0,202,122,44,-27,64,0,202,122,44,-26,64,0,202,122,44,-25,64,0,202,122,44,-24,64,0,202,122,44,-23,64,0,202,122,44,-22,64,0,202,122,44,-21,64,0,202,122,44,-20,64,0,202,122,44,-19,64,0,202,122,44,-18,64,0,202,122,44,-17,64,0,202,122,44,-16,64,0,202,122,44,-15,64,0,202,122,44,-14,64,0,202,122,44,-13,64,0,202,122,44,-12,64,0,202,122,44,-11,64,0,202,122,44,-10,64,0,202,122,44,-9,64,0,202,122,44,-8,64,0,202,122,44,-7,64,0,202,122,44,-6,64,0,202,122,44,-5,64,0,202,122,44,-4,64,0,202,122,44,-3,64,0,202,122,44,-2,64,0,202,122,44,-1,64,0,202,122,44,0,64,0,202,122,44,1,64,0,202,122,44,2,64,0,202,122,44,3,64,0,202,122,44,4,64,0,202,122,44,5,64,0,202,122,44,6,64,0,202,122,44,7,64,0,202,122,44,8,64,0,202,122,44,9,64,0,202,122,44,10,64,0,202,122,44,11,64,0,202,122,44,12,64,0,202,122,44,13,64,0,202,122,44,14,64,0,202,122,44,15,64,0,202,122,44,16,64,0,202,122,44,17,64,0,202,122,44,18,64,0,202,122,44,19,64,0,202,122,44,20,64,0,202,122,44,21,64,0,202,122,44,22,64,0,202,122,44,23,64,0,202,122,44,24,64,0,202,122,44,25,64,0,202,122,44,26,64,0,202,122,44,27,64,0,202,122,44,28,64,0,202,122,44,29,64,0,202,122,44,30,64,0,202,122,44,31,64,0,202,122,44,32,64,0,202,122,44,33,64,0,202,122,44,34,64,0,202,122,44,35,64,0,202,122,44,36,64,0,202,122,44,37,64,0,202,122,44,38,64,0,202,122,44,39,64,0,202,122,44,40,64,0,202,122,44,41,64,0,202,122,44,42,64,0,202,122,44,43,64,0,202,122,44,44,64,0,202,122,44,45,64,0,202,122,44,46,64,0,202,122,44,47,64,0,202,122,44,48,64,0,202,122,44,49,64,0,202,122,44,50,64,0,202,122,44,51,64,0,202,122,44,52,64,0,202,122,44,53,64,0,202,122,44,54,64,0,202,122,44,55,64,0,202,122,44,56,64,0,202,122,44,57,64,0,202,122,44,58,64,0,202,122,44,59,64,0,202,122,44,60,64,0,202,122,44,61,64,0,202,122,44,62,64,0,202,122,44,63,64,0,202,122,44,64,64,0,202,122,44,65,64,0,202,122,44,66,64,0,202,122,44,67,64,0,202,122,44,68,64,0,202,122,44,69,64,0,202,122,44,70,64,0,202,122,44,71,64,0,202,122,44,72,64,0,202,122,44,73,64,0,202,122,44,74,64,0,202,122,44,75,64,0,202,122,44,76,64,0,202,122,44,77,64,0,202,122,44,78,64,0,202,122,44,79,64,0,202,122,44,80,64,0,202,122,44,81,64,0,202,122,44,82,64,0,202,122,44,83,64,0,202,122,44,84,64,0,202,122,44,85,64,0,202,122,44,-40,65,0,202,122,44,-39,65,0,202,122,44,-38,65,0,202,122,44,-37,65,0,202,122,44,-36,65,0,202,122,44,-35,65,0,202,122,44,-34,65,0,202,122,44,-33,65,0,202,122,44,-32,65,0,202,122,44,-31,65,0,202,122,44,-30,65,0,202,122,44,-29,65,0,202,122,44,-28,65,0,202,122,44,-27,65,0,202,122,44,-26,65,0,202,122,44,-25,65,0,202,122,44,-24,65,0,202,122,44,-23,65,0,202,122,44,-22,65,0,202,122,44,-21,65,0,202,122,44,-20,65,0,202,122,44,-19,65,0,202,122,44,-18,65,0,202,122,44,-17,65,0,202,122,44,-16,65,0,202,122,44,-15,65,0,202,122,44,-14,65,0,202,122,44,-13,65,0,202,122,44,-12,65,0,202,122,44,-11,65,0,202,122,44,-10,65,0,202,122,44,-9,65,0,202,122,44,-8,65,0,202,122,44,-7,65,0,202,122,44,-6,65,0,202,122,44,-5,65,0,202,122,44,-4,65,0,202,122,44,-3,65,0,202,122,44,-2,65,0,202,122,44,-1,65,0,202,122,44,0,65,0,202,122,44,1,65,0,202,122,44,2,65,0,202,122,44,3,65,0,202,122,44,4,65,0,202,122,44,5,65,0,202,122,44,6,65,0,202,122,44,7,65,0,202,122,44,8,65,0,202,122,44,9,65,0,202,122,44,10,65,0,202,122,44,11,65,0,202,122,44,12,65,0,202,122,44,13,65,0,202,122,44,14,65,0,202,122,44,15,65,0,202,122,44,16,65,0,202,122,44,17,65,0,202,122,44,18,65,0,202,122,44,19,65,0,202,122,44,20,65,0,202,122,44,21,65,0,202,122,44,22,65,0,202,122,44,23,65,0,202,122,44,24,65,0,202,122,44,25,65,0,202,122,44,26,65,0,202,122,44,27,65,0,202,122,44,28,65,0,202,122,44,29,65,0,202,122,44,30,65,0,202,122,44,31,65,0,202,122,44,32,65,0,202,122,44,33,65,0,202,122,44,34,65,0,202,122,44,35,65,0,202,122,44,36,65,0,202,122,44,37,65,0,202,122,44,38,65,0,202,122,44,39,65,0,202,122,44,40,65,0,202,122,44,41,65,0,202,122,44,42,65,0,202,122,44,43,65,0,202,122,44,44,65,0,202,122,44,45,65,0,202,122,44,46,65,0,202,122,44,47,65,0,202,122,44,48,65,0,202,122,44,49,65,0,202,122,44,50,65,0,202,122,44,51,65,0,202,122,44,52,65,0,202,122,44,53,65,0,202,122,44,54,65,0,202,122,44,55,65,0,202,122,44,56,65,0,202,122,44,57,65,0,202,122,44,58,65,0,202,122,44,59,65,0,202,122,44,60,65,0,202,122,44,61,65,0,202,122,44,62,65,0,202,122,44,63,65,0,202,122,44,64,65,0,202,122,44,65,65,0,202,122,44,66,65,0,202,122,44,67,65,0,202,122,44,68,65,0,202,122,44,69,65,0,202,122,44,70,65,0,202,122,44,71,65,0,202,122,44,72,65,0,202,122,44,73,65,0,202,122,44,74,65,0,202,122,44,75,65,0,202,122,44,76,65,0,202,122,44,77,65,0,202,122,44,78,65,0,202,122,44,79,65,0,202,122,44,80,65,0,202,122,44,81,65,0,202,122,44,82,65,0,202,122,44,83,65,0,202,122,44,84,65,0,202,122,44,85,65,0,202,122,44,-40,66,0,202,122,44,-39,66,0,202,122,44,-38,66,0,202,122,44,-37,66,0,202,122,44,-36,66,0,202,122,44,-35,66,0,202,122,44,-34,66,0,202,122,44,-33,66,0,202,122,44,-32,66,0,202,122,44,-31,66,0,202,122,44,-30,66,0,202,122,44,-29,66,0,202,122,44,-28,66,0,202,122,44,-27,66,0,202,122,44,-26,66,0,202,122,44,-25,66,0,202,122,44,-24,66,0,202,122,44,-23,66,0,202,122,44,-22,66,0,202,122,44,-21,66,0,202,122,44,-20,66,0,202,122,44,-19,66,0,202,122,44,-18,66,0,202,122,44,-17,66,0,202,122,44,-16,66,0,202,122,44,-15,66,0,202,122,44,-14,66,0,202,122,44,-13,66,0,202,122,44,-12,66,0,202,122,44,-11,66,0,202,122,44,-10,66,0,202,122,44,-9,66,0,202,122,44,-8,66,0,202,122,44,-7,66,0,202,122,44,-6,66,0,202,122,44,-5,66,0,202,122,44,-4,66,0,202,122,44,-3,66,0,202,122,44,-2,66,0,202,122,44,-1,66,0,202,122,44,0,66,0,202,122,44,1,66,0,202,122,44,2,66,0,202,122,44,3,66,0,202,122,44,4,66,0,202,122,44,5,66,0,202,122,44,6,66,0,202,122,44,7,66,0,202,122,44,8,66,0,202,122,44,9,66,0,202,122,44,10,66,0,202,122,44,11,66,0,202,122,44,12,66,0,202,122,44,13,66,0,202,122,44,14,66,0,202,122,44,15,66,0,202,122,44,16,66,0,202,122,44,17,66,0,202,122,44,18,66,0,202,122,44,19,66,0,202,122,44,20,66,0,202,122,44,21,66,0,202,122,44,22,66,0,202,122,44,23,66,0,202,122,44,24,66,0,202,122,44,25,66,0,202,122,44,26,66,0,202,122,44,27,66,0,202,122,44,28,66,0,202,122,44,29,66,0,202,122,44,30,66,0,202,122,44,31,66,0,202,122,44,32,66,0,202,122,44,33,66,0,202,122,44,34,66,0,202,122,44,35,66,0,202,122,44,36,66,0,202,122,44,37,66,0,202,122,44,38,66,0,202,122,44,39,66,0,202,122,44,40,66,0,202,122,44,41,66,0,202,122,44,42,66,0,202,122,44,43,66,0,202,122,44,44,66,0,202,122,44,45,66,0,202,122,44,46,66,0,202,122,44,47,66,0,202,122,44,48,66,0,202,122,44,49,66,0,202,122,44,50,66,0,202,122,44,51,66,0,202,122,44,52,66,0,202,122,44,53,66,0,202,122,44,54,66,0,202,122,44,55,66,0,202,122,44,56,66,0,202,122,44,57,66,0,202,122,44,58,66,0,202,122,44,59,66,0,202,122,44,60,66,0,202,122,44,61,66,0,202,122,44,62,66,0,202,122,44,63,66,0,202,122,44,64,66,0,202,122,44,65,66,0,202,122,44,66,66,0,202,122,44,67,66,0,202,122,44,68,66,0,202,122,44,69,66,0,202,122,44,70,66,0,202,122,44,71,66,0,202,122,44,72,66,0,202,122,44,73,66,0,202,122,44,74,66,0,202,122,44,75,66,0,202,122,44,76,66,0,202,122,44,77,66,0,202,122,44,78,66,0,202,122,44,79,66,0,202,122,44,80,66,0,202,122,44,81,66,0,202,122,44,82,66,0,202,122,44,83,66,0,202,122,44,84,66,0,202,122,44,85,66,0,202,122,44,-40,67,0,202,122,44,-39,67,0,202,122,44,-38,67,0,202,122,44,-37,67,0,202,122,44,-36,67,0,202,122,44,-35,67,0,202,122,44,-34,67,0,202,122,44,-33,67,0,202,122,44,-32,67,0,202,122,44,-31,67,0,202,122,44,-30,67,0,202,122,44,-29,67,0,202,122,44,-28,67,0,202,122,44,-27,67,0,202,122,44,-26,67,0,202,122,44,-25,67,0,202,122,44,-24,67,0,202,122,44,-23,67,0,202,122,44,-22,67,0,202,122,44,-21,67,0,202,122,44,-20,67,0,202,122,44,-19,67,0,202,122,44,-18,67,0,202,122,44,-17,67,0,202,122,44,-16,67,0,202,122,44,-15,67,0,202,122,44,-14,67,0,202,122,44,-13,67,0,202,122,44,-12,67,0,202,122,44,-11,67,0,202,122,44,-10,67,0,202,122,44,-9,67,0,202,122,44,-8,67,0,202,122,44,-7,67,0,202,122,44,-6,67,0,202,122,44,-5,67,0,202,122,44,-4,67,0,202,122,44,-3,67,0,202,122,44,-2,67,0,202,122,44,-1,67,0,202,122,44,0,67,0,202,122,44,1,67,0,202,122,44,2,67,0,202,122,44,3,67,0,202,122,44,4,67,0,202,122,44,5,67,0,202,122,44,6,67,0,202,122,44,7,67,0,202,122,44,8,67,0,202,122,44,9,67,0,202,122,44,10,67,0,202,122,44,11,67,0,202,122,44,12,67,0,202,122,44,13,67,0,202,122,44,14,67,0,202,122,44,15,67,0,202,122,44,16,67,0,202,122,44,17,67,0,202,122,44,18,67,0,202,122,44,19,67,0,202,122,44,20,67,0,202,122,44,21,67,0,202,122,44,22,67,0,202,122,44,23,67,0,202,122,44,24,67,0,202,122,44,25,67,0,202,122,44,26,67,0,202,122,44,27,67,0,202,122,44,28,67,0,202,122,44,29,67,0,202,122,44,30,67,0,202,122,44,31,67,0,202,122,44,32,67,0,202,122,44,33,67,0,202,122,44,34,67,0,202,122,44,35,67,0,202,122,44,36,67,0,202,122,44,37,67,0,202,122,44,38,67,0,202,122,44,39,67,0,202,122,44,40,67,0,202,122,44,41,67,0,202,122,44,42,67,0,202,122,44,43,67,0,202,122,44,44,67,0,202,122,44,45,67,0,202,122,44,46,67,0,202,122,44,47,67,0,202,122,44,48,67,0,202,122,44,49,67,0,202,122,44,50,67,0,202,122,44,51,67,0,202,122,44,52,67,0,202,122,44,53,67,0,202,122,44,54,67,0,202,122,44,55,67,0,202,122,44,56,67,0,202,122,44,57,67,0,202,122,44,58,67,0,202,122,44,59,67,0,202,122,44,60,67,0,202,122,44,61,67,0,202,122,44,62,67,0,202,122,44,63,67,0,202,122,44,64,67,0,202,122,44,65,67,0,202,122,44,66,67,0,202,122,44,67,67,0,202,122,44,68,67,0,202,122,44,69,67,0,202,122,44,70,67,0,202,122,44,71,67,0,202,122,44,72,67,0,202,122,44,73,67,0,202,122,44,74,67,0,202,122,44,75,67,0,202,122,44,76,67,0,202,122,44,77,67,0,202,122,44,78,67,0,202,122,44,79,67,0,202,122,44,80,67,0,202,122,44,81,67,0,202,122,44,82,67,0,202,122,44,83,67,0,202,122,44,84,67,0,202,122,44,85,67,0,202,122,44,-40,68,0,202,122,44,-39,68,0,202,122,44,-38,68,0,202,122,44,-37,68,0,202,122,44,-36,68,0,202,122,44,-35,68,0,202,122,44,-34,68,0,202,122,44,-33,68,0,202,122,44,-32,68,0,202,122,44,-31,68,0,202,122,44,-30,68,0,202,122,44,-29,68,0,202,122,44,-28,68,0,202,122,44,-27,68,0,202,122,44,-26,68,0,202,122,44,-25,68,0,202,122,44,-24,68,0,202,122,44,-23,68,0,202,122,44,-22,68,0,202,122,44,-21,68,0,202,122,44,-20,68,0,202,122,44,-19,68,0,202,122,44,-18,68,0,202,122,44,-17,68,0,202,122,44,-16,68,0,202,122,44,-15,68,0,202,122,44,-14,68,0,202,122,44,-13,68,0,202,122,44,-12,68,0,202,122,44,-11,68,0,202,122,44,-10,68,0,202,122,44,-9,68,0,202,122,44,-8,68,0,202,122,44,-7,68,0,202,122,44,-6,68,0,202,122,44,-5,68,0,202,122,44,-4,68,0,202,122,44,-3,68,0,202,122,44,-2,68,0,202,122,44,-1,68,0,202,122,44,0,68,0,202,122,44,1,68,0,202,122,44,2,68,0,202,122,44,3,68,0,202,122,44,4,68,0,202,122,44,5,68,0,202,122,44,6,68,0,202,122,44,7,68,0,202,122,44,8,68,0,202,122,44,9,68,0,202,122,44,10,68,0,202,122,44,11,68,0,202,122,44,12,68,0,202,122,44,13,68,0,202,122,44,14,68,0,202,122,44,15,68,0,202,122,44,16,68,0,202,122,44,17,68,0,202,122,44,18,68,0,202,122,44,19,68,0,202,122,44,20,68,0,202,122,44,21,68,0,202,122,44,22,68,0,202,122,44,23,68,0,202,122,44,24,68,0,202,122,44,25,68,0,202,122,44,26,68,0,202,122,44,27,68,0,202,122,44,28,68,0,202,122,44,29,68,0,202,122,44,30,68,0,202,122,44,31,68,0,202,122,44,32,68,0,202,122,44,33,68,0,202,122,44,34,68,0,202,122,44,35,68,0,202,122,44,36,68,0,202,122,44,37,68,0,202,122,44,38,68,0,202,122,44,39,68,0,202,122,44,40,68,0,202,122,44,41,68,0,202,122,44,42,68,0,202,122,44,43,68,0,202,122,44,44,68,0,202,122,44,45,68,0,202,122,44,46,68,0,202,122,44,47,68,0,202,122,44,48,68,0,202,122,44,49,68,0,202,122,44,50,68,0,202,122,44,51,68,0,202,122,44,52,68,0,202,122,44,53,68,0,202,122,44,54,68,0,202,122,44,55,68,0,202,122,44,56,68,0,202,122,44,57,68,0,202,122,44,58,68,0,202,122,44,59,68,0,202,122,44,60,68,0,202,122,44,61,68,0,202,122,44,62,68,0,202,122,44,63,68,0,202,122,44,64,68,0,202,122,44,65,68,0,202,122,44,66,68,0,202,122,44,67,68,0,202,122,44,68,68,0,202,122,44,69,68,0,202,122,44,70,68,0,202,122,44,71,68,0,202,122,44,72,68,0,202,122,44,73,68,0,202,122,44,74,68,0,202,122,44,75,68,0,202,122,44,76,68,0,202,122,44,77,68,0,202,122,44,78,68,0,202,122,44,79,68,0,202,122,44,80,68,0,202,122,44,81,68,0,202,122,44,82,68,0,202,122,44,83,68,0,202,122,44,84,68,0,202,122,44,85,68,0,202,122,44,-40,69,0,202,122,44,-39,69,0,202,122,44,-38,69,0,202,122,44,-37,69,0,202,122,44,-36,69,0,202,122,44,-35,69,0,202,122,44,-34,69,0,202,122,44,-33,69,0,202,122,44,-32,69,0,202,122,44,-31,69,0,202,122,44,-30,69,0,202,122,44,-29,69,0,202,122,44,-28,69,0,202,122,44,-27,69,0,202,122,44,-26,69,0,202,122,44,-25,69,0,202,122,44,-24,69,0,202,122,44,-23,69,0,202,122,44,-22,69,0,202,122,44,-21,69,0,202,122,44,-20,69,0,202,122,44,-19,69,0,202,122,44,-18,69,0,202,122,44,-17,69,0,202,122,44,-16,69,0,202,122,44,-15,69,0,202,122,44,-14,69,0,202,122,44,-13,69,0,202,122,44,-12,69,0,202,122,44,-11,69,0,202,122,44,-10,69,0,202,122,44,-9,69,0,202,122,44,-8,69,0,202,122,44,-7,69,0,202,122,44,-6,69,0,202,122,44,-5,69,0,202,122,44,-4,69,0,202,122,44,-3,69,0,202,122,44,-2,69,0,202,122,44,-1,69,0,202,122,44,0,69,0,202,122,44,1,69,0,202,122,44,2,69,0,202,122,44,3,69,0,202,122,44,4,69,0,202,122,44,5,69,0,202,122,44,6,69,0,202,122,44,7,69,0,202,122,44,8,69,0,202,122,44,9,69,0,202,122,44,10,69,0,202,122,44,11,69,0,202,122,44,12,69,0,202,122,44,13,69,0,202,122,44,14,69,0,202,122,44,15,69,0,202,122,44,16,69,0,202,122,44,17,69,0,202,122,44,18,69,0,202,122,44,19,69,0,202,122,44,20,69,0,202,122,44,21,69,0,202,122,44,22,69,0,202,122,44,23,69,0,202,122,44,24,69,0,202,122,44,25,69,0,202,122,44,26,69,0,202,122,44,27,69,0,202,122,44,28,69,0,202,122,44,29,69,0,202,122,44,30,69,0,202,122,44,31,69,0,202,122,44,32,69,0,202,122,44,33,69,0,202,122,44,34,69,0,202,122,44,35,69,0,202,122,44,36,69,0,202,122,44,37,69,0,202,122,44,38,69,0,202,122,44,39,69,0,202,122,44,40,69,0,202,122,44,41,69,0,202,122,44,42,69,0,202,122,44,43,69,0,202,122,44,44,69,0,202,122,44,45,69,0,202,122,44,46,69,0,202,122,44,47,69,0,202,122,44,48,69,0,202,122,44,49,69,0,202,122,44,50,69,0,202,122,44,51,69,0,202,122,44,52,69,0,202,122,44,53,69,0,202,122,44,54,69,0,202,122,44,55,69,0,202,122,44,56,69,0,202,122,44,57,69,0,202,122,44,58,69,0,202,122,44,59,69,0,202,122,44,60,69,0,202,122,44,61,69,0,202,122,44,62,69,0,202,122,44,63,69,0,202,122,44,64,69,0,202,122,44,65,69,0,202,122,44,66,69,0,202,122,44,67,69,0,202,122,44,68,69,0,202,122,44,69,69,0,202,122,44,70,69,0,202,122,44,71,69,0,202,122,44,72,69,0,202,122,44,73,69,0,202,122,44,74,69,0,202,122,44,75,69,0,202,122,44,76,69,0,202,122,44,77,69,0,202,122,44,78,69,0,202,122,44,79,69,0,202,122,44,80,69,0,202,122,44,81,69,0,202,122,44,82,69,0,202,122,44,83,69,0,202,122,44,84,69,0,202,122,44,85,69,0,202,122,44,-40,70,0,202,122,44,-39,70,0,202,122,44,-38,70,0,202,122,44,-37,70,0,202,122,44,-36,70,0,202,122,44,-35,70,0,202,122,44,-34,70,0,202,122,44,-33,70,0,202,122,44,-32,70,0,202,122,44,-31,70,0,202,122,44,-30,70,0,202,122,44,-29,70,0,202,122,44,-28,70,0,202,122,44,-27,70,0,202,122,44,-26,70,0,202,122,44,-25,70,0,202,122,44,-24,70,0,202,122,44,-23,70,0,202,122,44,-22,70,0,202,122,44,-21,70,0,202,122,44,-20,70,0,202,122,44,-19,70,0,202,122,44,-18,70,0,202,122,44,-17,70,0,202,122,44,-16,70,0,202,122,44,-15,70,0,202,122,44,-14,70,0,202,122,44,-13,70,0,202,122,44,-12,70,0,202,122,44,-11,70,0,202,122,44,-10,70,0,202,122,44,-9,70,0,202,122,44,-8,70,0,202,122,44,-7,70,0,202,122,44,-6,70,0,202,122,44,-5,70,0,202,122,44,-4,70,0,202,122,44,-3,70,0,202,122,44,-2,70,0,202,122,44,-1,70,0,202,122,44,0,70,0,202,122,44,1,70,0,202,122,44,2,70,0,202,122,44,3,70,0,202,122,44,4,70,0,202,122,44,5,70,0,202,122,44,6,70,0,202,122,44,7,70,0,202,122,44,8,70,0,202,122,44,9,70,0,202,122,44,10,70,0,202,122,44,11,70,0,202,122,44,12,70,0,202,122,44,13,70,0,202,122,44,14,70,0,202,122,44,15,70,0,202,122,44,16,70,0,202,122,44,17,70,0,202,122,44,18,70,0,202,122,44,19,70,0,202,122,44,20,70,0,202,122,44,21,70,0,202,122,44,22,70,0,202,122,44,23,70,0,202,122,44,24,70,0,202,122,44,25,70,0,202,122,44,26,70,0,202,122,44,27,70,0,202,122,44,28,70,0,202,122,44,29,70,0,202,122,44,30,70,0,202,122,44,31,70,0,202,122,44,32,70,0,202,122,44,33,70,0,202,122,44,34,70,0,202,122,44,35,70,0,202,122,44,36,70,0,202,122,44,37,70,0,202,122,44,38,70,0,202,122,44,39,70,0,202,122,44,40,70,0,202,122,44,41,70,0,202,122,44,42,70,0,202,122,44,43,70,0,202,122,44,44,70,0,202,122,44,45,70,0,202,122,44,46,70,0,202,122,44,47,70,0,202,122,44,48,70,0,202,122,44,49,70,0,202,122,44,50,70,0,202,122,44,51,70,0,202,122,44,52,70,0,202,122,44,53,70,0,202,122,44,54,70,0,202,122,44,55,70,0,202,122,44,56,70,0,202,122,44,57,70,0,202,122,44,58,70,0,202,122,44,59,70,0,202,122,44,60,70,0,202,122,44,61,70,0,202,122,44,62,70,0,202,122,44,63,70,0,202,122,44,64,70,0,202,122,44,65,70,0,202,122,44,66,70,0,202,122,44,67,70,0,202,122,44,68,70,0,202,122,44,69,70,0,202,122,44,70,70,0,202,122,44,71,70,0,202,122,44,72,70,0,202,122,44,73,70,0,202,122,44,74,70,0,202,122,44,75,70,0,202,122,44,76,70,0,202,122,44,77,70,0,202,122,44,78,70,0,202,122,44,79,70,0,202,122,44,80,70,0,202,122,44,81,70,0,202,122,44,82,70,0,202,122,44,83,70,0,202,122,44,84,70,0,202,122,44,85,70,0,202,122,44,-40,71,0,202,122,44,-39,71,0,202,122,44,-38,71,0,202,122,44,-37,71,0,202,122,44,-36,71,0,202,122,44,-35,71,0,202,122,44,-34,71,0,202,122,44,-33,71,0,202,122,44,-32,71,0,202,122,44,-31,71,0,202,122,44,-30,71,0,202,122,44,-29,71,0,202,122,44,-28,71,0,202,122,44,-27,71,0,202,122,44,-26,71,0,202,122,44,-25,71,0,202,122,44,-24,71,0,202,122,44,-23,71,0,202,122,44,-22,71,0,202,122,44,-21,71,0,202,122,44,-20,71,0,202,122,44,-19,71,0,202,122,44,-18,71,0,202,122,44,-17,71,0,202,122,44,-16,71,0,202,122,44,-15,71,0,202,122,44,-14,71,0,202,122,44,-13,71,0,202,122,44,-12,71,0,202,122,44,-11,71,0,202,122,44,-10,71,0,202,122,44,-9,71,0,202,122,44,-8,71,0,202,122,44,-7,71,0,202,122,44,-6,71,0,202,122,44,-5,71,0,202,122,44,-4,71,0,202,122,44,-3,71,0,202,122,44,-2,71,0,202,122,44,-1,71,0,202,122,44,0,71,0,202,122,44,1,71,0,202,122,44,2,71,0,202,122,44,3,71,0,202,122,44,4,71,0,202,122,44,5,71,0,202,122,44,6,71,0,202,122,44,7,71,0,202,122,44,8,71,0,202,122,44,9,71,0,202,122,44,10,71,0,202,122,44,11,71,0,202,122,44,12,71,0,202,122,44,13,71,0,202,122,44,14,71,0,202,122,44,15,71,0,202,122,44,16,71,0,202,122,44,17,71,0,202,122,44,18,71,0,202,122,44,19,71,0,202,122,44,20,71,0,202,122,44,21,71,0,202,122,44,22,71,0,202,122,44,23,71,0,202,122,44,24,71,0,202,122,44,25,71,0,202,122,44,26,71,0,202,122,44,27,71,0,202,122,44,28,71,0,202,122,44,29,71,0,202,122,44,30,71,0,202,122,44,31,71,0,202,122,44,32,71,0,202,122,44,33,71,0,202,122,44,34,71,0,202,122,44,35,71,0,202,122,44,36,71,0,202,122,44,37,71,0,202,122,44,38,71,0,202,122,44,39,71,0,202,122,44,40,71,0,202,122,44,41,71,0,202,122,44,42,71,0,202,122,44,43,71,0,202,122,44,44,71,0,202,122,44,45,71,0,202,122,44,46,71,0,202,122,44,47,71,0,202,122,44,48,71,0,202,122,44,49,71,0,202,122,44,50,71,0,202,122,44,51,71,0,202,122,44,52,71,0,202,122,44,53,71,0,202,122,44,54,71,0,202,122,44,55,71,0,202,122,44,56,71,0,202,122,44,57,71,0,202,122,44,58,71,0,202,122,44,59,71,0,202,122,44,60,71,0,202,122,44,61,71,0,202,122,44,62,71,0,202,122,44,63,71,0,202,122,44,64,71,0,202,122,44,65,71,0,202,122,44,66,71,0,202,122,44,67,71,0,202,122,44,68,71,0,202,122,44,69,71,0,202,122,44,70,71,0,202,122,44,71,71,0,202,122,44,72,71,0,202,122,44,73,71,0,202,122,44,74,71,0,202,122,44,75,71,0,202,122,44,76,71,0,202,122,44,77,71,0,202,122,44,78,71,0,202,122,44,79,71,0,202,122,44,80,71,0,202,122,44,81,71,0,202,122,44,82,71,0,202,122,44,83,71,0,202,122,44,84,71,0,202,122,44,85,71,0,202,122,44,-40,72,0,202,122,44,-39,72,0,202,122,44,-38,72,0,202,122,44,-37,72,0,202,122,44,-36,72,0,202,122,44,-35,72,0,202,122,44,-34,72,0,202,122,44,-33,72,0,202,122,44,-32,72,0,202,122,44,-31,72,0,202,122,44,-30,72,0,202,122,44,-29,72,0,202,122,44,-28,72,0,202,122,44,-27,72,0,202,122,44,-26,72,0,202,122,44,-25,72,0,202,122,44,-24,72,0,202,122,44,-23,72,0,202,122,44,-22,72,0,202,122,44,-21,72,0,202,122,44,-20,72,0,202,122,44,-19,72,0,202,122,44,-18,72,0,202,122,44,-17,72,0,202,122,44,-16,72,0,202,122,44,-15,72,0,202,122,44,-14,72,0,202,122,44,-13,72,0,202,122,44,-12,72,0,202,122,44,-11,72,0,202,122,44,-10,72,0,202,122,44,-9,72,0,202,122,44,-8,72,0,202,122,44,-7,72,0,202,122,44,-6,72,0,202,122,44,-5,72,0,202,122,44,-4,72,0,202,122,44,-3,72,0,202,122,44,-2,72,0,202,122,44,-1,72,0,202,122,44,0,72,0,202,122,44,1,72,0,202,122,44,2,72,0,202,122,44,3,72,0,202,122,44,4,72,0,202,122,44,5,72,0,202,122,44,6,72,0,202,122,44,7,72,0,202,122,44,8,72,0,202,122,44,9,72,0,202,122,44,10,72,0,202,122,44,11,72,0,202,122,44,12,72,0,202,122,44,13,72,0,202,122,44,14,72,0,202,122,44,15,72,0,202,122,44,16,72,0,202,122,44,17,72,0,202,122,44,18,72,0,202,122,44,19,72,0,202,122,44,20,72,0,202,122,44,21,72,0,202,122,44,22,72,0,202,122,44,23,72,0,202,122,44,24,72,0,202,122,44,25,72,0,202,122,44,26,72,0,202,122,44,27,72,0,202,122,44,28,72,0,202,122,44,29,72,0,202,122,44,30,72,0,202,122,44,31,72,0,202,122,44,32,72,0,202,122,44,33,72,0,202,122,44,34,72,0,202,122,44,35,72,0,202,122,44,36,72,0,202,122,44,37,72,0,202,122,44,38,72,0,202,122,44,39,72,0,202,122,44,40,72,0,202,122,44,41,72,0,202,122,44,42,72,0,202,122,44,43,72,0,202,122,44,44,72,0,202,122,44,45,72,0,202,122,44,46,72,0,202,122,44,47,72,0,202,122,44,48,72,0,202,122,44,49,72,0,202,122,44,50,72,0,202,122,44,51,72,0,202,122,44,52,72,0,202,122,44,53,72,0,202,122,44,54,72,0,202,122,44,55,72,0,202,122,44,56,72,0,202,122,44,57,72,0,202,122,44,58,72,0,202,122,44,59,72,0,202,122,44,60,72,0,202,122,44,61,72,0,202,122,44,62,72,0,202,122,44,63,72,0,202,122,44,64,72,0,202,122,44,65,72,0,202,122,44,66,72,0,202,122,44,67,72,0,202,122,44,68,72,0,202,122,44,69,72,0,202,122,44,70,72,0,202,122,44,71,72,0,202,122,44,72,72,0,202,122,44,73,72,0,202,122,44,74,72,0,202,122,44,75,72,0,202,122,44,76,72,0,202,122,44,77,72,0,202,122,44,78,72,0,202,122,44,79,72,0,202,122,44,80,72,0,202,122,44,81,72,0,202,122,44,82,72,0,202,122,44,83,72,0,202,122,44,84,72,0,202,122,44,85,72,0,202,122,44,-40,73,0,202,122,44,-39,73,0,202,122,44,-38,73,0,202,122,44,-37,73,0,202,122,44,-36,73,0,202,122,44,-35,73,0,202,122,44,-34,73,0,202,122,44,-33,73,0,202,122,44,-32,73,0,202,122,44,-31,73,0,202,122,44,-30,73,0,202,122,44,-29,73,0,202,122,44,-28,73,0,202,122,44,-27,73,0,202,122,44,-26,73,0,202,122,44,-25,73,0,202,122,44,-24,73,0,202,122,44,-23,73,0,202,122,44,-22,73,0,202,122,44,-21,73,0,202,122,44,-20,73,0,202,122,44,-19,73,0,202,122,44,-18,73,0,202,122,44,-17,73,0,202,122,44,-16,73,0,202,122,44,-15,73,0,202,122,44,-14,73,0,202,122,44,-13,73,0,202,122,44,-12,73,0,202,122,44,-11,73,0,202,122,44,-10,73,0,202,122,44,-9,73,0,202,122,44,-8,73,0,202,122,44,-7,73,0,202,122,44,-6,73,0,202,122,44,-5,73,0,202,122,44,-4,73,0,202,122,44,-3,73,0,202,122,44,-2,73,0,202,122,44,-1,73,0,202,122,44,0,73,0,202,122,44,1,73,0,202,122,44,2,73,0,202,122,44,3,73,0,202,122,44,4,73,0,202,122,44,5,73,0,202,122,44,6,73,0,202,122,44,7,73,0,202,122,44,8,73,0,202,122,44,9,73,0,202,122,44,10,73,0,202,122,44,11,73,0,202,122,44,12,73,0,202,122,44,13,73,0,202,122,44,14,73,0,202,122,44,15,73,0,202,122,44,16,73,0,202,122,44,17,73,0,202,122,44,18,73,0,202,122,44,19,73,0,202,122,44,20,73,0,202,122,44,21,73,0,202,122,44,22,73,0,202,122,44,23,73,0,202,122,44,24,73,0,202,122,44,25,73,0,202,122,44,26,73,0,202,122,44,27,73,0,202,122,44,28,73,0,202,122,44,29,73,0,202,122,44,30,73,0,202,122,44,31,73,0,202,122,44,32,73,0,202,122,44,33,73,0,202,122,44,34,73,0,202,122,44,35,73,0,202,122,44,36,73,0,202,122,44,37,73,0,202,122,44,38,73,0,202,122,44,39,73,0,202,122,44,40,73,0,202,122,44,41,73,0,202,122,44,42,73,0,202,122,44,43,73,0,202,122,44,44,73,0,202,122,44,45,73,0,202,122,44,46,73,0,202,122,44,47,73,0,202,122,44,48,73,0,202,122,44,49,73,0,202,122,44,50,73,0,202,122,44,51,73,0,202,122,44,52,73,0,202,122,44,53,73,0,202,122,44,54,73,0,202,122,44,55,73,0,202,122,44,56,73,0,202,122,44,57,73,0,202,122,44,58,73,0,202,122,44,59,73,0,202,122,44,60,73,0,202,122,44,61,73,0,202,122,44,62,73,0,202,122,44,63,73,0,202,122,44,64,73,0,202,122,44,65,73,0,202,122,44,66,73,0,202,122,44,67,73,0,202,122,44,68,73,0,202,122,44,69,73,0,202,122,44,70,73,0,202,122,44,71,73,0,202,122,44,72,73,0,202,122,44,73,73,0,202,122,44,74,73,0,202,122,44,75,73,0,202,122,44,76,73,0,202,122,44,77,73,0,202,122,44,78,73,0,202,122,44,79,73,0,202,122,44,80,73,0,202,122,44,81,73,0,202,122,44,82,73,0,202,122,44,83,73,0,202,122,44,84,73,0,202,122,44,85,73,0,202,122,44,-40,74,0,202,122,44,-39,74,0,202,122,44,-38,74,0,202,122,44,-37,74,0,202,122,44,-36,74,0,202,122,44,-35,74,0,202,122,44,-34,74,0,202,122,44,-33,74,0,202,122,44,-32,74,0,202,122,44,-31,74,0,202,122,44,-30,74,0,202,122,44,-29,74,0,202,122,44,-28,74,0,202,122,44,-27,74,0,202,122,44,-26,74,0,202,122,44,-25,74,0,202,122,44,-24,74,0,202,122,44,-23,74,0,202,122,44,-22,74,0,202,122,44,-21,74,0,202,122,44,-20,74,0,202,122,44,-19,74,0,202,122,44,-18,74,0,202,122,44,-17,74,0,202,122,44,-16,74,0,202,122,44,-15,74,0,202,122,44,-14,74,0,202,122,44,-13,74,0,202,122,44,-12,74,0,202,122,44,-11,74,0,202,122,44,-10,74,0,202,122,44,-9,74,0,202,122,44,-8,74,0,202,122,44,-7,74,0,202,122,44,-6,74,0,202,122,44,-5,74,0,202,122,44,-4,74,0,202,122,44,-3,74,0,202,122,44,-2,74,0,202,122,44,-1,74,0,202,122,44,0,74,0,202,122,44,1,74,0,202,122,44,2,74,0,202,122,44,3,74,0,202,122,44,4,74,0,202,122,44,5,74,0,202,122,44,6,74,0,202,122,44,7,74,0,202,122,44,8,74,0,202,122,44,9,74,0,202,122,44,10,74,0,202,122,44,11,74,0,202,122,44,12,74,0,202,122,44,13,74,0,202,122,44,14,74,0,202,122,44,15,74,0,202,122,44,16,74,0,202,122,44,17,74,0,202,122,44,18,74,0,202,122,44,19,74,0,202,122,44,20,74,0,202,122,44,21,74,0,202,122,44,22,74,0,202,122,44,23,74,0,202,122,44,24,74,0,202,122,44,25,74,0,202,122,44,26,74,0,202,122,44,27,74,0,202,122,44,28,74,0,202,122,44,29,74,0,202,122,44,30,74,0,202,122,44,31,74,0,202,122,44,32,74,0,202,122,44,33,74,0,202,122,44,34,74,0,202,122,44,35,74,0,202,122,44,36,74,0,202,122,44,37,74,0,202,122,44,38,74,0,202,122,44,39,74,0,202,122,44,40,74,0,202,122,44,41,74,0,202,122,44,42,74,0,202,122,44,43,74,0,202,122,44,44,74,0,202,122,44,45,74,0,202,122,44,46,74,0,202,122,44,47,74,0,202,122,44,48,74,0,202,122,44,49,74,0,202,122,44,50,74,0,202,122,44,51,74,0,202,122,44,52,74,0,202,122,44,53,74,0,202,122,44,54,74,0,202,122,44,55,74,0,202,122,44,56,74,0,202,122,44,57,74,0,202,122,44,58,74,0,202,122,44,59,74,0,202,122,44,60,74,0,202,122,44,61,74,0,202,122,44,62,74,0,202,122,44,63,74,0,202,122,44,64,74,0,202,122,44,65,74,0,202,122,44,66,74,0,202,122,44,67,74,0,202,122,44,68,74,0,202,122,44,69,74,0,202,122,44,70,74,0,202,122,44,71,74,0,202,122,44,72,74,0,202,122,44,73,74,0,202,122,44,74,74,0,202,122,44,75,74,0,202,122,44,76,74,0,202,122,44,77,74,0,202,122,44,78,74,0,202,122,44,79,74,0,202,122,44,80,74,0,202,122,44,81,74,0,202,122,44,82,74,0,202,122,44,83,74,0,202,122,44,84,74,0,202,122,44,85,74,0,202,122,44,-40,75,0,202,122,44,-39,75,0,202,122,44,-38,75,0,202,122,44,-37,75,0,202,122,44,-36,75,0,202,122,44,-35,75,0,202,122,44,-34,75,0,202,122,44,-33,75,0,202,122,44,-32,75,0,202,122,44,-31,75,0,202,122,44,-30,75,0,202,122,44,-29,75,0,202,122,44,-28,75,0,202,122,44,-27,75,0,202,122,44,-26,75,0,202,122,44,-25,75,0,202,122,44,-24,75,0,202,122,44,-23,75,0,202,122,44,-22,75,0,202,122,44,-21,75,0,202,122,44,-20,75,0,202,122,44,-19,75,0,202,122,44,-18,75,0,202,122,44,-17,75,0,202,122,44,-16,75,0,202,122,44,-15,75,0,202,122,44,-14,75,0,202,122,44,-13,75,0,202,122,44,-12,75,0,202,122,44,-11,75,0,202,122,44,-10,75,0,202,122,44,-9,75,0,202,122,44,-8,75,0,202,122,44,-7,75,0,202,122,44,-6,75,0,202,122,44,-5,75,0,202,122,44,-4,75,0,202,122,44,-3,75,0,202,122,44,-2,75,0,202,122,44,-1,75,0,202,122,44,0,75,0,202,122,44,1,75,0,202,122,44,2,75,0,202,122,44,3,75,0,202,122,44,4,75,0,202,122,44,5,75,0,202,122,44,6,75,0,202,122,44,7,75,0,202,122,44,8,75,0,202,122,44,9,75,0,202,122,44,10,75,0,202,122,44,11,75,0,202,122,44,12,75,0,202,122,44,13,75,0,202,122,44,14,75,0,202,122,44,15,75,0,202,122,44,16,75,0,202,122,44,17,75,0,202,122,44,18,75,0,202,122,44,19,75,0,202,122,44,20,75,0,202,122,44,21,75,0,202,122,44,22,75,0,202,122,44,23,75,0,202,122,44,24,75,0,202,122,44,25,75,0,202,122,44,26,75,0,202,122,44,27,75,0,202,122,44,28,75,0,202,122,44,29,75,0,202,122,44,30,75,0,202,122,44,31,75,0,202,122,44,32,75,0,202,122,44,33,75,0,202,122,44,34,75,0,202,122,44,35,75,0,202,122,44,36,75,0,202,122,44,37,75,0,202,122,44,38,75,0,202,122,44,39,75,0,202,122,44,40,75,0,202,122,44,41,75,0,202,122,44,42,75,0,202,122,44,43,75,0,202,122,44,44,75,0,202,122,44,45,75,0,202,122,44,46,75,0,202,122,44,47,75,0,202,122,44,48,75,0,202,122,44,49,75,0,202,122,44,50,75,0,202,122,44,51,75,0,202,122,44,52,75,0,202,122,44,53,75,0,202,122,44,54,75,0,202,122,44,55,75,0,202,122,44,56,75,0,202,122,44,57,75,0,202,122,44,58,75,0,202,122,44,59,75,0,202,122,44,60,75,0,202,122,44,61,75,0,202,122,44,62,75,0,202,122,44,63,75,0,202,122,44,64,75,0,202,122,44,65,75,0,202,122,44,66,75,0,202,122,44,67,75,0,202,122,44,68,75,0,202,122,44,69,75,0,202,122,44,70,75,0,202,122,44,71,75,0,202,122,44,72,75,0,202,122,44,73,75,0,202,122,44,74,75,0,202,122,44,75,75,0,202,122,44,76,75,0,202,122,44,77,75,0,202,122,44,78,75,0,202,122,44,79,75,0,202,122,44,80,75,0,202,122,44,81,75,0,202,122,44,82,75,0,202,122,44,83,75,0,202,122,44,84,75,0,202,122,44,85,75,0,202,122,44,-40,76,0,202,122,44,-39,76,0,202,122,44,-38,76,0,202,122,44,-37,76,0,202,122,44,-36,76,0,202,122,44,-35,76,0,202,122,44,-34,76,0,202,122,44,-33,76,0,202,122,44,-32,76,0,202,122,44,-31,76,0,202,122,44,-30,76,0,202,122,44,-29,76,0,202,122,44,-28,76,0,202,122,44,-27,76,0,202,122,44,-26,76,0,202,122,44,-25,76,0,202,122,44,-24,76,0,202,122,44,-23,76,0,202,122,44,-22,76,0,202,122,44,-21,76,0,202,122,44,-20,76,0,202,122,44,-19,76,0,202,122,44,-18,76,0,202,122,44,-17,76,0,202,122,44,-16,76,0,202,122,44,-15,76,0,202,122,44,-14,76,0,202,122,44,-13,76,0,202,122,44,-12,76,0,202,122,44,-11,76,0,202,122,44,-10,76,0,202,122,44,-9,76,0,202,122,44,-8,76,0,202,122,44,-7,76,0,202,122,44,-6,76,0,202,122,44,-5,76,0,202,122,44,-4,76,0,202,122,44,-3,76,0,202,122,44,-2,76,0,202,122,44,-1,76,0,202,122,44,0,76,0,202,122,44,1,76,0,202,122,44,2,76,0,202,122,44,3,76,0,202,122,44,4,76,0,202,122,44,5,76,0,202,122,44,6,76,0,202,122,44,7,76,0,202,122,44,8,76,0,202,122,44,9,76,0,202,122,44,10,76,0,202,122,44,11,76,0,202,122,44,12,76,0,202,122,44,13,76,0,202,122,44,14,76,0,202,122,44,15,76,0,202,122,44,16,76,0,202,122,44,17,76,0,202,122,44,18,76,0,202,122,44,19,76,0,202,122,44,20,76,0,202,122,44,21,76,0,202,122,44,22,76,0,202,122,44,23,76,0,202,122,44,24,76,0,202,122,44,25,76,0,202,122,44,26,76,0,202,122,44,27,76,0,202,122,44,28,76,0,202,122,44,29,76,0,202,122,44,30,76,0,202,122,44,31,76,0,202,122,44,32,76,0,202,122,44,33,76,0,202,122,44,34,76,0,202,122,44,35,76,0,202,122,44,36,76,0,202,122,44,37,76,0,202,122,44,38,76,0,202,122,44,39,76,0,202,122,44,40,76,0,202,122,44,41,76,0,202,122,44,42,76,0,202,122,44,43,76,0,202,122,44,44,76,0,202,122,44,45,76,0,202,122,44,46,76,0,202,122,44,47,76,0,202,122,44,48,76,0,202,122,44,49,76,0,202,122,44,50,76,0,202,122,44,51,76,0,202,122,44,52,76,0,202,122,44,53,76,0,202,122,44,54,76,0,202,122,44,55,76,0,202,122,44,56,76,0,202,122,44,57,76,0,202,122,44,58,76,0,202,122,44,59,76,0,202,122,44,60,76,0,202,122,44,61,76,0,202,122,44,62,76,0,202,122,44,63,76,0,202,122,44,64,76,0,202,122,44,65,76,0,202,122,44,66,76,0,202,122,44,67,76,0,202,122,44,68,76,0,202,122,44,69,76,0,202,122,44,70,76,0,202,122,44,71,76,0,202,122,44,72,76,0,202,122,44,73,76,0,202,122,44,74,76,0,202,122,44,75,76,0,202,122,44,76,76,0,202,122,44,77,76,0,202,122,44,78,76,0,202,122,44,79,76,0,202,122,44,80,76,0,202,122,44,81,76,0,202,122,44,82,76,0,202,122,44,83,76,0,202,122,44,84,76,0,202,122,44,85,76,0,202,122,44,-40,77,0,202,122,44,-39,77,0,202,122,44,-38,77,0,202,122,44,-37,77,0,202,122,44,-36,77,0,202,122,44,-35,77,0,202,122,44,-34,77,0,202,122,44,-33,77,0,202,122,44,-32,77,0,202,122,44,-31,77,0,202,122,44,-30,77,0,202,122,44,-29,77,0,202,122,44,-28,77,0,202,122,44,-27,77,0,202,122,44,-26,77,0,202,122,44,-25,77,0,202,122,44,-24,77,0,202,122,44,-23,77,0,202,122,44,-22,77,0,202,122,44,-21,77,0,202,122,44,-20,77,0,202,122,44,-19,77,0,202,122,44,-18,77,0,202,122,44,-17,77,0,202,122,44,-16,77,0,202,122,44,-15,77,0,202,122,44,-14,77,0,202,122,44,-13,77,0,202,122,44,-12,77,0,202,122,44,-11,77,0,202,122,44,-10,77,0,202,122,44,-9,77,0,202,122,44,-8,77,0,202,122,44,-7,77,0,202,122,44,-6,77,0,202,122,44,-5,77,0,202,122,44,-4,77,0,202,122,44,-3,77,0,202,122,44,-2,77,0,202,122,44,-1,77,0,202,122,44,0,77,0,202,122,44,1,77,0,202,122,44,2,77,0,202,122,44,3,77,0,202,122,44,4,77,0,202,122,44,5,77,0,202,122,44,6,77,0,202,122,44,7,77,0,202,122,44,8,77,0,202,122,44,9,77,0,202,122,44,10,77,0,202,122,44,11,77,0,202,122,44,12,77,0,202,122,44,13,77,0,202,122,44,14,77,0,202,122,44,15,77,0,202,122,44,16,77,0,202,122,44,17,77,0,202,122,44,18,77,0,202,122,44,19,77,0,202,122,44,20,77,0,202,122,44,21,77,0,202,122,44,22,77,0,202,122,44,23,77,0,202,122,44,24,77,0,202,122,44,25,77,0,202,122,44,26,77,0,202,122,44,27,77,0,202,122,44,28,77,0,202,122,44,29,77,0,202,122,44,30,77,0,202,122,44,31,77,0,202,122,44,32,77,0,202,122,44,33,77,0,202,122,44,34,77,0,202,122,44,35,77,0,202,122,44,36,77,0,202,122,44,37,77,0,202,122,44,38,77,0,202,122,44,39,77,0,202,122,44,40,77,0,202,122,44,41,77,0,202,122,44,42,77,0,202,122,44,43,77,0,202,122,44,44,77,0,202,122,44,45,77,0,202,122,44,46,77,0,202,122,44,47,77,0,202,122,44,48,77,0,202,122,44,49,77,0,202,122,44,50,77,0,202,122,44,51,77,0,202,122,44,52,77,0,202,122,44,53,77,0,202,122,44,54,77,0,202,122,44,55,77,0,202,122,44,56,77,0,202,122,44,57,77,0,202,122,44,58,77,0,202,122,44,59,77,0,202,122,44,60,77,0,202,122,44,61,77,0,202,122,44,62,77,0,202,122,44,63,77,0,202,122,44,64,77,0,202,122,44,65,77,0,202,122,44,66,77,0,202,122,44,67,77,0,202,122,44,68,77,0,202,122,44,69,77,0,202,122,44,70,77,0,202,122,44,71,77,0,202,122,44,72,77,0,202,122,44,73,77,0,202,122,44,74,77,0,202,122,44,75,77,0,202,122,44,76,77,0,202,122,44,77,77,0,202,122,44,78,77,0,202,122,44,79,77,0,202,122,44,80,77,0,202,122,44,81,77,0,202,122,44,82,77,0,202,122,44,83,77,0,202,122,44,84,77,0,202,122,44,85,77,0,202,122,44,-40,78,0,202,122,44,-39,78,0,202,122,44,-38,78,0,202,122,44,-37,78,0,202,122,44,-36,78,0,202,122,44,-35,78,0,202,122,44,-34,78,0,202,122,44,-33,78,0,202,122,44,-32,78,0,202,122,44,-31,78,0,202,122,44,-30,78,0,202,122,44,-29,78,0,202,122,44,-28,78,0,202,122,44,-27,78,0,202,122,44,-26,78,0,202,122,44,-25,78,0,202,122,44,-24,78,0,202,122,44,-23,78,0,202,122,44,-22,78,0,202,122,44,-21,78,0,202,122,44,-20,78,0,202,122,44,-19,78,0,202,122,44,-18,78,0,202,122,44,-17,78,0,202,122,44,-16,78,0,202,122,44,-15,78,0,202,122,44,-14,78,0,202,122,44,-13,78,0,202,122,44,-12,78,0,202,122,44,-11,78,0,202,122,44,-10,78,0,202,122,44,-9,78,0,202,122,44,-8,78,0,202,122,44,-7,78,0,202,122,44,-6,78,0,202,122,44,-5,78,0,202,122,44,-4,78,0,202,122,44,-3,78,0,202,122,44,-2,78,0,202,122,44,-1,78,0,202,122,44,0,78,0,202,122,44,1,78,0,202,122,44,2,78,0,202,122,44,3,78,0,202,122,44,4,78,0,202,122,44,5,78,0,202,122,44,6,78,0,202,122,44,7,78,0,202,122,44,8,78,0,202,122,44,9,78,0,202,122,44,10,78,0,202,122,44,11,78,0,202,122,44,12,78,0,202,122,44,13,78,0,202,122,44,14,78,0,202,122,44,15,78,0,202,122,44,16,78,0,202,122,44,17,78,0,202,122,44,18,78,0,202,122,44,19,78,0,202,122,44,20,78,0,202,122,44,21,78,0,202,122,44,22,78,0,202,122,44,23,78,0,202,122,44,24,78,0,202,122,44,25,78,0,202,122,44,26,78,0,202,122,44,27,78,0,202,122,44,28,78,0,202,122,44,29,78,0,202,122,44,30,78,0,202,122,44,31,78,0,202,122,44,32,78,0,202,122,44,33,78,0,202,122,44,34,78,0,202,122,44,35,78,0,202,122,44,36,78,0,202,122,44,37,78,0,202,122,44,38,78,0,202,122,44,39,78,0,202,122,44,40,78,0,202,122,44,41,78,0,202,122,44,42,78,0,202,122,44,43,78,0,202,122,44,44,78,0,202,122,44,45,78,0,202,122,44,46,78,0,202,122,44,47,78,0,202,122,44,48,78,0,202,122,44,49,78,0,202,122,44,50,78,0,202,122,44,51,78,0,202,122,44,52,78,0,202,122,44,53,78,0,202,122,44,54,78,0,202,122,44,55,78,0,202,122,44,56,78,0,202,122,44,57,78,0,202,122,44,58,78,0,202,122,44,59,78,0,202,122,44,60,78,0,202,122,44,61,78,0,202,122,44,62,78,0,202,122,44,63,78,0,202,122,44,64,78,0,202,122,44,65,78,0,202,122,44,66,78,0,202,122,44,67,78,0,202,122,44,68,78,0,202,122,44,69,78,0,202,122,44,70,78,0,202,122,44,71,78,0,202,122,44,72,78,0,202,122,44,73,78,0,202,122,44,74,78,0,202,122,44,75,78,0,202,122,44,76,78,0,202,122,44,77,78,0,202,122,44,78,78,0,202,122,44,79,78,0,202,122,44,80,78,0,202,122,44,81,78,0,202,122,44,82,78,0,202,122,44,83,78,0,202,122,44,84,78,0,202,122,44,85,78,0,202,122,44,-40,79,0,202,122,44,-39,79,0,202,122,44,-38,79,0,202,122,44,-37,79,0,202,122,44,-36,79,0,202,122,44,-35,79,0,202,122,44,-34,79,0,202,122,44,-33,79,0,202,122,44,-32,79,0,202,122,44,-31,79,0,202,122,44,-30,79,0,202,122,44,-29,79,0,202,122,44,-28,79,0,202,122,44,-27,79,0,202,122,44,-26,79,0,202,122,44,-25,79,0,202,122,44,-24,79,0,202,122,44,-23,79,0,202,122,44,-22,79,0,202,122,44,-21,79,0,202,122,44,-20,79,0,202,122,44,-19,79,0,202,122,44,-18,79,0,202,122,44,-17,79,0,202,122,44,-16,79,0,202,122,44,-15,79,0,202,122,44,-14,79,0,202,122,44,-13,79,0,202,122,44,-12,79,0,202,122,44,-11,79,0,202,122,44,-10,79,0,202,122,44,-9,79,0,202,122,44,-8,79,0,202,122,44,-7,79,0,202,122,44,-6,79,0,202,122,44,-5,79,0,202,122,44,-4,79,0,202,122,44,-3,79,0,202,122,44,-2,79,0,202,122,44,-1,79,0,202,122,44,0,79,0,202,122,44,1,79,0,202,122,44,2,79,0,202,122,44,3,79,0,202,122,44,4,79,0,202,122,44,5,79,0,202,122,44,6,79,0,202,122,44,7,79,0,202,122,44,8,79,0,202,122,44,9,79,0,202,122,44,10,79,0,202,122,44,11,79,0,202,122,44,12,79,0,202,122,44,13,79,0,202,122,44,14,79,0,202,122,44,15,79,0,202,122,44,16,79,0,202,122,44,17,79,0,202,122,44,18,79,0,202,122,44,19,79,0,202,122,44,20,79,0,202,122,44,21,79,0,202,122,44,22,79,0,202,122,44,23,79,0,202,122,44,24,79,0,202,122,44,25,79,0,202,122,44,26,79,0,202,122,44,27,79,0,202,122,44,28,79,0,202,122,44,29,79,0,202,122,44,30,79,0,202,122,44,31,79,0,202,122,44,32,79,0,202,122,44,33,79,0,202,122,44,34,79,0,202,122,44,35,79,0,202,122,44,36,79,0,202,122,44,37,79,0,202,122,44,38,79,0,202,122,44,39,79,0,202,122,44,40,79,0,202,122,44,41,79,0,202,122,44,42,79,0,202,122,44,43,79,0,202,122,44,44,79,0,202,122,44,45,79,0,202,122,44,46,79,0,202,122,44,47,79,0,202,122,44,48,79,0,202,122,44,49,79,0,202,122,44,50,79,0,202,122,44,51,79,0,202,122,44,52,79,0,202,122,44,53,79,0,202,122,44,54,79,0,202,122,44,55,79,0,202,122,44,56,79,0,202,122,44,57,79,0,202,122,44,58,79,0,202,122,44,59,79,0,202,122,44,60,79,0,202,122,44,61,79,0,202,122,44,62,79,0,202,122,44,63,79,0,202,122,44,64,79,0,202,122,44,65,79,0,202,122,44,66,79,0,202,122,44,67,79,0,202,122,44,68,79,0,202,122,44,69,79,0,202,122,44,70,79,0,202,122,44,71,79,0,202,122,44,72,79,0,202,122,44,73,79,0,202,122,44,74,79,0,202,122,44,75,79,0,202,122,44,76,79,0,202,122,44,77,79,0,202,122,44,78,79,0,202,122,44,79,79,0,202,122,44,80,79,0,202,122,44,81,79,0,202,122,44,82,79,0,202,122,44,83,79,0,202,122,44,84,79,0,202,122,44,85,79,0,202,122,44,-40,80,0,202,122,44,-39,80,0,202,122,44,-38,80,0,202,122,44,-37,80,0,202,122,44,-36,80,0,202,122,44,-35,80,0,202,122,44,-34,80,0,202,122,44,-33,80,0,202,122,44,-32,80,0,202,122,44,-31,80,0,202,122,44,-30,80,0,202,122,44,-29,80,0,202,122,44,-28,80,0,202,122,44,-27,80,0,202,122,44,-26,80,0,202,122,44,-25,80,0,202,122,44,-24,80,0,202,122,44,-23,80,0,202,122,44,-22,80,0,202,122,44,-21,80,0,202,122,44,-20,80,0,202,122,44,-19,80,0,202,122,44,-18,80,0,202,122,44,-17,80,0,202,122,44,-16,80,0,202,122,44,-15,80,0,202,122,44,-14,80,0,202,122,44,-13,80,0,202,122,44,-12,80,0,202,122,44,-11,80,0,202,122,44,-10,80,0,202,122,44,-9,80,0,202,122,44,-8,80,0,202,122,44,-7,80,0,202,122,44,-6,80,0,202,122,44,-5,80,0,202,122,44,-4,80,0,202,122,44,-3,80,0,202,122,44,-2,80,0,202,122,44,-1,80,0,202,122,44,0,80,0,202,122,44,1,80,0,202,122,44,2,80,0,202,122,44,3,80,0,202,122,44,4,80,0,202,122,44,5,80,0,202,122,44,6,80,0,202,122,44,7,80,0,202,122,44,8,80,0,202,122,44,9,80,0,202,122,44,10,80,0,202,122,44,11,80,0,202,122,44,12,80,0,202,122,44,13,80,0,202,122,44,14,80,0,202,122,44,15,80,0,202,122,44,16,80,0,202,122,44,17,80,0,202,122,44,18,80,0,202,122,44,19,80,0,202,122,44,20,80,0,202,122,44,21,80,0,202,122,44,22,80,0,202,122,44,23,80,0,202,122,44,24,80,0,202,122,44,25,80,0,202,122,44,26,80,0,202,122,44,27,80,0,202,122,44,28,80,0,202,122,44,29,80,0,202,122,44,30,80,0,202,122,44,31,80,0,202,122,44,32,80,0,202,122,44,33,80,0,202,122,44,34,80,0,202,122,44,35,80,0,202,122,44,36,80,0,202,122,44,37,80,0,202,122,44,38,80,0,202,122,44,39,80,0,202,122,44,40,80,0,202,122,44,41,80,0,202,122,44,42,80,0,202,122,44,43,80,0,202,122,44,44,80,0,202,122,44,45,80,0,202,122,44,46,80,0,202,122,44,47,80,0,202,122,44,48,80,0,202,122,44,49,80,0,202,122,44,50,80,0,202,122,44,51,80,0,202,122,44,52,80,0,202,122,44,53,80,0,202,122,44,54,80,0,202,122,44,55,80,0,202,122,44,56,80,0,202,122,44,57,80,0,202,122,44,58,80,0,202,122,44,59,80,0,202,122,44,60,80,0,202,122,44,61,80,0,202,122,44,62,80,0,202,122,44,63,80,0,202,122,44,64,80,0,202,122,44,65,80,0,202,122,44,66,80,0,202,122,44,67,80,0,202,122,44,68,80,0,202,122,44,69,80,0,202,122,44,70,80,0,202,122,44,71,80,0,202,122,44,72,80,0,202,122,44,73,80,0,202,122,44,74,80,0,202,122,44,75,80,0,202,122,44,76,80,0,202,122,44,77,80,0,202,122,44,78,80,0,202,122,44,79,80,0,202,122,44,80,80,0,202,122,44,81,80,0,202,122,44,82,80,0,202,122,44,83,80,0,202,122,44,84,80,0,202,122,44,85,80,0,202,122,44,-40,81,0,202,122,44,-39,81,0,202,122,44,-38,81,0,202,122,44,-37,81,0,202,122,44,-36,81,0,202,122,44,-35,81,0,202,122,44,-34,81,0,202,122,44,-33,81,0,202,122,44,-32,81,0,202,122,44,-31,81,0,202,122,44,-30,81,0,202,122,44,-29,81,0,202,122,44,-28,81,0,202,122,44,-27,81,0,202,122,44,-26,81,0,202,122,44,-25,81,0,202,122,44,-24,81,0,202,122,44,-23,81,0,202,122,44,-22,81,0,202,122,44,-21,81,0,202,122,44,-20,81,0,202,122,44,-19,81,0,202,122,44,-18,81,0,202,122,44,-17,81,0,202,122,44,-16,81,0,202,122,44,-15,81,0,202,122,44,-14,81,0,202,122,44,-13,81,0,202,122,44,-12,81,0,202,122,44,-11,81,0,202,122,44,-10,81,0,202,122,44,-9,81,0,202,122,44,-8,81,0,202,122,44,-7,81,0,202,122,44,-6,81,0,202,122,44,-5,81,0,202,122,44,-4,81,0,202,122,44,-3,81,0,202,122,44,-2,81,0,202,122,44,-1,81,0,202,122,44,0,81,0,202,122,44,1,81,0,202,122,44,2,81,0,202,122,44,3,81,0,202,122,44,4,81,0,202,122,44,5,81,0,202,122,44,6,81,0,202,122,44,7,81,0,202,122,44,8,81,0,202,122,44,9,81,0,202,122,44,10,81,0,202,122,44,11,81,0,202,122,44,12,81,0,202,122,44,13,81,0,202,122,44,14,81,0,202,122,44,15,81,0,202,122,44,16,81,0,202,122,44,17,81,0,202,122,44,18,81,0,202,122,44,19,81,0,202,122,44,20,81,0,202,122,44,21,81,0,202,122,44,22,81,0,202,122,44,23,81,0,202,122,44,24,81,0,202,122,44,25,81,0,202,122,44,26,81,0,202,122,44,27,81,0,202,122,44,28,81,0,202,122,44,29,81,0,202,122,44,30,81,0,202,122,44,31,81,0,202,122,44,32,81,0,202,122,44,33,81,0,202,122,44,34,81,0,202,122,44,35,81,0,202,122,44,36,81,0,202,122,44,37,81,0,202,122,44,38,81,0,202,122,44,39,81,0,202,122,44,40,81,0,202,122,44,41,81,0,202,122,44,42,81,0,202,122,44,43,81,0,202,122,44,44,81,0,202,122,44,45,81,0,202,122,44,46,81,0,202,122,44,47,81,0,202,122,44,48,81,0,202,122,44,49,81,0,202,122,44,50,81,0,202,122,44,51,81,0,202,122,44,52,81,0,202,122,44,53,81,0,202,122,44,54,81,0,202,122,44,55,81,0,202,122,44,56,81,0,202,122,44,57,81,0,202,122,44,58,81,0,202,122,44,59,81,0,202,122,44,60,81,0,202,122,44,61,81,0,202,122,44,62,81,0,202,122,44,63,81,0,202,122,44,64,81,0,202,122,44,65,81,0,202,122,44,66,81,0,202,122,44,67,81,0,202,122,44,68,81,0,202,122,44,69,81,0,202,122,44,70,81,0,202,122,44,71,81,0,202,122,44,72,81,0,202,122,44,73,81,0,202,122,44,74,81,0,202,122,44,75,81,0,202,122,44,76,81,0,202,122,44,77,81,0,202,122,44,78,81,0,202,122,44,79,81,0,202,122,44,80,81,0,202,122,44,81,81,0,202,122,44,82,81,0,202,122,44,83,81,0,202,122,44,84,81,0,202,122,44,85,81,0,202,122,44,-40,82,0,202,122,44,-39,82,0,202,122,44,-38,82,0,202,122,44,-37,82,0,202,122,44,-36,82,0,202,122,44,-35,82,0,202,122,44,-34,82,0,202,122,44,-33,82,0,202,122,44,-32,82,0,202,122,44,-31,82,0,202,122,44,-30,82,0,202,122,44,-29,82,0,202,122,44,-28,82,0,202,122,44,-27,82,0,202,122,44,-26,82,0,202,122,44,-25,82,0,202,122,44,-24,82,0,202,122,44,-23,82,0,202,122,44,-22,82,0,202,122,44,-21,82,0,202,122,44,-20,82,0,202,122,44,-19,82,0,202,122,44,-18,82,0,202,122,44,-17,82,0,202,122,44,-16,82,0,202,122,44,-15,82,0,202,122,44,-14,82,0,202,122,44,-13,82,0,202,122,44,-12,82,0,202,122,44,-11,82,0,202,122,44,-10,82,0,202,122,44,-9,82,0,202,122,44,-8,82,0,202,122,44,-7,82,0,202,122,44,-6,82,0,202,122,44,-5,82,0,202,122,44,-4,82,0,202,122,44,-3,82,0,202,122,44,-2,82,0,202,122,44,-1,82,0,202,122,44,0,82,0,202,122,44,1,82,0,202,122,44,2,82,0,202,122,44,3,82,0,202,122,44,4,82,0,202,122,44,5,82,0,202,122,44,6,82,0,202,122,44,7,82,0,202,122,44,8,82,0,202,122,44,9,82,0,202,122,44,10,82,0,202,122,44,11,82,0,202,122,44,12,82,0,202,122,44,13,82,0,202,122,44,14,82,0,202,122,44,15,82,0,202,122,44,16,82,0,202,122,44,17,82,0,202,122,44,18,82,0,202,122,44,19,82,0,202,122,44,20,82,0,202,122,44,21,82,0,202,122,44,22,82,0,202,122,44,23,82,0,202,122,44,24,82,0,202,122,44,25,82,0,202,122,44,26,82,0,202,122,44,27,82,0,202,122,44,28,82,0,202,122,44,29,82,0,202,122,44,30,82,0,202,122,44,31,82,0,202,122,44,32,82,0,202,122,44,33,82,0,202,122,44,34,82,0,202,122,44,35,82,0,202,122,44,36,82,0,202,122,44,37,82,0,202,122,44,38,82,0,202,122,44,39,82,0,202,122,44,40,82,0,202,122,44,41,82,0,202,122,44,42,82,0,202,122,44,43,82,0,202,122,44,44,82,0,202,122,44,45,82,0,202,122,44,46,82,0,202,122,44,47,82,0,202,122,44,48,82,0,202,122,44,49,82,0,202,122,44,50,82,0,202,122,44,51,82,0,202,122,44,52,82,0,202,122,44,53,82,0,202,122,44,54,82,0,202,122,44,55,82,0,202,122,44,56,82,0,202,122,44,57,82,0,202,122,44,58,82,0,202,122,44,59,82,0,202,122,44,60,82,0,202,122,44,61,82,0,202,122,44,62,82,0,202,122,44,63,82,0,202,122,44,64,82,0,202,122,44,65,82,0,202,122,44,66,82,0,202,122,44,67,82,0,202,122,44,68,82,0,202,122,44,69,82,0,202,122,44,70,82,0,202,122,44,71,82,0,202,122,44,72,82,0,202,122,44,73,82,0,202,122,44,74,82,0,202,122,44,75,82,0,202,122,44,76,82,0,202,122,44,77,82,0,202,122,44,78,82,0,202,122,44,79,82,0,202,122,44,80,82,0,202,122,44,81,82,0,202,122,44,82,82,0,202,122,44,83,82,0,202,122,44,84,82,0,202,122,44,85,82,0,202,122,44,-40,83,0,202,122,44,-39,83,0,202,122,44,-38,83,0,202,122,44,-37,83,0,202,122,44,-36,83,0,202,122,44,-35,83,0,202,122,44,-34,83,0,202,122,44,-33,83,0,202,122,44,-32,83,0,202,122,44,-31,83,0,202,122,44,-30,83,0,202,122,44,-29,83,0,202,122,44,-28,83,0,202,122,44,-27,83,0,202,122,44,-26,83,0,202,122,44,-25,83,0,202,122,44,-24,83,0,202,122,44,-23,83,0,202,122,44,-22,83,0,202,122,44,-21,83,0,202,122,44,-20,83,0,202,122,44,-19,83,0,202,122,44,-18,83,0,202,122,44,-17,83,0,202,122,44,-16,83,0,202,122,44,-15,83,0,202,122,44,-14,83,0,202,122,44,-13,83,0,202,122,44,-12,83,0,202,122,44,-11,83,0,202,122,44,-10,83,0,202,122,44,-9,83,0,202,122,44,-8,83,0,202,122,44,-7,83,0,202,122,44,-6,83,0,202,122,44,-5,83,0,202,122,44,-4,83,0,202,122,44,-3,83,0,202,122,44,-2,83,0,202,122,44,-1,83,0,202,122,44,0,83,0,202,122,44,1,83,0,202,122,44,2,83,0,202,122,44,3,83,0,202,122,44,4,83,0,202,122,44,5,83,0,202,122,44,6,83,0,202,122,44,7,83,0,202,122,44,8,83,0,202,122,44,9,83,0,202,122,44,10,83,0,202,122,44,11,83,0,202,122,44,12,83,0,202,122,44,13,83,0,202,122,44,14,83,0,202,122,44,15,83,0,202,122,44,16,83,0,202,122,44,17,83,0,202,122,44,18,83,0,202,122,44,19,83,0,202,122,44,20,83,0,202,122,44,21,83,0,202,122,44,22,83,0,202,122,44,23,83,0,202,122,44,24,83,0,202,122,44,25,83,0,202,122,44,26,83,0,202,122,44,27,83,0,202,122,44,28,83,0,202,122,44,29,83,0,202,122,44,30,83,0,202,122,44,31,83,0,202,122,44,32,83,0,202,122,44,33,83,0,202,122,44,34,83,0,202,122,44,35,83,0,202,122,44,36,83,0,202,122,44,37,83,0,202,122,44,38,83,0,202,122,44,39,83,0,202,122,44,40,83,0,202,122,44,41,83,0,202,122,44,42,83,0,202,122,44,43,83,0,202,122,44,44,83,0,202,122,44,45,83,0,202,122,44,46,83,0,202,122,44,47,83,0,202,122,44,48,83,0,202,122,44,49,83,0,202,122,44,50,83,0,202,122,44,51,83,0,202,122,44,52,83,0,202,122,44,53,83,0,202,122,44,54,83,0,202,122,44,55,83,0,202,122,44,56,83,0,202,122,44,57,83,0,202,122,44,58,83,0,202,122,44,59,83,0,202,122,44,60,83,0,202,122,44,61,83,0,202,122,44,62,83,0,202,122,44,63,83,0,202,122,44,64,83,0,202,122,44,65,83,0,202,122,44,66,83,0,202,122,44,67,83,0,202,122,44,68,83,0,202,122,44,69,83,0,202,122,44,70,83,0,202,122,44,71,83,0,202,122,44,72,83,0,202,122,44,73,83,0,202,122,44,74,83,0,202,122,44,75,83,0,202,122,44,76,83,0,202,122,44,77,83,0,202,122,44,78,83,0,202,122,44,79,83,0,202,122,44,80,83,0,202,122,44,81,83,0,202,122,44,82,83,0,202,122,44,83,83,0,202,122,44,84,83,0,202,122,44,85,83,0,202,122,44,-40,84,0,202,122,44,-39,84,0,202,122,44,-38,84,0,202,122,44,-37,84,0,202,122,44,-36,84,0,202,122,44,-35,84,0,202,122,44,-34,84,0,202,122,44,-33,84,0,202,122,44,-32,84,0,202,122,44,-31,84,0,202,122,44,-30,84,0,202,122,44,-29,84,0,202,122,44,-28,84,0,202,122,44,-27,84,0,202,122,44,-26,84,0,202,122,44,-25,84,0,202,122,44,-24,84,0,202,122,44,-23,84,0,202,122,44,-22,84,0,202,122,44,-21,84,0,202,122,44,-20,84,0,202,122,44,-19,84,0,202,122,44,-18,84,0,202,122,44,-17,84,0,202,122,44,-16,84,0,202,122,44,-15,84,0,202,122,44,-14,84,0,202,122,44,-13,84,0,202,122,44,-12,84,0,202,122,44,-11,84,0,202,122,44,-10,84,0,202,122,44,-9,84,0,202,122,44,-8,84,0,202,122,44,-7,84,0,202,122,44,-6,84,0,202,122,44,-5,84,0,202,122,44,-4,84,0,202,122,44,-3,84,0,202,122,44,-2,84,0,202,122,44,-1,84,0,202,122,44,0,84,0,202,122,44,1,84,0,202,122,44,2,84,0,202,122,44,3,84,0,202,122,44,4,84,0,202,122,44,5,84,0,202,122,44,6,84,0,202,122,44,7,84,0,202,122,44,8,84,0,202,122,44,9,84,0,202,122,44,10,84,0,202,122,44,11,84,0,202,122,44,12,84,0,202,122,44,13,84,0,202,122,44,14,84,0,202,122,44,15,84,0,202,122,44,16,84,0,202,122,44,17,84,0,202,122,44,18,84,0,202,122,44,19,84,0,202,122,44,20,84,0,202,122,44,21,84,0,202,122,44,22,84,0,202,122,44,23,84,0,202,122,44,24,84,0,202,122,44,25,84,0,202,122,44,26,84,0,202,122,44,27,84,0,202,122,44,28,84,0,202,122,44,29,84,0,202,122,44,30,84,0,202,122,44,31,84,0,202,122,44,32,84,0,202,122,44,33,84,0,202,122,44,34,84,0,202,122,44,35,84,0,202,122,44,36,84,0,202,122,44,37,84,0,202,122,44,38,84,0,202,122,44,39,84,0,202,122,44,40,84,0,202,122,44,41,84,0,202,122,44,42,84,0,202,122,44,43,84,0,202,122,44,44,84,0,202,122,44,45,84,0,202,122,44,46,84,0,202,122,44,47,84,0,202,122,44,48,84,0,202,122,44,49,84,0,202,122,44,50,84,0,202,122,44,51,84,0,202,122,44,52,84,0,202,122,44,53,84,0,202,122,44,54,84,0,202,122,44,55,84,0,202,122,44,56,84,0,202,122,44,57,84,0,202,122,44,58,84,0,202,122,44,59,84,0,202,122,44,60,84,0,202,122,44,61,84,0,202,122,44,62,84,0,202,122,44,63,84,0,202,122,44,64,84,0,202,122,44,65,84,0,202,122,44,66,84,0,202,122,44,67,84,0,202,122,44,68,84,0,202,122,44,69,84,0,202,122,44,70,84,0,202,122,44,71,84,0,202,122,44,72,84,0,202,122,44,73,84,0,202,122,44,74,84,0,202,122,44,75,84,0,202,122,44,76,84,0,202,122,44,77,84,0,202,122,44,78,84,0,202,122,44,79,84,0,202,122,44,80,84,0,202,122,44,81,84,0,202,122,44,82,84,0,202,122,44,83,84,0,202,122,44,84,84,0,202,122,44,85,84,0,202,122,44,-40,85,0,202,122,44,-39,85,0,202,122,44,-38,85,0,202,122,44,-37,85,0,202,122,44,-36,85,0,202,122,44,-35,85,0,202,122,44,-34,85,0,202,122,44,-33,85,0,202,122,44,-32,85,0,202,122,44,-31,85,0,202,122,44,-30,85,0,202,122,44,-29,85,0,202,122,44,-28,85,0,202,122,44,-27,85,0,202,122,44,-26,85,0,202,122,44,-25,85,0,202,122,44,-24,85,0,202,122,44,-23,85,0,202,122,44,-22,85,0,202,122,44,-21,85,0,202,122,44,-20,85,0,202,122,44,-19,85,0,202,122,44,-18,85,0,202,122,44,-17,85,0,202,122,44,-16,85,0,202,122,44,-15,85,0,202,122,44,-14,85,0,202,122,44,-13,85,0,202,122,44,-12,85,0,202,122,44,-11,85,0,202,122,44,-10,85,0,202,122,44,-9,85,0,202,122,44,-8,85,0,202,122,44,-7,85,0,202,122,44,-6,85,0,202,122,44,-5,85,0,202,122,44,-4,85,0,202,122,44,-3,85,0,202,122,44,-2,85,0,202,122,44,-1,85,0,202,122,44,0,85,0,202,122,44,1,85,0,202,122,44,2,85,0,202,122,44,3,85,0,202,122,44,4,85,0,202,122,44,5,85,0,202,122,44,6,85,0,202,122,44,7,85,0,202,122,44,8,85,0,202,122,44,9,85,0,202,122,44,10,85,0,202,122,44,11,85,0,202,122,44,12,85,0,202,122,44,13,85,0,202,122,44,14,85,0,202,122,44,15,85,0,202,122,44,16,85,0,202,122,44,17,85,0,202,122,44,18,85,0,202,122,44,19,85,0,202,122,44,20,85,0,202,122,44,21,85,0,202,122,44,22,85,0,202,122,44,23,85,0,202,122,44,24,85,0,202,122,44,25,85,0,202,122,44,26,85,0,202,122,44,27,85,0,202,122,44,28,85,0,202,122,44,29,85,0,202,122,44,30,85,0,202,122,44,31,85,0,202,122,44,32,85,0,202,122,44,33,85,0,202,122,44,34,85,0,202,122,44,35,85,0,202,122,44,36,85,0,202,122,44,37,85,0,202,122,44,38,85,0,202,122,44,39,85,0,202,122,44,40,85,0,202,122,44,41,85,0,202,122,44,42,85,0,202,122,44,43,85,0,202,122,44,44,85,0,202,122,44,45,85,0,202,122,44,46,85,0,202,122,44,47,85,0,202,122,44,48,85,0,202,122,44,49,85,0,202,122,44,50,85,0,202,122,44,51,85,0,202,122,44,52,85,0,202,122,44,53,85,0,202,122,44,54,85,0,202,122,44,55,85,0,202,122,44,56,85,0,202,122,44,57,85,0,202,122,44,58,85,0,202,122,44,59,85,0,202,122,44,60,85,0,202,122,44,61,85,0,202,122,44,62,85,0,202,122,44,63,85,0,202,122,44,64,85,0,202,122,44,65,85,0,202,122,44,66,85,0,202,122,44,67,85,0,202,122,44,68,85,0,202,122,44,69,85,0,202,122,44,70,85,0,202,122,44,71,85,0,202,122,44,72,85,0,202,122,44,73,85,0,202,122,44,74,85,0,202,122,44,75,85,0,202,122,44,76,85,0,202,122,44,77,85,0,202,122,44,78,85,0,202,122,44,79,85,0,202,122,44,80,85,0,202,122,44,81,85,0,202,122,44,82,85,0,202,122,44,83,85,0,202,122,44,84,85,0,202,122,44,85,85,0,202,122,44,-39,-39,1,202,122,44,-38,-39,1,202,122,44,-37,-39,1,202,122,44,-36,-39,1,202,122,44,-35,-39,1,202,122,44,-34,-39,1,202,122,44,-33,-39,1,202,122,44,-32,-39,1,202,122,44,-31,-39,1,202,122,44,-30,-39,1,202,122,44,-29,-39,1,202,122,44,-28,-39,1,202,122,44,-27,-39,1,202,122,44,-26,-39,1,202,122,44,-25,-39,1,202,122,44,-24,-39,1,202,122,44,-23,-39,1,202,122,44,-22,-39,1,202,122,44,-21,-39,1,202,122,44,-20,-39,1,202,122,44,-19,-39,1,202,122,44,-18,-39,1,202,122,44,-17,-39,1,202,122,44,-16,-39,1,202,122,44,-15,-39,1,202,122,44,-14,-39,1,202,122,44,-13,-39,1,202,122,44,-12,-39,1,202,122,44,-11,-39,1,202,122,44,-10,-39,1,202,122,44,-9,-39,1,202,122,44,-8,-39,1,202,122,44,-7,-39,1,202,122,44,-6,-39,1,202,122,44,-5,-39,1,202,122,44,-4,-39,1,202,122,44,-3,-39,1,202,122,44,-2,-39,1,202,122,44,-1,-39,1,202,122,44,0,-39,1,202,122,44,1,-39,1,202,122,44,2,-39,1,202,122,44,3,-39,1,202,122,44,4,-39,1,202,122,44,5,-39,1,202,122,44,6,-39,1,202,122,44,7,-39,1,202,122,44,8,-39,1,202,122,44,9,-39,1,202,122,44,10,-39,1,202,122,44,11,-39,1,202,122,44,12,-39,1,202,122,44,13,-39,1,202,122,44,14,-39,1,202,122,44,15,-39,1,202,122,44,16,-39,1,202,122,44,17,-39,1,202,122,44,18,-39,1,202,122,44,19,-39,1,202,122,44,20,-39,1,202,122,44,21,-39,1,202,122,44,22,-39,1,202,122,44,23,-39,1,202,122,44,24,-39,1,202,122,44,25,-39,1,202,122,44,26,-39,1,202,122,44,27,-39,1,202,122,44,28,-39,1,202,122,44,29,-39,1,202,122,44,30,-39,1,202,122,44,31,-39,1,202,122,44,32,-39,1,202,122,44,33,-39,1,202,122,44,34,-39,1,202,122,44,35,-39,1,202,122,44,36,-39,1,202,122,44,37,-39,1,202,122,44,38,-39,1,202,122,44,39,-39,1,202,122,44,40,-39,1,202,122,44,41,-39,1,202,122,44,42,-39,1,202,122,44,43,-39,1,202,122,44,44,-39,1,202,122,44,45,-39,1,202,122,44,46,-39,1,202,122,44,47,-39,1,202,122,44,48,-39,1,202,122,44,49,-39,1,202,122,44,50,-39,1,202,122,44,51,-39,1,202,122,44,52,-39,1,202,122,44,53,-39,1,202,122,44,54,-39,1,202,122,44,55,-39,1,202,122,44,56,-39,1,202,122,44,57,-39,1,202,122,44,58,-39,1,202,122,44,59,-39,1,202,122,44,60,-39,1,202,122,44,61,-39,1,202,122,44,62,-39,1,202,122,44,63,-39,1,202,122,44,64,-39,1,202,122,44,65,-39,1,202,122,44,66,-39,1,202,122,44,67,-39,1,202,122,44,68,-39,1,202,122,44,69,-39,1,202,122,44,70,-39,1,202,122,44,71,-39,1,202,122,44,72,-39,1,202,122,44,73,-39,1,202,122,44,74,-39,1,202,122,44,75,-39,1,202,122,44,76,-39,1,202,122,44,77,-39,1,202,122,44,78,-39,1,202,122,44,79,-39,1,202,122,44,80,-39,1,202,122,44,81,-39,1,202,122,44,82,-39,1,202,122,44,83,-39,1,202,122,44,84,-39,1,202,122,44,-39,-38,1,202,122,44,23,23,124,202,122,44,22,23,124,202,122,44,23,22,124,202,122,44,22,22,124,202,122,44,23,23,123,202,122,44,22,23,123,202,122,44,23,22,123,202,122,44,22,22,123,202,122,44,24,24,122,202,122,44,23,24,122,202,122,44,22,24,122,202,122,44,21,24,122,202,122,44,24,23,122,202,122,44,21,23,122,202,122,44,24,22,122,202,122,44,21,22,122,202,122,44,24,21,122,202,122,44,23,21,122,202,122,44,22,21,122,202,122,44,21,21,122,202,122,44,24,24,121,202,122,44,23,24,121,202,122,44,22,24,121,202,122,44,21,24,121,202,122,44,24,23,121,202,122,44,21,23,121,202,122,44,24,22,121,202,122,44,21,22,121,202,122,44,24,21,121,202,122,44,23,21,121,202,122,44,22,21,121,202,122,44,21,21,121,202,122,44,25,25,120,202,122,44,24,25,120,202,122,44,23,25,120,202,122,44,22,25,120,202,122,44,21,25,120,202,122,44,20,25,120,202,122,44,25,24,120,202,122,44,20,24,120,202,122,44,25,23,120,202,122,44,20,23,120,202,122,44,25,22,120,202,122,44,20,22,120,202,122,44,25,21,120,202,122,44,20,21,120,202,122,44,25,20,120,202,122,44,24,20,120,202,122,44,23,20,120,202,122,44,22,20,120,202,122,44,21,20,120,202,122,44,20,20,120,202,122,44,25,25,119,202,122,44,24,25,119,202,122,44,23,25,119,202,122,44,22,25,119,202,122,44,21,25,119,202,122,44,20,25,119,202,122,44,25,24,119,202,122,44,20,24,119,202,122,44,25,23,119,202,122,44,20,23,119,202,122,44,25,22,119,202,122,44,20,22,119,202,122,44,25,21,119,202,122,44,20,21,119,202,122,44,25,20,119,202,122,44,24,20,119,202,122,44,23,20,119,202,122,44,22,20,119,202,122,44,21,20,119,202,122,44,20,20,119,202,122,44,26,26,118,202,122,44,25,26,118,202,122,44,24,26,118,202,122,44,23,26,118,202,122,44,22,26,118,202,122,44,21,26,118,202,122,44,20,26,118,202,122,44,19,26,118,202,122,44,26,25,118,202,122,44,19,25,118,202,122,44,26,24,118,202,122,44,19,24,118,202,122,44,26,23,118,202,122,44,19,23,118,202,122,44,26,22,118,202,122,44,19,22,118,202,122,44,26,21,118,202,122,44,19,21,118,202,122,44,26,20,118,202,122,44,19,20,118,202,122,44,26,19,118,202,122,44,25,19,118,202,122,44,24,19,118,202,122,44,23,19,118,202,122,44,22,19,118,202,122,44,21,19,118,202,122,44,20,19,118,202,122,44,19,19,118,202,122,44,26,26,117,202,122,44,25,26,117,202,122,44,24,26,117,202,122,44,23,26,117,202,122,44,22,26,117,202,122,44,21,26,117,202,122,44,20,26,117,202,122,44,19,26,117,202,122,44,26,25,117,202,122,44,19,25,117,202,122,44,26,24,117,202,122,44,19,24,117,202,122,44,26,23,117,202,122,44,19,23,117,202,122,44,26,22,117,202,122,44,19,22,117,202,122,44,26,21,117,202,122,44,19,21,117,202,122,44,26,20,117,202,122,44,19,20,117,202,122,44,26,19,117,202,122,44,25,19,117,202,122,44,84,-38,1,202,122,44,-39,-37,1,202,122,44,24,19,117,202,122,44,23,19,117,202,122,44,22,19,117,202,122,44,21,19,117,202,122,44,20,19,117,202,122,44,19,19,117,202,122,44,27,27,116,202,122,44,26,27,116,202,122,44,25,27,116,202,122,44,24,27,116,202,122,44,23,27,116,202,122,44,22,27,116,202,122,44,21,27,116,202,122,44,20,27,116,202,122,44,19,27,116,202,122,44,18,27,116,202,122,44,27,26,116,202,122,44,18,26,116,202,122,44,27,25,116,202,122,44,18,25,116,202,122,44,27,24,116,202,122,44,18,24,116,202,122,44,27,23,116,202,122,44,18,23,116,202,122,44,27,22,116,202,122,44,18,22,116,202,122,44,27,21,116,202,122,44,18,21,116,202,122,44,27,20,116,202,122,44,18,20,116,202,122,44,27,19,116,202,122,44,18,19,116,202,122,44,27,18,116,202,122,44,26,18,116,202,122,44,25,18,116,202,122,44,24,18,116,202,122,44,23,18,116,202,122,44,22,18,116,202,122,44,21,18,116,202,122,44,20,18,116,202,122,44,19,18,116,202,122,44,18,18,116,202,122,44,27,27,115,202,122,44,26,27,115,202,122,44,25,27,115,202,122,44,24,27,115,202,122,44,23,27,115,202,122,44,22,27,115,202,122,44,21,27,115,202,122,44,20,27,115,202,122,44,19,27,115,202,122,44,18,27,115,202,122,44,27,26,115,202,122,44,18,26,115,202,122,44,27,25,115,202,122,44,18,25,115,202,122,44,27,24,115,202,122,44,18,24,115,202,122,44,27,23,115,202,122,44,18,23,115,202,122,44,27,22,115,202,122,44,18,22,115,202,122,44,27,21,115,202,122,44,18,21,115,202,122,44,27,20,115,202,122,44,18,20,115,202,122,44,27,19,115,202,122,44,18,19,115,202,122,44,27,18,115,202,122,44,26,18,115,202,122,44,25,18,115,202,122,44,24,18,115,202,122,44,23,18,115,202,122,44,22,18,115,202,122,44,21,18,115,202,122,44,20,18,115,202,122,44,19,18,115,202,122,44,18,18,115,202,122,44,28,28,114,202,122,44,27,28,114,202,122,44,26,28,114,202,122,44,25,28,114,202,122,44,24,28,114,202,122,44,23,28,114,202,122,44,22,28,114,202,122,44,21,28,114,202,122,44,20,28,114,202,122,44,19,28,114,202,122,44,18,28,114,202,122,44,17,28,114,202,122,44,28,27,114,202,122,44,17,27,114,202,122,44,28,26,114,202,122,44,17,26,114,202,122,44,28,25,114,202,122,44,17,25,114,202,122,44,28,24,114,202,122,44,17,24,114,202,122,44,28,23,114,202,122,44,17,23,114,202,122,44,28,22,114,202,122,44,17,22,114,202,122,44,28,21,114,202,122,44,17,21,114,202,122,44,28,20,114,202,122,44,17,20,114,202,122,44,28,19,114,202,122,44,17,19,114,202,122,44,28,18,114,202,122,44,17,18,114,202,122,44,28,17,114,202,122,44,27,17,114,202,122,44,26,17,114,202,122,44,25,17,114,202,122,44,24,17,114,202,122,44,23,17,114,202,122,44,22,17,114,202,122,44,21,17,114,202,122,44,20,17,114,202,122,44,19,17,114,202,122,44,18,17,114,202,122,44,17,17,114,202,122,44,84,-37,1,202,122,44,-39,-36,1,202,122,44,28,28,113,202,122,44,27,28,113,202,122,44,26,28,113,202,122,44,25,28,113,202,122,44,24,28,113,202,122,44,23,28,113,202,122,44,22,28,113,202,122,44,21,28,113,202,122,44,20,28,113,202,122,44,19,28,113,202,122,44,18,28,113,202,122,44,17,28,113,202,122,44,28,27,113,202,122,44,17,27,113,202,122,44,28,26,113,202,122,44,17,26,113,202,122,44,28,25,113,202,122,44,17,25,113,202,122,44,28,24,113,202,122,44,17,24,113,202,122,44,28,23,113,202,122,44,17,23,113,202,122,44,28,22,113,202,122,44,17,22,113,202,122,44,28,21,113,202,122,44,17,21,113,202,122,44,28,20,113,202,122,44,17,20,113,202,122,44,28,19,113,202,122,44,17,19,113,202,122,44,28,18,113,202,122,44,17,18,113,202,122,44,28,17,113,202,122,44,27,17,113,202,122,44,26,17,113,202,122,44,25,17,113,202,122,44,24,17,113,202,122,44,23,17,113,202,122,44,22,17,113,202,122,44,21,17,113,202,122,44,20,17,113,202,122,44,19,17,113,202,122,44,18,17,113,202,122,44,17,17,113,202,122,44,29,29,112,202,122,44,28,29,112,202,122,44,27,29,112,202,122,44,26,29,112,202,122,44,25,29,112,202,122,44,24,29,112,202,122,44,23,29,112,202,122,44,22,29,112,202,122,44,21,29,112,202,122,44,20,29,112,202,122,44,19,29,112,202,122,44,18,29,112,202,122,44,17,29,112,202,122,44,16,29,112,202,122,44,29,28,112,202,122,44,16,28,112,202,122,44,29,27,112,202,122,44,16,27,112,202,122,44,29,26,112,202,122,44,16,26,112,202,122,44,29,25,112,202,122,44,16,25,112,202,122,44,29,24,112,202,122,44,16,24,112,202,122,44,29,23,112,202,122,44,16,23,112,202,122,44,29,22,112,202,122,44,16,22,112,202,122,44,29,21,112,202,122,44,16,21,112,202,122,44,29,20,112,202,122,44,16,20,112,202,122,44,29,19,112,202,122,44,16,19,112,202,122,44,29,18,112,202,122,44,16,18,112,202,122,44,29,17,112,202,122,44,16,17,112,202,122,44,29,16,112,202,122,44,28,16,112,202,122,44,27,16,112,202,122,44,26,16,112,202,122,44,25,16,112,202,122,44,24,16,112,202,122,44,23,16,112,202,122,44,22,16,112,202,122,44,21,16,112,202,122,44,20,16,112,202,122,44,19,16,112,202,122,44,18,16,112,202,122,44,17,16,112,202,122,44,16,16,112,202,122,44,29,29,111,202,122,44,28,29,111,202,122,44,27,29,111,202,122,44,26,29,111,202,122,44,25,29,111,202,122,44,24,29,111,202,122,44,23,29,111,202,122,44,22,29,111,202,122,44,21,29,111,202,122,44,20,29,111,202,122,44,19,29,111,202,122,44,18,29,111,202,122,44,17,29,111,202,122,44,16,29,111,202,122,44,29,28,111,202,122,44,16,28,111,202,122,44,29,27,111,202,122,44,16,27,111,202,122,44,29,26,111,202,122,44,16,26,111,202,122,44,29,25,111,202,122,44,16,25,111,202,122,44,29,24,111,202,122,44,16,24,111,202,122,44,29,23,111,202,122,44,16,23,111,202,122,44,84,-36,1,202,122,44,-39,-35,1,202,122,44,29,22,111,202,122,44,16,22,111,202,122,44,29,21,111,202,122,44,16,21,111,202,122,44,29,20,111,202,122,44,16,20,111,202,122,44,29,19,111,202,122,44,16,19,111,202,122,44,29,18,111,202,122,44,16,18,111,202,122,44,29,17,111,202,122,44,16,17,111,202,122,44,29,16,111,202,122,44,28,16,111,202,122,44,27,16,111,202,122,44,26,16,111,202,122,44,25,16,111,202,122,44,24,16,111,202,122,44,23,16,111,202,122,44,22,16,111,202,122,44,21,16,111,202,122,44,20,16,111,202,122,44,19,16,111,202,122,44,18,16,111,202,122,44,17,16,111,202,122,44,16,16,111,202,122,44,30,30,110,202,122,44,29,30,110,202,122,44,28,30,110,202,122,44,27,30,110,202,122,44,26,30,110,202,122,44,25,30,110,202,122,44,24,30,110,202,122,44,23,30,110,202,122,44,22,30,110,202,122,44,21,30,110,202,122,44,20,30,110,202,122,44,19,30,110,202,122,44,18,30,110,202,122,44,17,30,110,202,122,44,16,30,110,202,122,44,15,30,110,202,122,44,30,29,110,202,122,44,15,29,110,202,122,44,30,28,110,202,122,44,15,28,110,202,122,44,30,27,110,202,122,44,15,27,110,202,122,44,30,26,110,202,122,44,15,26,110,202,122,44,30,25,110,202,122,44,15,25,110,202,122,44,30,24,110,202,122,44,15,24,110,202,122,44,30,23,110,202,122,44,15,23,110,202,122,44,30,22,110,202,122,44,15,22,110,202,122,44,30,21,110,202,122,44,15,21,110,202,122,44,30,20,110,202,122,44,15,20,110,202,122,44,30,19,110,202,122,44,15,19,110,202,122,44,30,18,110,202,122,44,15,18,110,202,122,44,30,17,110,202,122,44,15,17,110,202,122,44,30,16,110,202,122,44,15,16,110,202,122,44,30,15,110,202,122,44,29,15,110,202,122,44,28,15,110,202,122,44,27,15,110,202,122,44,26,15,110,202,122,44,25,15,110,202,122,44,24,15,110,202,122,44,23,15,110,202,122,44,22,15,110,202,122,44,21,15,110,202,122,44,20,15,110,202,122,44,19,15,110,202,122,44,18,15,110,202,122,44,17,15,110,202,122,44,16,15,110,202,122,44,15,15,110,202,122,44,30,30,109,202,122,44,29,30,109,202,122,44,28,30,109,202,122,44,27,30,109,202,122,44,26,30,109,202,122,44,25,30,109,202,122,44,24,30,109,202,122,44,23,30,109,202,122,44,22,30,109,202,122,44,21,30,109,202,122,44,20,30,109,202,122,44,19,30,109,202,122,44,18,30,109,202,122,44,17,30,109,202,122,44,16,30,109,202,122,44,15,30,109,202,122,44,30,29,109,202,122,44,15,29,109,202,122,44,30,28,109,202,122,44,15,28,109,202,122,44,30,27,109,202,122,44,15,27,109,202,122,44,30,26,109,202,122,44,15,26,109,202,122,44,30,25,109,202,122,44,15,25,109,202,122,44,30,24,109,202,122,44,15,24,109,202,122,44,30,23,109,202,122,44,15,23,109,202,122,44,30,22,109,202,122,44,15,22,109,202,122,44,30,21,109,202,122,44,15,21,109,202,122,44,30,20,109,202,122,44,15,20,109,202,122,44,84,-35,1,202,122,44,-39,-34,1,202,122,44,30,19,109,202,122,44,15,19,109,202,122,44,30,18,109,202,122,44,15,18,109,202,122,44,30,17,109,202,122,44,15,17,109,202,122,44,30,16,109,202,122,44,15,16,109,202,122,44,30,15,109,202,122,44,29,15,109,202,122,44,28,15,109,202,122,44,27,15,109,202,122,44,26,15,109,202,122,44,25,15,109,202,122,44,24,15,109,202,122,44,23,15,109,202,122,44,22,15,109,202,122,44,21,15,109,202,122,44,20,15,109,202,122,44,19,15,109,202,122,44,18,15,109,202,122,44,17,15,109,202,122,44,16,15,109,202,122,44,15,15,109,202,122,44,31,31,108,202,122,44,30,31,108,202,122,44,29,31,108,202,122,44,28,31,108,202,122,44,27,31,108,202,122,44,26,31,108,202,122,44,25,31,108,202,122,44,24,31,108,202,122,44,23,31,108,202,122,44,22,31,108,202,122,44,21,31,108,202,122,44,20,31,108,202,122,44,19,31,108,202,122,44,18,31,108,202,122,44,17,31,108,202,122,44,16,31,108,202,122,44,15,31,108,202,122,44,14,31,108,202,122,44,31,30,108,202,122,44,14,30,108,202,122,44,31,29,108,202,122,44,14,29,108,202,122,44,31,28,108,202,122,44,14,28,108,202,122,44,31,27,108,202,122,44,14,27,108,202,122,44,31,26,108,202,122,44,14,26,108,202,122,44,31,25,108,202,122,44,14,25,108,202,122,44,31,24,108,202,122,44,14,24,108,202,122,44,31,23,108,202,122,44,14,23,108,202,122,44,31,22,108,202,122,44,14,22,108,202,122,44,31,21,108,202,122,44,14,21,108,202,122,44,31,20,108,202,122,44,14,20,108,202,122,44,31,19,108,202,122,44,14,19,108,202,122,44,31,18,108,202,122,44,14,18,108,202,122,44,31,17,108,202,122,44,14,17,108,202,122,44,31,16,108,202,122,44,14,16,108,202,122,44,31,15,108,202,122,44,14,15,108,202,122,44,31,14,108,202,122,44,30,14,108,202,122,44,29,14,108,202,122,44,28,14,108,202,122,44,27,14,108,202,122,44,26,14,108,202,122,44,25,14,108,202,122,44,24,14,108,202,122,44,23,14,108,202,122,44,22,14,108,202,122,44,21,14,108,202,122,44,20,14,108,202,122,44,19,14,108,202,122,44,18,14,108,202,122,44,17,14,108,202,122,44,16,14,108,202,122,44,15,14,108,202,122,44,14,14,108,202,122,44,31,31,107,202,122,44,30,31,107,202,122,44,29,31,107,202,122,44,28,31,107,202,122,44,27,31,107,202,122,44,26,31,107,202,122,44,25,31,107,202,122,44,24,31,107,202,122,44,23,31,107,202,122,44,22,31,107,202,122,44,21,31,107,202,122,44,20,31,107,202,122,44,19,31,107,202,122,44,18,31,107,202,122,44,17,31,107,202,122,44,16,31,107,202,122,44,15,31,107,202,122,44,14,31,107,202,122,44,31,30,107,202,122,44,14,30,107,202,122,44,31,29,107,202,122,44,14,29,107,202,122,44,31,28,107,202,122,44,14,28,107,202,122,44,31,27,107,202,122,44,14,27,107,202,122,44,31,26,107,202,122,44,14,26,107,202,122,44,31,25,107,202,122,44,14,25,107,202,122,44,84,-34,1,202,122,44,-39,-33,1,202,122,44,31,24,107,202,122,44,14,24,107,202,122,44,31,23,107,202,122,44,14,23,107,202,122,44,31,22,107,202,122,44,14,22,107,202,122,44,31,21,107,202,122,44,14,21,107,202,122,44,31,20,107,202,122,44,14,20,107,202,122,44,31,19,107,202,122,44,14,19,107,202,122,44,31,18,107,202,122,44,14,18,107,202,122,44,31,17,107,202,122,44,14,17,107,202,122,44,31,16,107,202,122,44,14,16,107,202,122,44,31,15,107,202,122,44,14,15,107,202,122,44,31,14,107,202,122,44,30,14,107,202,122,44,29,14,107,202,122,44,28,14,107,202,122,44,27,14,107,202,122,44,26,14,107,202,122,44,25,14,107,202,122,44,24,14,107,202,122,44,23,14,107,202,122,44,22,14,107,202,122,44,21,14,107,202,122,44,20,14,107,202,122,44,19,14,107,202,122,44,18,14,107,202,122,44,17,14,107,202,122,44,16,14,107,202,122,44,15,14,107,202,122,44,14,14,107,202,122,44,32,32,106,202,122,44,31,32,106,202,122,44,30,32,106,202,122,44,29,32,106,202,122,44,28,32,106,202,122,44,27,32,106,202,122,44,26,32,106,202,122,44,25,32,106,202,122,44,24,32,106,202,122,44,23,32,106,202,122,44,22,32,106,202,122,44,21,32,106,202,122,44,20,32,106,202,122,44,19,32,106,202,122,44,18,32,106,202,122,44,17,32,106,202,122,44,16,32,106,202,122,44,15,32,106,202,122,44,14,32,106,202,122,44,13,32,106,202,122,44,32,31,106,202,122,44,13,31,106,202,122,44,32,30,106,202,122,44,13,30,106,202,122,44,32,29,106,202,122,44,13,29,106,202,122,44,32,28,106,202,122,44,13,28,106,202,122,44,32,27,106,202,122,44,13,27,106,202,122,44,32,26,106,202,122,44,13,26,106,202,122,44,32,25,106,202,122,44,13,25,106,202,122,44,32,24,106,202,122,44,13,24,106,202,122,44,32,23,106,202,122,44,13,23,106,202,122,44,32,22,106,202,122,44,13,22,106,202,122,44,32,21,106,202,122,44,13,21,106,202,122,44,32,20,106,202,122,44,13,20,106,202,122,44,32,19,106,202,122,44,13,19,106,202,122,44,32,18,106,202,122,44,13,18,106,202,122,44,32,17,106,202,122,44,13,17,106,202,122,44,32,16,106,202,122,44,13,16,106,202,122,44,32,15,106,202,122,44,13,15,106,202,122,44,32,14,106,202,122,44,13,14,106,202,122,44,32,13,106,202,122,44,31,13,106,202,122,44,30,13,106,202,122,44,29,13,106,202,122,44,28,13,106,202,122,44,27,13,106,202,122,44,26,13,106,202,122,44,25,13,106,202,122,44,24,13,106,202,122,44,23,13,106,202,122,44,22,13,106,202,122,44,21,13,106,202,122,44,20,13,106,202,122,44,19,13,106,202,122,44,18,13,106,202,122,44,17,13,106,202,122,44,16,13,106,202,122,44,15,13,106,202,122,44,14,13,106,202,122,44,13,13,106,202,122,44,32,32,105,202,122,44,31,32,105,202,122,44,30,32,105,202,122,44,29,32,105,202,122,44,28,32,105,202,122,44,27,32,105,202,122,44,26,32,105,202,122,44,25,32,105,202,122,44,84,-33,1,202,122,44,-39,-32,1,202,122,44,24,32,105,202,122,44,23,32,105,202,122,44,22,32,105,202,122,44,21,32,105,202,122,44,20,32,105,202,122,44,19,32,105,202,122,44,18,32,105,202,122,44,17,32,105,202,122,44,16,32,105,202,122,44,15,32,105,202,122,44,14,32,105,202,122,44,13,32,105,202,122,44,32,31,105,202,122,44,13,31,105,202,122,44,32,30,105,202,122,44,13,30,105,202,122,44,32,29,105,202,122,44,13,29,105,202,122,44,32,28,105,202,122,44,13,28,105,202,122,44,32,27,105,202,122,44,13,27,105,202,122,44,32,26,105,202,122,44,13,26,105,202,122,44,32,25,105,202,122,44,13,25,105,202,122,44,32,24,105,202,122,44,13,24,105,202,122,44,32,23,105,202,122,44,13,23,105,202,122,44,32,22,105,202,122,44,13,22,105,202,122,44,32,21,105,202,122,44,13,21,105,202,122,44,32,20,105,202,122,44,13,20,105,202,122,44,32,19,105,202,122,44,13,19,105,202,122,44,32,18,105,202,122,44,13,18,105,202,122,44,32,17,105,202,122,44,13,17,105,202,122,44,32,16,105,202,122,44,13,16,105,202,122,44,32,15,105,202,122,44,13,15,105,202,122,44,32,14,105,202,122,44,13,14,105,202,122,44,32,13,105,202,122,44,31,13,105,202,122,44,30,13,105,202,122,44,29,13,105,202,122,44,28,13,105,202,122,44,27,13,105,202,122,44,26,13,105,202,122,44,25,13,105,202,122,44,24,13,105,202,122,44,23,13,105,202,122,44,22,13,105,202,122,44,21,13,105,202,122,44,20,13,105,202,122,44,19,13,105,202,122,44,18,13,105,202,122,44,17,13,105,202,122,44,16,13,105,202,122,44,15,13,105,202,122,44,14,13,105,202,122,44,13,13,105,202,122,44,33,33,104,202,122,44,32,33,104,202,122,44,31,33,104,202,122,44,30,33,104,202,122,44,29,33,104,202,122,44,28,33,104,202,122,44,27,33,104,202,122,44,26,33,104,202,122,44,25,33,104,202,122,44,24,33,104,202,122,44,23,33,104,202,122,44,22,33,104,202,122,44,21,33,104,202,122,44,20,33,104,202,122,44,19,33,104,202,122,44,18,33,104,202,122,44,17,33,104,202,122,44,16,33,104,202,122,44,15,33,104,202,122,44,14,33,104,202,122,44,13,33,104,202,122,44,12,33,104,202,122,44,33,32,104,202,122,44,12,32,104,202,122,44,33,31,104,202,122,44,12,31,104,202,122,44,33,30,104,202,122,44,12,30,104,202,122,44,33,29,104,202,122,44,12,29,104,202,122,44,33,28,104,202,122,44,12,28,104,202,122,44,33,27,104,202,122,44,12,27,104,202,122,44,33,26,104,202,122,44,12,26,104,202,122,44,33,25,104,202,122,44,12,25,104,202,122,44,33,24,104,202,122,44,12,24,104,202,122,44,33,23,104,202,122,44,12,23,104,202,122,44,33,22,104,202,122,44,12,22,104,202,122,44,33,21,104,202,122,44,12,21,104,202,122,44,33,20,104,202,122,44,12,20,104,202,122,44,33,19,104,202,122,44,12,19,104,202,122,44,33,18,104,202,122,44,12,18,104,202,122,44,33,17,104,202,122,44,12,17,104,202,122,44,84,-32,1,202,122,44,-39,-31,1,202,122,44,33,16,104,202,122,44,12,16,104,202,122,44,33,15,104,202,122,44,12,15,104,202,122,44,33,14,104,202,122,44,12,14,104,202,122,44,33,13,104,202,122,44,12,13,104,202,122,44,33,12,104,202,122,44,32,12,104,202,122,44,31,12,104,202,122,44,30,12,104,202,122,44,29,12,104,202,122,44,28,12,104,202,122,44,27,12,104,202,122,44,26,12,104,202,122,44,25,12,104,202,122,44,24,12,104,202,122,44,23,12,104,202,122,44,22,12,104,202,122,44,21,12,104,202,122,44,20,12,104,202,122,44,19,12,104,202,122,44,18,12,104,202,122,44,17,12,104,202,122,44,16,12,104,202,122,44,15,12,104,202,122,44,14,12,104,202,122,44,13,12,104,202,122,44,12,12,104,202,122,44,33,33,103,202,122,44,32,33,103,202,122,44,31,33,103,202,122,44,30,33,103,202,122,44,29,33,103,202,122,44,28,33,103,202,122,44,27,33,103,202,122,44,26,33,103,202,122,44,25,33,103,202,122,44,24,33,103,202,122,44,23,33,103,202,122,44,22,33,103,202,122,44,21,33,103,202,122,44,20,33,103,202,122,44,19,33,103,202,122,44,18,33,103,202,122,44,17,33,103,202,122,44,16,33,103,202,122,44,15,33,103,202,122,44,14,33,103,202,122,44,13,33,103,202,122,44,12,33,103,202,122,44,33,32,103,202,122,44,12,32,103,202,122,44,33,31,103,202,122,44,12,31,103,202,122,44,33,30,103,202,122,44,12,30,103,202,122,44,33,29,103,202,122,44,12,29,103,202,122,44,33,28,103,202,122,44,12,28,103,202,122,44,33,27,103,202,122,44,12,27,103,202,122,44,33,26,103,202,122,44,12,26,103,202,122,44,33,25,103,202,122,44,12,25,103,202,122,44,33,24,103,202,122,44,12,24,103,202,122,44,33,23,103,202,122,44,12,23,103,202,122,44,33,22,103,202,122,44,12,22,103,202,122,44,33,21,103,202,122,44,12,21,103,202,122,44,33,20,103,202,122,44,12,20,103,202,122,44,33,19,103,202,122,44,12,19,103,202,122,44,33,18,103,202,122,44,12,18,103,202,122,44,33,17,103,202,122,44,12,17,103,202,122,44,33,16,103,202,122,44,12,16,103,202,122,44,33,15,103,202,122,44,12,15,103,202,122,44,33,14,103,202,122,44,12,14,103,202,122,44,33,13,103,202,122,44,12,13,103,202,122,44,33,12,103,202,122,44,32,12,103,202,122,44,31,12,103,202,122,44,30,12,103,202,122,44,29,12,103,202,122,44,28,12,103,202,122,44,27,12,103,202,122,44,26,12,103,202,122,44,25,12,103,202,122,44,24,12,103,202,122,44,23,12,103,202,122,44,22,12,103,202,122,44,21,12,103,202,122,44,20,12,103,202,122,44,19,12,103,202,122,44,18,12,103,202,122,44,17,12,103,202,122,44,16,12,103,202,122,44,15,12,103,202,122,44,14,12,103,202,122,44,13,12,103,202,122,44,12,12,103,202,122,44,34,34,102,202,122,44,33,34,102,202,122,44,32,34,102,202,122,44,31,34,102,202,122,44,30,34,102,202,122,44,29,34,102,202,122,44,28,34,102,202,122,44,27,34,102,202,122,44,84,-31,1,202,122,44,-39,-30,1,202,122,44,26,34,102,202,122,44,25,34,102,202,122,44,24,34,102,202,122,44,23,34,102,202,122,44,22,34,102,202,122,44,21,34,102,202,122,44,20,34,102,202,122,44,19,34,102,202,122,44,18,34,102,202,122,44,17,34,102,202,122,44,16,34,102,202,122,44,15,34,102,202,122,44,14,34,102,202,122,44,13,34,102,202,122,44,12,34,102,202,122,44,11,34,102,202,122,44,34,33,102,202,122,44,11,33,102,202,122,44,34,32,102,202,122,44,11,32,102,202,122,44,34,31,102,202,122,44,11,31,102,202,122,44,34,30,102,202,122,44,11,30,102,202,122,44,34,29,102,202,122,44,11,29,102,202,122,44,34,28,102,202,122,44,11,28,102,202,122,44,34,27,102,202,122,44,11,27,102,202,122,44,34,26,102,202,122,44,11,26,102,202,122,44,34,25,102,202,122,44,11,25,102,202,122,44,34,24,102,202,122,44,11,24,102,202,122,44,34,23,102,202,122,44,11,23,102,202,122,44,34,22,102,202,122,44,11,22,102,202,122,44,34,21,102,202,122,44,11,21,102,202,122,44,34,20,102,202,122,44,11,20,102,202,122,44,34,19,102,202,122,44,11,19,102,202,122,44,34,18,102,202,122,44,11,18,102,202,122,44,34,17,102,202,122,44,11,17,102,202,122,44,34,16,102,202,122,44,11,16,102,202,122,44,34,15,102,202,122,44,11,15,102,202,122,44,34,14,102,202,122,44,11,14,102,202,122,44,34,13,102,202,122,44,11,13,102,202,122,44,34,12,102,202,122,44,11,12,102,202,122,44,34,11,102,202,122,44,33,11,102,202,122,44,32,11,102,202,122,44,31,11,102,202,122,44,30,11,102,202,122,44,29,11,102,202,122,44,28,11,102,202,122,44,27,11,102,202,122,44,26,11,102,202,122,44,25,11,102,202,122,44,24,11,102,202,122,44,23,11,102,202,122,44,22,11,102,202,122,44,21,11,102,202,122,44,20,11,102,202,122,44,19,11,102,202,122,44,18,11,102,202,122,44,17,11,102,202,122,44,16,11,102,202,122,44,15,11,102,202,122,44,14,11,102,202,122,44,13,11,102,202,122,44,12,11,102,202,122,44,11,11,102,202,122,44,34,34,101,202,122,44,33,34,101,202,122,44,32,34,101,202,122,44,31,34,101,202,122,44,30,34,101,202,122,44,29,34,101,202,122,44,28,34,101,202,122,44,27,34,101,202,122,44,26,34,101,202,122,44,25,34,101,202,122,44,24,34,101,202,122,44,23,34,101,202,122,44,22,34,101,202,122,44,21,34,101,202,122,44,20,34,101,202,122,44,19,34,101,202,122,44,18,34,101,202,122,44,17,34,101,202,122,44,16,34,101,202,122,44,15,34,101,202,122,44,14,34,101,202,122,44,13,34,101,202,122,44,12,34,101,202,122,44,11,34,101,202,122,44,34,33,101,202,122,44,11,33,101,202,122,44,34,32,101,202,122,44,11,32,101,202,122,44,34,31,101,202,122,44,11,31,101,202,122,44,34,30,101,202,122,44,11,30,101,202,122,44,34,29,101,202,122,44,11,29,101,202,122,44,34,28,101,202,122,44,11,28,101,202,122,44,34,27,101,202,122,44,11,27,101,202,122,44,84,-30,1,202,122,44,-39,-29,1,202,122,44,34,26,101,202,122,44,11,26,101,202,122,44,34,25,101,202,122,44,11,25,101,202,122,44,34,24,101,202,122,44,11,24,101,202,122,44,34,23,101,202,122,44,11,23,101,202,122,44,34,22,101,202,122,44,11,22,101,202,122,44,34,21,101,202,122,44,11,21,101,202,122,44,34,20,101,202,122,44,11,20,101,202,122,44,34,19,101,202,122,44,11,19,101,202,122,44,34,18,101,202,122,44,11,18,101,202,122,44,34,17,101,202,122,44,11,17,101,202,122,44,34,16,101,202,122,44,11,16,101,202,122,44,34,15,101,202,122,44,11,15,101,202,122,44,34,14,101,202,122,44,11,14,101,202,122,44,34,13,101,202,122,44,11,13,101,202,122,44,34,12,101,202,122,44,11,12,101,202,122,44,34,11,101,202,122,44,33,11,101,202,122,44,32,11,101,202,122,44,31,11,101,202,122,44,30,11,101,202,122,44,29,11,101,202,122,44,28,11,101,202,122,44,27,11,101,202,122,44,26,11,101,202,122,44,25,11,101,202,122,44,24,11,101,202,122,44,23,11,101,202,122,44,22,11,101,202,122,44,21,11,101,202,122,44,20,11,101,202,122,44,19,11,101,202,122,44,18,11,101,202,122,44,17,11,101,202,122,44,16,11,101,202,122,44,15,11,101,202,122,44,14,11,101,202,122,44,13,11,101,202,122,44,12,11,101,202,122,44,11,11,101,202,122,44,35,35,100,202,122,44,34,35,100,202,122,44,33,35,100,202,122,44,32,35,100,202,122,44,31,35,100,202,122,44,30,35,100,202,122,44,29,35,100,202,122,44,28,35,100,202,122,44,27,35,100,202,122,44,26,35,100,202,122,44,25,35,100,202,122,44,24,35,100,202,122,44,23,35,100,202,122,44,22,35,100,202,122,44,21,35,100,202,122,44,20,35,100,202,122,44,19,35,100,202,122,44,18,35,100,202,122,44,17,35,100,202,122,44,16,35,100,202,122,44,15,35,100,202,122,44,14,35,100,202,122,44,13,35,100,202,122,44,12,35,100,202,122,44,11,35,100,202,122,44,10,35,100,202,122,44,35,34,100,202,122,44,10,34,100,202,122,44,35,33,100,202,122,44,10,33,100,202,122,44,35,32,100,202,122,44,10,32,100,202,122,44,35,31,100,202,122,44,10,31,100,202,122,44,35,30,100,202,122,44,10,30,100,202,122,44,35,29,100,202,122,44,10,29,100,202,122,44,35,28,100,202,122,44,10,28,100,202,122,44,35,27,100,202,122,44,10,27,100,202,122,44,35,26,100,202,122,44,10,26,100,202,122,44,35,25,100,202,122,44,10,25,100,202,122,44,35,24,100,202,122,44,10,24,100,202,122,44,35,23,100,202,122,44,10,23,100,202,122,44,35,22,100,202,122,44,10,22,100,202,122,44,35,21,100,202,122,44,10,21,100,202,122,44,35,20,100,202,122,44,10,20,100,202,122,44,35,19,100,202,122,44,10,19,100,202,122,44,35,18,100,202,122,44,10,18,100,202,122,44,35,17,100,202,122,44,10,17,100,202,122,44,35,16,100,202,122,44,10,16,100,202,122,44,35,15,100,202,122,44,10,15,100,202,122,44,35,14,100,202,122,44,10,14,100,202,122,44,84,-29,1,202,122,44,-39,-28,1,202,122,44,35,13,100,202,122,44,10,13,100,202,122,44,35,12,100,202,122,44,10,12,100,202,122,44,35,11,100,202,122,44,10,11,100,202,122,44,35,10,100,202,122,44,34,10,100,202,122,44,33,10,100,202,122,44,32,10,100,202,122,44,31,10,100,202,122,44,30,10,100,202,122,44,29,10,100,202,122,44,28,10,100,202,122,44,27,10,100,202,122,44,26,10,100,202,122,44,25,10,100,202,122,44,24,10,100,202,122,44,23,10,100,202,122,44,22,10,100,202,122,44,21,10,100,202,122,44,20,10,100,202,122,44,19,10,100,202,122,44,18,10,100,202,122,44,17,10,100,202,122,44,16,10,100,202,122,44,15,10,100,202,122,44,14,10,100,202,122,44,13,10,100,202,122,44,12,10,100,202,122,44,11,10,100,202,122,44,10,10,100,202,122,44,35,35,99,202,122,44,34,35,99,202,122,44,33,35,99,202,122,44,32,35,99,202,122,44,31,35,99,202,122,44,30,35,99,202,122,44,29,35,99,202,122,44,28,35,99,202,122,44,27,35,99,202,122,44,26,35,99,202,122,44,25,35,99,202,122,44,24,35,99,202,122,44,23,35,99,202,122,44,22,35,99,202,122,44,21,35,99,202,122,44,20,35,99,202,122,44,19,35,99,202,122,44,18,35,99,202,122,44,17,35,99,202,122,44,16,35,99,202,122,44,15,35,99,202,122,44,14,35,99,202,122,44,13,35,99,202,122,44,12,35,99,202,122,44,11,35,99,202,122,44,10,35,99,202,122,44,35,34,99,202,122,44,10,34,99,202,122,44,35,33,99,202,122,44,10,33,99,202,122,44,35,32,99,202,122,44,10,32,99,202,122,44,35,31,99,202,122,44,10,31,99,202,122,44,35,30,99,202,122,44,10,30,99,202,122,44,35,29,99,202,122,44,10,29,99,202,122,44,35,28,99,202,122,44,10,28,99,202,122,44,35,27,99,202,122,44,10,27,99,202,122,44,35,26,99,202,122,44,10,26,99,202,122,44,35,25,99,202,122,44,10,25,99,202,122,44,35,24,99,202,122,44,10,24,99,202,122,44,35,23,99,202,122,44,10,23,99,202,122,44,35,22,99,202,122,44,10,22,99,202,122,44,35,21,99,202,122,44,10,21,99,202,122,44,35,20,99,202,122,44,10,20,99,202,122,44,35,19,99,202,122,44,10,19,99,202,122,44,35,18,99,202,122,44,10,18,99,202,122,44,35,17,99,202,122,44,10,17,99,202,122,44,35,16,99,202,122,44,10,16,99,202,122,44,35,15,99,202,122,44,10,15,99,202,122,44,35,14,99,202,122,44,10,14,99,202,122,44,35,13,99,202,122,44,10,13,99,202,122,44,35,12,99,202,122,44,10,12,99,202,122,44,35,11,99,202,122,44,10,11,99,202,122,44,35,10,99,202,122,44,34,10,99,202,122,44,33,10,99,202,122,44,32,10,99,202,122,44,31,10,99,202,122,44,30,10,99,202,122,44,29,10,99,202,122,44,28,10,99,202,122,44,27,10,99,202,122,44,26,10,99,202,122,44,25,10,99,202,122,44,24,10,99,202,122,44,23,10,99,202,122,44,22,10,99,202,122,44,21,10,99,202,122,44,20,10,99,202,122,44,84,-28,1,202,122,44,-39,-27,1,202,122,44,19,10,99,202,122,44,18,10,99,202,122,44,17,10,99,202,122,44,16,10,99,202,122,44,15,10,99,202,122,44,14,10,99,202,122,44,13,10,99,202,122,44,12,10,99,202,122,44,11,10,99,202,122,44,10,10,99,202,122,44,36,36,98,202,122,44,35,36,98,202,122,44,34,36,98,202,122,44,33,36,98,202,122,44,32,36,98,202,122,44,31,36,98,202,122,44,30,36,98,202,122,44,29,36,98,202,122,44,28,36,98,202,122,44,27,36,98,202,122,44,26,36,98,202,122,44,25,36,98,202,122,44,24,36,98,202,122,44,23,36,98,202,122,44,22,36,98,202,122,44,21,36,98,202,122,44,20,36,98,202,122,44,19,36,98,202,122,44,18,36,98,202,122,44,17,36,98,202,122,44,16,36,98,202,122,44,15,36,98,202,122,44,14,36,98,202,122,44,13,36,98,202,122,44,12,36,98,202,122,44,11,36,98,202,122,44,10,36,98,202,122,44,9,36,98,202,122,44,36,35,98,202,122,44,9,35,98,202,122,44,36,34,98,202,122,44,9,34,98,202,122,44,36,33,98,202,122,44,9,33,98,202,122,44,36,32,98,202,122,44,9,32,98,202,122,44,36,31,98,202,122,44,9,31,98,202,122,44,36,30,98,202,122,44,9,30,98,202,122,44,36,29,98,202,122,44,9,29,98,202,122,44,36,28,98,202,122,44,9,28,98,202,122,44,36,27,98,202,122,44,9,27,98,202,122,44,36,26,98,202,122,44,9,26,98,202,122,44,36,25,98,202,122,44,9,25,98,202,122,44,36,24,98,202,122,44,9,24,98,202,122,44,36,23,98,202,122,44,9,23,98,202,122,44,36,22,98,202,122,44,9,22,98,202,122,44,36,21,98,202,122,44,9,21,98,202,122,44,36,20,98,202,122,44,9,20,98,202,122,44,36,19,98,202,122,44,9,19,98,202,122,44,36,18,98,202,122,44,9,18,98,202,122,44,36,17,98,202,122,44,9,17,98,202,122,44,36,16,98,202,122,44,9,16,98,202,122,44,36,15,98,202,122,44,9,15,98,202,122,44,36,14,98,202,122,44,9,14,98,202,122,44,36,13,98,202,122,44,9,13,98,202,122,44,36,12,98,202,122,44,9,12,98,202,122,44,36,11,98,202,122,44,9,11,98,202,122,44,36,10,98,202,122,44,9,10,98,202,122,44,36,9,98,202,122,44,35,9,98,202,122,44,34,9,98,202,122,44,33,9,98,202,122,44,32,9,98,202,122,44,31,9,98,202,122,44,30,9,98,202,122,44,29,9,98,202,122,44,28,9,98,202,122,44,27,9,98,202,122,44,26,9,98,202,122,44,25,9,98,202,122,44,24,9,98,202,122,44,23,9,98,202,122,44,22,9,98,202,122,44,21,9,98,202,122,44,20,9,98,202,122,44,19,9,98,202,122,44,18,9,98,202,122,44,17,9,98,202,122,44,16,9,98,202,122,44,15,9,98,202,122,44,14,9,98,202,122,44,13,9,98,202,122,44,12,9,98,202,122,44,11,9,98,202,122,44,10,9,98,202,122,44,9,9,98,202,122,44,36,36,97,202,122,44,35,36,97,202,122,44,34,36,97,202,122,44,33,36,97,202,122,44,84,-27,1,202,122,44,-39,-26,1,202,122,44,32,36,97,202,122,44,31,36,97,202,122,44,30,36,97,202,122,44,29,36,97,202,122,44,28,36,97,202,122,44,27,36,97,202,122,44,26,36,97,202,122,44,25,36,97,202,122,44,24,36,97,202,122,44,23,36,97,202,122,44,22,36,97,202,122,44,21,36,97,202,122,44,20,36,97,202,122,44,19,36,97,202,122,44,18,36,97,202,122,44,17,36,97,202,122,44,16,36,97,202,122,44,15,36,97,202,122,44,14,36,97,202,122,44,13,36,97,202,122,44,12,36,97,202,122,44,11,36,97,202,122,44,10,36,97,202,122,44,9,36,97,202,122,44,36,35,97,202,122,44,9,35,97,202,122,44,36,34,97,202,122,44,9,34,97,202,122,44,36,33,97,202,122,44,9,33,97,202,122,44,36,32,97,202,122,44,9,32,97,202,122,44,36,31,97,202,122,44,9,31,97,202,122,44,36,30,97,202,122,44,9,30,97,202,122,44,36,29,97,202,122,44,9,29,97,202,122,44,36,28,97,202,122,44,9,28,97,202,122,44,36,27,97,202,122,44,9,27,97,202,122,44,36,26,97,202,122,44,9,26,97,202,122,44,36,25,97,202,122,44,9,25,97,202,122,44,36,24,97,202,122,44,9,24,97,202,122,44,36,23,97,202,122,44,9,23,97,202,122,44,36,22,97,202,122,44,9,22,97,202,122,44,36,21,97,202,122,44,9,21,97,202,122,44,36,20,97,202,122,44,9,20,97,202,122,44,36,19,97,202,122,44,9,19,97,202,122,44,36,18,97,202,122,44,9,18,97,202,122,44,36,17,97,202,122,44,9,17,97,202,122,44,36,16,97,202,122,44,9,16,97,202,122,44,36,15,97,202,122,44,9,15,97,202,122,44,36,14,97,202,122,44,9,14,97,202,122,44,36,13,97,202,122,44,9,13,97,202,122,44,36,12,97,202,122,44,9,12,97,202,122,44,36,11,97,202,122,44,9,11,97,202,122,44,36,10,97,202,122,44,9,10,97,202,122,44,36,9,97,202,122,44,35,9,97,202,122,44,34,9,97,202,122,44,33,9,97,202,122,44,32,9,97,202,122,44,31,9,97,202,122,44,30,9,97,202,122,44,29,9,97,202,122,44,28,9,97,202,122,44,27,9,97,202,122,44,26,9,97,202,122,44,25,9,97,202,122,44,24,9,97,202,122,44,23,9,97,202,122,44,22,9,97,202,122,44,21,9,97,202,122,44,20,9,97,202,122,44,19,9,97,202,122,44,18,9,97,202,122,44,17,9,97,202,122,44,16,9,97,202,122,44,15,9,97,202,122,44,14,9,97,202,122,44,13,9,97,202,122,44,12,9,97,202,122,44,11,9,97,202,122,44,10,9,97,202,122,44,9,9,97,202,122,44,37,37,96,202,122,44,36,37,96,202,122,44,35,37,96,202,122,44,34,37,96,202,122,44,33,37,96,202,122,44,32,37,96,202,122,44,31,37,96,202,122,44,30,37,96,202,122,44,29,37,96,202,122,44,28,37,96,202,122,44,27,37,96,202,122,44,26,37,96,202,122,44,25,37,96,202,122,44,24,37,96,202,122,44,23,37,96,202,122,44,22,37,96,202,122,44,21,37,96,202,122,44,20,37,96,202,122,44,84,-26,1,202,122,44,-39,-25,1,202,122,44,19,37,96,202,122,44,18,37,96,202,122,44,17,37,96,202,122,44,16,37,96,202,122,44,15,37,96,202,122,44,14,37,96,202,122,44,13,37,96,202,122,44,12,37,96,202,122,44,11,37,96,202,122,44,10,37,96,202,122,44,9,37,96,202,122,44,8,37,96,202,122,44,37,36,96,202,122,44,8,36,96,202,122,44,37,35,96,202,122,44,8,35,96,202,122,44,37,34,96,202,122,44,8,34,96,202,122,44,37,33,96,202,122,44,8,33,96,202,122,44,37,32,96,202,122,44,8,32,96,202,122,44,37,31,96,202,122,44,8,31,96,202,122,44,37,30,96,202,122,44,8,30,96,202,122,44,37,29,96,202,122,44,8,29,96,202,122,44,37,28,96,202,122,44,8,28,96,202,122,44,37,27,96,202,122,44,8,27,96,202,122,44,37,26,96,202,122,44,8,26,96,202,122,44,37,25,96,202,122,44,8,25,96,202,122,44,37,24,96,202,122,44,8,24,96,202,122,44,37,23,96,202,122,44,8,23,96,202,122,44,37,22,96,202,122,44,8,22,96,202,122,44,37,21,96,202,122,44,8,21,96,202,122,44,37,20,96,202,122,44,8,20,96,202,122,44,37,19,96,202,122,44,8,19,96,202,122,44,37,18,96,202,122,44,8,18,96,202,122,44,37,17,96,202,122,44,8,17,96,202,122,44,37,16,96,202,122,44,8,16,96,202,122,44,37,15,96,202,122,44,8,15,96,202,122,44,37,14,96,202,122,44,8,14,96,202,122,44,37,13,96,202,122,44,8,13,96,202,122,44,37,12,96,202,122,44,8,12,96,202,122,44,37,11,96,202,122,44,8,11,96,202,122,44,37,10,96,202,122,44,8,10,96,202,122,44,37,9,96,202,122,44,8,9,96,202,122,44,37,8,96,202,122,44,36,8,96,202,122,44,35,8,96,202,122,44,34,8,96,202,122,44,33,8,96,202,122,44,32,8,96,202,122,44,31,8,96,202,122,44,30,8,96,202,122,44,29,8,96,202,122,44,28,8,96,202,122,44,27,8,96,202,122,44,26,8,96,202,122,44,25,8,96,202,122,44,24,8,96,202,122,44,23,8,96,202,122,44,22,8,96,202,122,44,21,8,96,202,122,44,20,8,96,202,122,44,19,8,96,202,122,44,18,8,96,202,122,44,17,8,96,202,122,44,16,8,96,202,122,44,15,8,96,202,122,44,14,8,96,202,122,44,13,8,96,202,122,44,12,8,96,202,122,44,11,8,96,202,122,44,10,8,96,202,122,44,9,8,96,202,122,44,8,8,96,202,122,44,37,37,95,202,122,44,36,37,95,202,122,44,35,37,95,202,122,44,34,37,95,202,122,44,33,37,95,202,122,44,32,37,95,202,122,44,31,37,95,202,122,44,30,37,95,202,122,44,29,37,95,202,122,44,28,37,95,202,122,44,27,37,95,202,122,44,26,37,95,202,122,44,25,37,95,202,122,44,24,37,95,202,122,44,23,37,95,202,122,44,22,37,95,202,122,44,21,37,95,202,122,44,20,37,95,202,122,44,19,37,95,202,122,44,18,37,95,202,122,44,17,37,95,202,122,44,16,37,95,202,122,44,15,37,95,202,122,44,14,37,95,202,122,44,84,-25,1,202,122,44,-39,-24,1,202,122,44,13,37,95,202,122,44,12,37,95,202,122,44,11,37,95,202,122,44,10,37,95,202,122,44,9,37,95,202,122,44,8,37,95,202,122,44,37,36,95,202,122,44,8,36,95,202,122,44,37,35,95,202,122,44,8,35,95,202,122,44,37,34,95,202,122,44,8,34,95,202,122,44,37,33,95,202,122,44,8,33,95,202,122,44,37,32,95,202,122,44,8,32,95,202,122,44,37,31,95,202,122,44,8,31,95,202,122,44,37,30,95,202,122,44,8,30,95,202,122,44,37,29,95,202,122,44,8,29,95,202,122,44,37,28,95,202,122,44,8,28,95,202,122,44,37,27,95,202,122,44,8,27,95,202,122,44,37,26,95,202,122,44,8,26,95,202,122,44,37,25,95,202,122,44,8,25,95,202,122,44,37,24,95,202,122,44,8,24,95,202,122,44,37,23,95,202,122,44,8,23,95,202,122,44,37,22,95,202,122,44,8,22,95,202,122,44,37,21,95,202,122,44,8,21,95,202,122,44,37,20,95,202,122,44,8,20,95,202,122,44,37,19,95,202,122,44,8,19,95,202,122,44,37,18,95,202,122,44,8,18,95,202,122,44,37,17,95,202,122,44,8,17,95,202,122,44,37,16,95,202,122,44,8,16,95,202,122,44,37,15,95,202,122,44,8,15,95,202,122,44,37,14,95,202,122,44,8,14,95,202,122,44,37,13,95,202,122,44,8,13,95,202,122,44,37,12,95,202,122,44,8,12,95,202,122,44,37,11,95,202,122,44,8,11,95,202,122,44,37,10,95,202,122,44,8,10,95,202,122,44,37,9,95,202,122,44,8,9,95,202,122,44,37,8,95,202,122,44,36,8,95,202,122,44,35,8,95,202,122,44,34,8,95,202,122,44,33,8,95,202,122,44,32,8,95,202,122,44,31,8,95,202,122,44,30,8,95,202,122,44,29,8,95,202,122,44,28,8,95,202,122,44,27,8,95,202,122,44,26,8,95,202,122,44,25,8,95,202,122,44,24,8,95,202,122,44,23,8,95,202,122,44,22,8,95,202,122,44,21,8,95,202,122,44,20,8,95,202,122,44,19,8,95,202,122,44,18,8,95,202,122,44,17,8,95,202,122,44,16,8,95,202,122,44,15,8,95,202,122,44,14,8,95,202,122,44,13,8,95,202,122,44,12,8,95,202,122,44,11,8,95,202,122,44,10,8,95,202,122,44,9,8,95,202,122,44,8,8,95,202,122,44,38,38,94,202,122,44,37,38,94,202,122,44,36,38,94,202,122,44,35,38,94,202,122,44,34,38,94,202,122,44,33,38,94,202,122,44,32,38,94,202,122,44,31,38,94,202,122,44,30,38,94,202,122,44,29,38,94,202,122,44,28,38,94,202,122,44,27,38,94,202,122,44,26,38,94,202,122,44,25,38,94,202,122,44,24,38,94,202,122,44,23,38,94,202,122,44,22,38,94,202,122,44,21,38,94,202,122,44,20,38,94,202,122,44,19,38,94,202,122,44,18,38,94,202,122,44,17,38,94,202,122,44,16,38,94,202,122,44,15,38,94,202,122,44,14,38,94,202,122,44,13,38,94,202,122,44,12,38,94,202,122,44,11,38,94,202,122,44,10,38,94,202,122,44,9,38,94,202,122,44,84,-24,1,202,122,44,-39,-23,1,202,122,44,8,38,94,202,122,44,7,38,94,202,122,44,38,37,94,202,122,44,7,37,94,202,122,44,38,36,94,202,122,44,7,36,94,202,122,44,38,35,94,202,122,44,7,35,94,202,122,44,38,34,94,202,122,44,7,34,94,202,122,44,38,33,94,202,122,44,7,33,94,202,122,44,38,32,94,202,122,44,7,32,94,202,122,44,38,31,94,202,122,44,7,31,94,202,122,44,38,30,94,202,122,44,7,30,94,202,122,44,38,29,94,202,122,44,7,29,94,202,122,44,38,28,94,202,122,44,7,28,94,202,122,44,38,27,94,202,122,44,7,27,94,202,122,44,38,26,94,202,122,44,7,26,94,202,122,44,38,25,94,202,122,44,7,25,94,202,122,44,38,24,94,202,122,44,7,24,94,202,122,44,38,23,94,202,122,44,7,23,94,202,122,44,38,22,94,202,122,44,7,22,94,202,122,44,38,21,94,202,122,44,7,21,94,202,122,44,38,20,94,202,122,44,7,20,94,202,122,44,38,19,94,202,122,44,7,19,94,202,122,44,38,18,94,202,122,44,7,18,94,202,122,44,38,17,94,202,122,44,7,17,94,202,122,44,38,16,94,202,122,44,7,16,94,202,122,44,38,15,94,202,122,44,7,15,94,202,122,44,38,14,94,202,122,44,7,14,94,202,122,44,38,13,94,202,122,44,7,13,94,202,122,44,38,12,94,202,122,44,7,12,94,202,122,44,38,11,94,202,122,44,7,11,94,202,122,44,38,10,94,202,122,44,7,10,94,202,122,44,38,9,94,202,122,44,7,9,94,202,122,44,38,8,94,202,122,44,7,8,94,202,122,44,38,7,94,202,122,44,37,7,94,202,122,44,36,7,94,202,122,44,35,7,94,202,122,44,34,7,94,202,122,44,33,7,94,202,122,44,32,7,94,202,122,44,31,7,94,202,122,44,30,7,94,202,122,44,29,7,94,202,122,44,28,7,94,202,122,44,27,7,94,202,122,44,26,7,94,202,122,44,25,7,94,202,122,44,24,7,94,202,122,44,23,7,94,202,122,44,22,7,94,202,122,44,21,7,94,202,122,44,20,7,94,202,122,44,19,7,94,202,122,44,18,7,94,202,122,44,17,7,94,202,122,44,16,7,94,202,122,44,15,7,94,202,122,44,14,7,94,202,122,44,13,7,94,202,122,44,12,7,94,202,122,44,11,7,94,202,122,44,10,7,94,202,122,44,9,7,94,202,122,44,8,7,94,202,122,44,7,7,94,202,122,44,38,38,93,202,122,44,37,38,93,202,122,44,36,38,93,202,122,44,35,38,93,202,122,44,34,38,93,202,122,44,33,38,93,202,122,44,32,38,93,202,122,44,31,38,93,202,122,44,30,38,93,202,122,44,29,38,93,202,122,44,28,38,93,202,122,44,27,38,93,202,122,44,26,38,93,202,122,44,25,38,93,202,122,44,24,38,93,202,122,44,23,38,93,202,122,44,22,38,93,202,122,44,21,38,93,202,122,44,20,38,93,202,122,44,19,38,93,202,122,44,18,38,93,202,122,44,17,38,93,202,122,44,16,38,93,202,122,44,15,38,93,202,122,44,14,38,93,202,122,44,13,38,93,202,122,44,12,38,93,202,122,44,11,38,93,202,122,44,84,-23,1,202,122,44,-39,-22,1,202,122,44,10,38,93,202,122,44,9,38,93,202,122,44,8,38,93,202,122,44,7,38,93,202,122,44,38,37,93,202,122,44,7,37,93,202,122,44,38,36,93,202,122,44,7,36,93,202,122,44,38,35,93,202,122,44,7,35,93,202,122,44,38,34,93,202,122,44,7,34,93,202,122,44,38,33,93,202,122,44,7,33,93,202,122,44,38,32,93,202,122,44,7,32,93,202,122,44,38,31,93,202,122,44,7,31,93,202,122,44,38,30,93,202,122,44,7,30,93,202,122,44,38,29,93,202,122,44,7,29,93,202,122,44,38,28,93,202,122,44,7,28,93,202,122,44,38,27,93,202,122,44,7,27,93,202,122,44,38,26,93,202,122,44,7,26,93,202,122,44,38,25,93,202,122,44,7,25,93,202,122,44,38,24,93,202,122,44,7,24,93,202,122,44,38,23,93,202,122,44,7,23,93,202,122,44,38,22,93,202,122,44,7,22,93,202,122,44,38,21,93,202,122,44,7,21,93,202,122,44,38,20,93,202,122,44,7,20,93,202,122,44,38,19,93,202,122,44,7,19,93,202,122,44,38,18,93,202,122,44,7,18,93,202,122,44,38,17,93,202,122,44,7,17,93,202,122,44,38,16,93,202,122,44,7,16,93,202,122,44,38,15,93,202,122,44,7,15,93,202,122,44,38,14,93,202,122,44,7,14,93,202,122,44,38,13,93,202,122,44,7,13,93,202,122,44,38,12,93,202,122,44,7,12,93,202,122,44,38,11,93,202,122,44,7,11,93,202,122,44,38,10,93,202,122,44,7,10,93,202,122,44,38,9,93,202,122,44,7,9,93,202,122,44,38,8,93,202,122,44,7,8,93,202,122,44,38,7,93,202,122,44,37,7,93,202,122,44,36,7,93,202,122,44,35,7,93,202,122,44,34,7,93,202,122,44,33,7,93,202,122,44,32,7,93,202,122,44,31,7,93,202,122,44,30,7,93,202,122,44,29,7,93,202,122,44,28,7,93,202,122,44,27,7,93,202,122,44,26,7,93,202,122,44,25,7,93,202,122,44,24,7,93,202,122,44,23,7,93,202,122,44,22,7,93,202,122,44,21,7,93,202,122,44,20,7,93,202,122,44,19,7,93,202,122,44,18,7,93,202,122,44,17,7,93,202,122,44,16,7,93,202,122,44,15,7,93,202,122,44,14,7,93,202,122,44,13,7,93,202,122,44,12,7,93,202,122,44,11,7,93,202,122,44,10,7,93,202,122,44,9,7,93,202,122,44,8,7,93,202,122,44,7,7,93,202,122,44,39,39,92,202,122,44,38,39,92,202,122,44,37,39,92,202,122,44,36,39,92,202,122,44,35,39,92,202,122,44,34,39,92,202,122,44,33,39,92,202,122,44,32,39,92,202,122,44,31,39,92,202,122,44,30,39,92,202,122,44,29,39,92,202,122,44,28,39,92,202,122,44,27,39,92,202,122,44,26,39,92,202,122,44,25,39,92,202,122,44,24,39,92,202,122,44,23,39,92,202,122,44,22,39,92,202,122,44,21,39,92,202,122,44,20,39,92,202,122,44,19,39,92,202,122,44,18,39,92,202,122,44,17,39,92,202,122,44,16,39,92,202,122,44,15,39,92,202,122,44,14,39,92,202,122,44,84,-22,1,202,122,44,-39,-21,1,202,122,44,13,39,92,202,122,44,12,39,92,202,122,44,11,39,92,202,122,44,10,39,92,202,122,44,9,39,92,202,122,44,8,39,92,202,122,44,7,39,92,202,122,44,6,39,92,202,122,44,39,38,92,202,122,44,6,38,92,202,122,44,39,37,92,202,122,44,6,37,92,202,122,44,39,36,92,202,122,44,6,36,92,202,122,44,39,35,92,202,122,44,6,35,92,202,122,44,39,34,92,202,122,44,6,34,92,202,122,44,39,33,92,202,122,44,6,33,92,202,122,44,39,32,92,202,122,44,6,32,92,202,122,44,39,31,92,202,122,44,6,31,92,202,122,44,39,30,92,202,122,44,6,30,92,202,122,44,39,29,92,202,122,44,6,29,92,202,122,44,39,28,92,202,122,44,6,28,92,202,122,44,39,27,92,202,122,44,6,27,92,202,122,44,39,26,92,202,122,44,6,26,92,202,122,44,39,25,92,202,122,44,6,25,92,202,122,44,39,24,92,202,122,44,6,24,92,202,122,44,39,23,92,202,122,44,6,23,92,202,122,44,39,22,92,202,122,44,6,22,92,202,122,44,39,21,92,202,122,44,6,21,92,202,122,44,39,20,92,202,122,44,6,20,92,202,122,44,39,19,92,202,122,44,6,19,92,202,122,44,39,18,92,202,122,44,6,18,92,202,122,44,39,17,92,202,122,44,6,17,92,202,122,44,39,16,92,202,122,44,6,16,92,202,122,44,39,15,92,202,122,44,6,15,92,202,122,44,39,14,92,202,122,44,6,14,92,202,122,44,39,13,92,202,122,44,6,13,92,202,122,44,39,12,92,202,122,44,6,12,92,202,122,44,39,11,92,202,122,44,6,11,92,202,122,44,39,10,92,202,122,44,6,10,92,202,122,44,39,9,92,202,122,44,6,9,92,202,122,44,39,8,92,202,122,44,6,8,92,202,122,44,39,7,92,202,122,44,6,7,92,202,122,44,39,6,92,202,122,44,38,6,92,202,122,44,37,6,92,202,122,44,36,6,92,202,122,44,35,6,92,202,122,44,34,6,92,202,122,44,33,6,92,202,122,44,32,6,92,202,122,44,31,6,92,202,122,44,30,6,92,202,122,44,29,6,92,202,122,44,28,6,92,202,122,44,27,6,92,202,122,44,26,6,92,202,122,44,25,6,92,202,122,44,24,6,92,202,122,44,23,6,92,202,122,44,22,6,92,202,122,44,21,6,92,202,122,44,20,6,92,202,122,44,19,6,92,202,122,44,18,6,92,202,122,44,17,6,92,202,122,44,16,6,92,202,122,44,15,6,92,202,122,44,14,6,92,202,122,44,13,6,92,202,122,44,12,6,92,202,122,44,11,6,92,202,122,44,10,6,92,202,122,44,9,6,92,202,122,44,8,6,92,202,122,44,7,6,92,202,122,44,6,6,92,202,122,44,39,39,91,202,122,44,38,39,91,202,122,44,37,39,91,202,122,44,36,39,91,202,122,44,35,39,91,202,122,44,34,39,91,202,122,44,33,39,91,202,122,44,32,39,91,202,122,44,31,39,91,202,122,44,30,39,91,202,122,44,29,39,91,202,122,44,28,39,91,202,122,44,27,39,91,202,122,44,26,39,91,202,122,44,25,39,91,202,122,44,24,39,91,202,122,44,84,-21,1,202,122,44,-39,-20,1,202,122,44,23,39,91,202,122,44,22,39,91,202,122,44,21,39,91,202,122,44,20,39,91,202,122,44,19,39,91,202,122,44,18,39,91,202,122,44,17,39,91,202,122,44,16,39,91,202,122,44,15,39,91,202,122,44,14,39,91,202,122,44,13,39,91,202,122,44,12,39,91,202,122,44,11,39,91,202,122,44,10,39,91,202,122,44,9,39,91,202,122,44,8,39,91,202,122,44,7,39,91,202,122,44,6,39,91,202,122,44,39,38,91,202,122,44,6,38,91,202,122,44,39,37,91,202,122,44,6,37,91,202,122,44,39,36,91,202,122,44,6,36,91,202,122,44,39,35,91,202,122,44,6,35,91,202,122,44,39,34,91,202,122,44,6,34,91,202,122,44,39,33,91,202,122,44,6,33,91,202,122,44,39,32,91,202,122,44,6,32,91,202,122,44,39,31,91,202,122,44,6,31,91,202,122,44,39,30,91,202,122,44,6,30,91,202,122,44,39,29,91,202,122,44,6,29,91,202,122,44,39,28,91,202,122,44,6,28,91,202,122,44,39,27,91,202,122,44,6,27,91,202,122,44,39,26,91,202,122,44,6,26,91,202,122,44,39,25,91,202,122,44,6,25,91,202,122,44,39,24,91,202,122,44,6,24,91,202,122,44,39,23,91,202,122,44,6,23,91,202,122,44,39,22,91,202,122,44,6,22,91,202,122,44,39,21,91,202,122,44,6,21,91,202,122,44,39,20,91,202,122,44,6,20,91,202,122,44,39,19,91,202,122,44,6,19,91,202,122,44,39,18,91,202,122,44,6,18,91,202,122,44,39,17,91,202,122,44,6,17,91,202,122,44,39,16,91,202,122,44,6,16,91,202,122,44,39,15,91,202,122,44,6,15,91,202,122,44,39,14,91,202,122,44,6,14,91,202,122,44,39,13,91,202,122,44,6,13,91,202,122,44,39,12,91,202,122,44,6,12,91,202,122,44,39,11,91,202,122,44,6,11,91,202,122,44,39,10,91,202,122,44,6,10,91,202,122,44,39,9,91,202,122,44,6,9,91,202,122,44,39,8,91,202,122,44,6,8,91,202,122,44,39,7,91,202,122,44,6,7,91,202,122,44,39,6,91,202,122,44,38,6,91,202,122,44,37,6,91,202,122,44,36,6,91,202,122,44,35,6,91,202,122,44,34,6,91,202,122,44,33,6,91,202,122,44,32,6,91,202,122,44,31,6,91,202,122,44,30,6,91,202,122,44,29,6,91,202,122,44,28,6,91,202,122,44,27,6,91,202,122,44,26,6,91,202,122,44,25,6,91,202,122,44,24,6,91,202,122,44,23,6,91,202,122,44,22,6,91,202,122,44,21,6,91,202,122,44,20,6,91,202,122,44,19,6,91,202,122,44,18,6,91,202,122,44,17,6,91,202,122,44,16,6,91,202,122,44,15,6,91,202,122,44,14,6,91,202,122,44,13,6,91,202,122,44,12,6,91,202,122,44,11,6,91,202,122,44,10,6,91,202,122,44,9,6,91,202,122,44,8,6,91,202,122,44,7,6,91,202,122,44,6,6,91,202,122,44,40,40,90,202,122,44,39,40,90,202,122,44,38,40,90,202,122,44,37,40,90,202,122,44,36,40,90,202,122,44,35,40,90,202,122,44,84,-20,1,202,122,44,-39,-19,1,202,122,44,34,40,90,202,122,44,33,40,90,202,122,44,32,40,90,202,122,44,31,40,90,202,122,44,30,40,90,202,122,44,29,40,90,202,122,44,28,40,90,202,122,44,27,40,90,202,122,44,26,40,90,202,122,44,25,40,90,202,122,44,24,40,90,202,122,44,23,40,90,202,122,44,22,40,90,202,122,44,21,40,90,202,122,44,20,40,90,202,122,44,19,40,90,202,122,44,18,40,90,202,122,44,17,40,90,202,122,44,16,40,90,202,122,44,15,40,90,202,122,44,14,40,90,202,122,44,13,40,90,202,122,44,12,40,90,202,122,44,11,40,90,202,122,44,10,40,90,202,122,44,9,40,90,202,122,44,8,40,90,202,122,44,7,40,90,202,122,44,6,40,90,202,122,44,5,40,90,202,122,44,40,39,90,202,122,44,5,39,90,202,122,44,40,38,90,202,122,44,5,38,90,202,122,44,40,37,90,202,122,44,5,37,90,202,122,44,40,36,90,202,122,44,5,36,90,202,122,44,40,35,90,202,122,44,5,35,90,202,122,44,40,34,90,202,122,44,5,34,90,202,122,44,40,33,90,202,122,44,5,33,90,202,122,44,40,32,90,202,122,44,5,32,90,202,122,44,40,31,90,202,122,44,5,31,90,202,122,44,40,30,90,202,122,44,5,30,90,202,122,44,40,29,90,202,122,44,5,29,90,202,122,44,40,28,90,202,122,44,5,28,90,202,122,44,40,27,90,202,122,44,5,27,90,202,122,44,40,26,90,202,122,44,5,26,90,202,122,44,40,25,90,202,122,44,5,25,90,202,122,44,40,24,90,202,122,44,5,24,90,202,122,44,40,23,90,202,122,44,5,23,90,202,122,44,40,22,90,202,122,44,5,22,90,202,122,44,40,21,90,202,122,44,5,21,90,202,122,44,40,20,90,202,122,44,5,20,90,202,122,44,40,19,90,202,122,44,5,19,90,202,122,44,40,18,90,202,122,44,5,18,90,202,122,44,40,17,90,202,122,44,5,17,90,202,122,44,40,16,90,202,122,44,5,16,90,202,122,44,40,15,90,202,122,44,5,15,90,202,122,44,40,14,90,202,122,44,5,14,90,202,122,44,40,13,90,202,122,44,5,13,90,202,122,44,40,12,90,202,122,44,5,12,90,202,122,44,40,11,90,202,122,44,5,11,90,202,122,44,40,10,90,202,122,44,5,10,90,202,122,44,40,9,90,202,122,44,5,9,90,202,122,44,40,8,90,202,122,44,5,8,90,202,122,44,40,7,90,202,122,44,5,7,90,202,122,44,40,6,90,202,122,44,5,6,90,202,122,44,40,5,90,202,122,44,39,5,90,202,122,44,38,5,90,202,122,44,37,5,90,202,122,44,36,5,90,202,122,44,35,5,90,202,122,44,34,5,90,202,122,44,33,5,90,202,122,44,32,5,90,202,122,44,31,5,90,202,122,44,30,5,90,202,122,44,29,5,90,202,122,44,28,5,90,202,122,44,27,5,90,202,122,44,26,5,90,202,122,44,25,5,90,202,122,44,24,5,90,202,122,44,23,5,90,202,122,44,22,5,90,202,122,44,21,5,90,202,122,44,20,5,90,202,122,44,19,5,90,202,122,44,18,5,90,202,122,44,17,5,90,202,122,44,84,-19,1,202,122,44,-39,-18,1,202,122,44,16,5,90,202,122,44,15,5,90,202,122,44,14,5,90,202,122,44,13,5,90,202,122,44,12,5,90,202,122,44,11,5,90,202,122,44,10,5,90,202,122,44,9,5,90,202,122,44,8,5,90,202,122,44,7,5,90,202,122,44,6,5,90,202,122,44,5,5,90,202,122,44,40,40,89,202,122,44,39,40,89,202,122,44,38,40,89,202,122,44,37,40,89,202,122,44,36,40,89,202,122,44,35,40,89,202,122,44,34,40,89,202,122,44,33,40,89,202,122,44,32,40,89,202,122,44,31,40,89,202,122,44,30,40,89,202,122,44,29,40,89,202,122,44,28,40,89,202,122,44,27,40,89,202,122,44,26,40,89,202,122,44,25,40,89,202,122,44,24,40,89,202,122,44,23,40,89,202,122,44,22,40,89,202,122,44,21,40,89,202,122,44,20,40,89,202,122,44,19,40,89,202,122,44,18,40,89,202,122,44,17,40,89,202,122,44,16,40,89,202,122,44,15,40,89,202,122,44,14,40,89,202,122,44,13,40,89,202,122,44,12,40,89,202,122,44,11,40,89,202,122,44,10,40,89,202,122,44,9,40,89,202,122,44,8,40,89,202,122,44,7,40,89,202,122,44,6,40,89,202,122,44,5,40,89,202,122,44,40,39,89,202,122,44,5,39,89,202,122,44,40,38,89,202,122,44,5,38,89,202,122,44,40,37,89,202,122,44,5,37,89,202,122,44,40,36,89,202,122,44,5,36,89,202,122,44,40,35,89,202,122,44,5,35,89,202,122,44,40,34,89,202,122,44,5,34,89,202,122,44,40,33,89,202,122,44,5,33,89,202,122,44,40,32,89,202,122,44,5,32,89,202,122,44,40,31,89,202,122,44,5,31,89,202,122,44,40,30,89,202,122,44,5,30,89,202,122,44,40,29,89,202,122,44,5,29,89,202,122,44,40,28,89,202,122,44,5,28,89,202,122,44,40,27,89,202,122,44,5,27,89,202,122,44,40,26,89,202,122,44,5,26,89,202,122,44,40,25,89,202,122,44,5,25,89,202,122,44,40,24,89,202,122,44,5,24,89,202,122,44,40,23,89,202,122,44,5,23,89,202,122,44,40,22,89,202,122,44,5,22,89,202,122,44,40,21,89,202,122,44,5,21,89,202,122,44,40,20,89,202,122,44,5,20,89,202,122,44,40,19,89,202,122,44,5,19,89,202,122,44,40,18,89,202,122,44,5,18,89,202,122,44,40,17,89,202,122,44,5,17,89,202,122,44,40,16,89,202,122,44,5,16,89,202,122,44,40,15,89,202,122,44,5,15,89,202,122,44,40,14,89,202,122,44,5,14,89,202,122,44,40,13,89,202,122,44,5,13,89,202,122,44,40,12,89,202,122,44,5,12,89,202,122,44,40,11,89,202,122,44,5,11,89,202,122,44,40,10,89,202,122,44,5,10,89,202,122,44,40,9,89,202,122,44,5,9,89,202,122,44,40,8,89,202,122,44,5,8,89,202,122,44,40,7,89,202,122,44,5,7,89,202,122,44,40,6,89,202,122,44,5,6,89,202,122,44,40,5,89,202,122,44,39,5,89,202,122,44,38,5,89,202,122,44,37,5,89,202,122,44,36,5,89,202,122,44,35,5,89,202,122,44,84,-18,1,202,122,44,-39,-17,1,202,122,44,34,5,89,202,122,44,33,5,89,202,122,44,32,5,89,202,122,44,31,5,89,202,122,44,30,5,89,202,122,44,29,5,89,202,122,44,28,5,89,202,122,44,27,5,89,202,122,44,26,5,89,202,122,44,25,5,89,202,122,44,24,5,89,202,122,44,23,5,89,202,122,44,22,5,89,202,122,44,21,5,89,202,122,44,20,5,89,202,122,44,19,5,89,202,122,44,18,5,89,202,122,44,17,5,89,202,122,44,16,5,89,202,122,44,15,5,89,202,122,44,14,5,89,202,122,44,13,5,89,202,122,44,12,5,89,202,122,44,11,5,89,202,122,44,10,5,89,202,122,44,9,5,89,202,122,44,8,5,89,202,122,44,7,5,89,202,122,44,6,5,89,202,122,44,5,5,89,202,122,44,41,41,88,202,122,44,40,41,88,202,122,44,39,41,88,202,122,44,38,41,88,202,122,44,37,41,88,202,122,44,36,41,88,202,122,44,35,41,88,202,122,44,34,41,88,202,122,44,33,41,88,202,122,44,32,41,88,202,122,44,31,41,88,202,122,44,30,41,88,202,122,44,29,41,88,202,122,44,28,41,88,202,122,44,27,41,88,202,122,44,26,41,88,202,122,44,25,41,88,202,122,44,24,41,88,202,122,44,23,41,88,202,122,44,22,41,88,202,122,44,21,41,88,202,122,44,20,41,88,202,122,44,19,41,88,202,122,44,18,41,88,202,122,44,17,41,88,202,122,44,16,41,88,202,122,44,15,41,88,202,122,44,14,41,88,202,122,44,13,41,88,202,122,44,12,41,88,202,122,44,11,41,88,202,122,44,10,41,88,202,122,44,9,41,88,202,122,44,8,41,88,202,122,44,7,41,88,202,122,44,6,41,88,202,122,44,5,41,88,202,122,44,4,41,88,202,122,44,41,40,88,202,122,44,4,40,88,202,122,44,41,39,88,202,122,44,4,39,88,202,122,44,41,38,88,202,122,44,4,38,88,202,122,44,41,37,88,202,122,44,4,37,88,202,122,44,41,36,88,202,122,44,4,36,88,202,122,44,41,35,88,202,122,44,4,35,88,202,122,44,41,34,88,202,122,44,4,34,88,202,122,44,41,33,88,202,122,44,4,33,88,202,122,44,41,32,88,202,122,44,4,32,88,202,122,44,41,31,88,202,122,44,4,31,88,202,122,44,41,30,88,202,122,44,4,30,88,202,122,44,41,29,88,202,122,44,4,29,88,202,122,44,41,28,88,202,122,44,4,28,88,202,122,44,41,27,88,202,122,44,4,27,88,202,122,44,41,26,88,202,122,44,4,26,88,202,122,44,41,25,88,202,122,44,4,25,88,202,122,44,41,24,88,202,122,44,4,24,88,202,122,44,41,23,88,202,122,44,4,23,88,202,122,44,41,22,88,202,122,44,4,22,88,202,122,44,41,21,88,202,122,44,4,21,88,202,122,44,41,20,88,202,122,44,4,20,88,202,122,44,41,19,88,202,122,44,4,19,88,202,122,44,41,18,88,202,122,44,4,18,88,202,122,44,41,17,88,202,122,44,4,17,88,202,122,44,41,16,88,202,122,44,4,16,88,202,122,44,41,15,88,202,122,44,4,15,88,202,122,44,41,14,88,202,122,44,4,14,88,202,122,44,84,-17,1,202,122,44,-39,-16,1,202,122,44,41,13,88,202,122,44,4,13,88,202,122,44,41,12,88,202,122,44,4,12,88,202,122,44,41,11,88,202,122,44,4,11,88,202,122,44,41,10,88,202,122,44,4,10,88,202,122,44,41,9,88,202,122,44,4,9,88,202,122,44,41,8,88,202,122,44,4,8,88,202,122,44,41,7,88,202,122,44,4,7,88,202,122,44,41,6,88,202,122,44,4,6,88,202,122,44,41,5,88,202,122,44,4,5,88,202,122,44,41,4,88,202,122,44,40,4,88,202,122,44,39,4,88,202,122,44,38,4,88,202,122,44,37,4,88,202,122,44,36,4,88,202,122,44,35,4,88,202,122,44,34,4,88,202,122,44,33,4,88,202,122,44,32,4,88,202,122,44,31,4,88,202,122,44,30,4,88,202,122,44,29,4,88,202,122,44,28,4,88,202,122,44,27,4,88,202,122,44,26,4,88,202,122,44,25,4,88,202,122,44,24,4,88,202,122,44,23,4,88,202,122,44,22,4,88,202,122,44,21,4,88,202,122,44,20,4,88,202,122,44,19,4,88,202,122,44,18,4,88,202,122,44,17,4,88,202,122,44,16,4,88,202,122,44,15,4,88,202,122,44,14,4,88,202,122,44,13,4,88,202,122,44,12,4,88,202,122,44,11,4,88,202,122,44,10,4,88,202,122,44,9,4,88,202,122,44,8,4,88,202,122,44,7,4,88,202,122,44,6,4,88,202,122,44,5,4,88,202,122,44,4,4,88,202,122,44,41,41,87,202,122,44,40,41,87,202,122,44,39,41,87,202,122,44,38,41,87,202,122,44,37,41,87,202,122,44,36,41,87,202,122,44,35,41,87,202,122,44,34,41,87,202,122,44,33,41,87,202,122,44,32,41,87,202,122,44,31,41,87,202,122,44,30,41,87,202,122,44,29,41,87,202,122,44,28,41,87,202,122,44,27,41,87,202,122,44,26,41,87,202,122,44,25,41,87,202,122,44,24,41,87,202,122,44,23,41,87,202,122,44,22,41,87,202,122,44,21,41,87,202,122,44,20,41,87,202,122,44,19,41,87,202,122,44,18,41,87,202,122,44,17,41,87,202,122,44,16,41,87,202,122,44,15,41,87,202,122,44,14,41,87,202,122,44,13,41,87,202,122,44,12,41,87,202,122,44,11,41,87,202,122,44,10,41,87,202,122,44,9,41,87,202,122,44,8,41,87,202,122,44,7,41,87,202,122,44,6,41,87,202,122,44,5,41,87,202,122,44,4,41,87,202,122,44,41,40,87,202,122,44,4,40,87,202,122,44,41,39,87,202,122,44,4,39,87,202,122,44,41,38,87,202,122,44,4,38,87,202,122,44,41,37,87,202,122,44,4,37,87,202,122,44,41,36,87,202,122,44,4,36,87,202,122,44,41,35,87,202,122,44,4,35,87,202,122,44,41,34,87,202,122,44,4,34,87,202,122,44,41,33,87,202,122,44,4,33,87,202,122,44,41,32,87,202,122,44,4,32,87,202,122,44,41,31,87,202,122,44,4,31,87,202,122,44,41,30,87,202,122,44,4,30,87,202,122,44,41,29,87,202,122,44,4,29,87,202,122,44,41,28,87,202,122,44,4,28,87,202,122,44,41,27,87,202,122,44,4,27,87,202,122,44,84,-16,1,202,122,44,-39,-15,1,202,122,44,41,26,87,202,122,44,4,26,87,202,122,44,41,25,87,202,122,44,4,25,87,202,122,44,41,24,87,202,122,44,4,24,87,202,122,44,41,23,87,202,122,44,4,23,87,202,122,44,41,22,87,202,122,44,4,22,87,202,122,44,41,21,87,202,122,44,4,21,87,202,122,44,41,20,87,202,122,44,4,20,87,202,122,44,41,19,87,202,122,44,4,19,87,202,122,44,41,18,87,202,122,44,4,18,87,202,122,44,41,17,87,202,122,44,4,17,87,202,122,44,41,16,87,202,122,44,4,16,87,202,122,44,41,15,87,202,122,44,4,15,87,202,122,44,41,14,87,202,122,44,4,14,87,202,122,44,41,13,87,202,122,44,4,13,87,202,122,44,41,12,87,202,122,44,4,12,87,202,122,44,41,11,87,202,122,44,4,11,87,202,122,44,41,10,87,202,122,44,4,10,87,202,122,44,41,9,87,202,122,44,4,9,87,202,122,44,41,8,87,202,122,44,4,8,87,202,122,44,41,7,87,202,122,44,4,7,87,202,122,44,41,6,87,202,122,44,4,6,87,202,122,44,41,5,87,202,122,44,4,5,87,202,122,44,41,4,87,202,122,44,40,4,87,202,122,44,39,4,87,202,122,44,38,4,87,202,122,44,37,4,87,202,122,44,36,4,87,202,122,44,35,4,87,202,122,44,34,4,87,202,122,44,33,4,87,202,122,44,32,4,87,202,122,44,31,4,87,202,122,44,30,4,87,202,122,44,29,4,87,202,122,44,28,4,87,202,122,44,27,4,87,202,122,44,26,4,87,202,122,44,25,4,87,202,122,44,24,4,87,202,122,44,23,4,87,202,122,44,22,4,87,202,122,44,21,4,87,202,122,44,20,4,87,202,122,44,19,4,87,202,122,44,18,4,87,202,122,44,17,4,87,202,122,44,16,4,87,202,122,44,15,4,87,202,122,44,14,4,87,202,122,44,13,4,87,202,122,44,12,4,87,202,122,44,11,4,87,202,122,44,10,4,87,202,122,44,9,4,87,202,122,44,8,4,87,202,122,44,7,4,87,202,122,44,6,4,87,202,122,44,5,4,87,202,122,44,4,4,87,202,122,44,42,42,86,202,122,44,41,42,86,202,122,44,40,42,86,202,122,44,39,42,86,202,122,44,38,42,86,202,122,44,37,42,86,202,122,44,36,42,86,202,122,44,35,42,86,202,122,44,34,42,86,202,122,44,33,42,86,202,122,44,32,42,86,202,122,44,31,42,86,202,122,44,30,42,86,202,122,44,29,42,86,202,122,44,28,42,86,202,122,44,27,42,86,202,122,44,26,42,86,202,122,44,25,42,86,202,122,44,24,42,86,202,122,44,23,42,86,202,122,44,22,42,86,202,122,44,21,42,86,202,122,44,20,42,86,202,122,44,19,42,86,202,122,44,18,42,86,202,122,44,17,42,86,202,122,44,16,42,86,202,122,44,15,42,86,202,122,44,14,42,86,202,122,44,13,42,86,202,122,44,12,42,86,202,122,44,11,42,86,202,122,44,10,42,86,202,122,44,9,42,86,202,122,44,8,42,86,202,122,44,7,42,86,202,122,44,6,42,86,202,122,44,5,42,86,202,122,44,4,42,86,202,122,44,3,42,86,202,122,44,84,-15,1,202,122,44,-39,-14,1,202,122,44,42,41,86,202,122,44,3,41,86,202,122,44,42,40,86,202,122,44,3,40,86,202,122,44,42,39,86,202,122,44,3,39,86,202,122,44,42,38,86,202,122,44,3,38,86,202,122,44,42,37,86,202,122,44,3,37,86,202,122,44,42,36,86,202,122,44,3,36,86,202,122,44,42,35,86,202,122,44,3,35,86,202,122,44,42,34,86,202,122,44,3,34,86,202,122,44,42,33,86,202,122,44,3,33,86,202,122,44,42,32,86,202,122,44,3,32,86,202,122,44,42,31,86,202,122,44,3,31,86,202,122,44,42,30,86,202,122,44,3,30,86,202,122,44,42,29,86,202,122,44,3,29,86,202,122,44,42,28,86,202,122,44,3,28,86,202,122,44,42,27,86,202,122,44,3,27,86,202,122,44,42,26,86,202,122,44,3,26,86,202,122,44,42,25,86,202,122,44,3,25,86,202,122,44,42,24,86,202,122,44,3,24,86,202,122,44,42,23,86,202,122,44,3,23,86,202,122,44,42,22,86,202,122,44,3,22,86,202,122,44,42,21,86,202,122,44,3,21,86,202,122,44,42,20,86,202,122,44,3,20,86,202,122,44,42,19,86,202,122,44,3,19,86,202,122,44,42,18,86,202,122,44,3,18,86,202,122,44,42,17,86,202,122,44,3,17,86,202,122,44,42,16,86,202,122,44,3,16,86,202,122,44,42,15,86,202,122,44,3,15,86,202,122,44,42,14,86,202,122,44,3,14,86,202,122,44,42,13,86,202,122,44,3,13,86,202,122,44,42,12,86,202,122,44,3,12,86,202,122,44,42,11,86,202,122,44,3,11,86,202,122,44,42,10,86,202,122,44,3,10,86,202,122,44,42,9,86,202,122,44,3,9,86,202,122,44,42,8,86,202,122,44,3,8,86,202,122,44,42,7,86,202,122,44,3,7,86,202,122,44,42,6,86,202,122,44,3,6,86,202,122,44,42,5,86,202,122,44,3,5,86,202,122,44,42,4,86,202,122,44,3,4,86,202,122,44,42,3,86,202,122,44,41,3,86,202,122,44,40,3,86,202,122,44,39,3,86,202,122,44,38,3,86,202,122,44,37,3,86,202,122,44,36,3,86,202,122,44,35,3,86,202,122,44,34,3,86,202,122,44,33,3,86,202,122,44,32,3,86,202,122,44,31,3,86,202,122,44,30,3,86,202,122,44,29,3,86,202,122,44,28,3,86,202,122,44,27,3,86,202,122,44,26,3,86,202,122,44,25,3,86,202,122,44,24,3,86,202,122,44,23,3,86,202,122,44,22,3,86,202,122,44,21,3,86,202,122,44,20,3,86,202,122,44,19,3,86,202,122,44,18,3,86,202,122,44,17,3,86,202,122,44,16,3,86,202,122,44,15,3,86,202,122,44,14,3,86,202,122,44,13,3,86,202,122,44,12,3,86,202,122,44,11,3,86,202,122,44,10,3,86,202,122,44,9,3,86,202,122,44,8,3,86,202,122,44,7,3,86,202,122,44,6,3,86,202,122,44,5,3,86,202,122,44,4,3,86,202,122,44,3,3,86,202,122,44,42,42,85,202,122,44,41,42,85,202,122,44,40,42,85,202,122,44,39,42,85,202,122,44,38,42,85,202,122,44,37,42,85,202,122,44,84,-14,1,202,122,44,-39,-13,1,202,122,44,36,42,85,202,122,44,35,42,85,202,122,44,34,42,85,202,122,44,33,42,85,202,122,44,32,42,85,202,122,44,31,42,85,202,122,44,30,42,85,202,122,44,29,42,85,202,122,44,28,42,85,202,122,44,27,42,85,202,122,44,26,42,85,202,122,44,25,42,85,202,122,44,24,42,85,202,122,44,23,42,85,202,122,44,22,42,85,202,122,44,21,42,85,202,122,44,20,42,85,202,122,44,19,42,85,202,122,44,18,42,85,202,122,44,17,42,85,202,122,44,16,42,85,202,122,44,15,42,85,202,122,44,14,42,85,202,122,44,13,42,85,202,122,44,12,42,85,202,122,44,11,42,85,202,122,44,10,42,85,202,122,44,9,42,85,202,122,44,8,42,85,202,122,44,7,42,85,202,122,44,6,42,85,202,122,44,5,42,85,202,122,44,4,42,85,202,122,44,3,42,85,202,122,44,42,41,85,202,122,44,3,41,85,202,122,44,42,40,85,202,122,44,3,40,85,202,122,44,42,39,85,202,122,44,3,39,85,202,122,44,42,38,85,202,122,44,3,38,85,202,122,44,42,37,85,202,122,44,3,37,85,202,122,44,42,36,85,202,122,44,3,36,85,202,122,44,42,35,85,202,122,44,3,35,85,202,122,44,42,34,85,202,122,44,3,34,85,202,122,44,42,33,85,202,122,44,3,33,85,202,122,44,42,32,85,202,122,44,3,32,85,202,122,44,42,31,85,202,122,44,3,31,85,202,122,44,42,30,85,202,122,44,3,30,85,202,122,44,42,29,85,202,122,44,3,29,85,202,122,44,42,28,85,202,122,44,3,28,85,202,122,44,42,27,85,202,122,44,3,27,85,202,122,44,42,26,85,202,122,44,3,26,85,202,122,44,42,25,85,202,122,44,3,25,85,202,122,44,42,24,85,202,122,44,3,24,85,202,122,44,42,23,85,202,122,44,3,23,85,202,122,44,42,22,85,202,122,44,3,22,85,202,122,44,42,21,85,202,122,44,3,21,85,202,122,44,42,20,85,202,122,44,3,20,85,202,122,44,42,19,85,202,122,44,3,19,85,202,122,44,42,18,85,202,122,44,3,18,85,202,122,44,42,17,85,202,122,44,3,17,85,202,122,44,42,16,85,202,122,44,3,16,85,202,122,44,42,15,85,202,122,44,3,15,85,202,122,44,42,14,85,202,122,44,3,14,85,202,122,44,42,13,85,202,122,44,3,13,85,202,122,44,42,12,85,202,122,44,3,12,85,202,122,44,42,11,85,202,122,44,3,11,85,202,122,44,42,10,85,202,122,44,3,10,85,202,122,44,42,9,85,202,122,44,3,9,85,202,122,44,42,8,85,202,122,44,3,8,85,202,122,44,42,7,85,202,122,44,3,7,85,202,122,44,42,6,85,202,122,44,3,6,85,202,122,44,42,5,85,202,122,44,3,5,85,202,122,44,42,4,85,202,122,44,3,4,85,202,122,44,42,3,85,202,122,44,41,3,85,202,122,44,40,3,85,202,122,44,39,3,85,202,122,44,38,3,85,202,122,44,37,3,85,202,122,44,36,3,85,202,122,44,35,3,85,202,122,44,34,3,85,202,122,44,33,3,85,202,122,44,32,3,85,202,122,44,31,3,85,202,122,44,84,-13,1,202,122,44,-39,-12,1,202,122,44,30,3,85,202,122,44,29,3,85,202,122,44,28,3,85,202,122,44,27,3,85,202,122,44,26,3,85,202,122,44,25,3,85,202,122,44,24,3,85,202,122,44,23,3,85,202,122,44,22,3,85,202,122,44,21,3,85,202,122,44,20,3,85,202,122,44,19,3,85,202,122,44,18,3,85,202,122,44,17,3,85,202,122,44,16,3,85,202,122,44,15,3,85,202,122,44,14,3,85,202,122,44,13,3,85,202,122,44,12,3,85,202,122,44,11,3,85,202,122,44,10,3,85,202,122,44,9,3,85,202,122,44,8,3,85,202,122,44,7,3,85,202,122,44,6,3,85,202,122,44,5,3,85,202,122,44,4,3,85,202,122,44,3,3,85,202,122,44,43,43,84,202,122,44,42,43,84,202,122,44,41,43,84,202,122,44,40,43,84,202,122,44,39,43,84,202,122,44,38,43,84,202,122,44,37,43,84,202,122,44,36,43,84,202,122,44,35,43,84,202,122,44,34,43,84,202,122,44,33,43,84,202,122,44,32,43,84,202,122,44,31,43,84,202,122,44,30,43,84,202,122,44,29,43,84,202,122,44,28,43,84,202,122,44,27,43,84,202,122,44,26,43,84,202,122,44,25,43,84,202,122,44,24,43,84,202,122,44,23,43,84,202,122,44,22,43,84,202,122,44,21,43,84,202,122,44,20,43,84,202,122,44,19,43,84,202,122,44,18,43,84,202,122,44,17,43,84,202,122,44,16,43,84,202,122,44,15,43,84,202,122,44,14,43,84,202,122,44,13,43,84,202,122,44,12,43,84,202,122,44,11,43,84,202,122,44,10,43,84,202,122,44,9,43,84,202,122,44,8,43,84,202,122,44,7,43,84,202,122,44,6,43,84,202,122,44,5,43,84,202,122,44,4,43,84,202,122,44,3,43,84,202,122,44,2,43,84,202,122,44,43,42,84,202,122,44,2,42,84,202,122,44,43,41,84,202,122,44,2,41,84,202,122,44,43,40,84,202,122,44,2,40,84,202,122,44,43,39,84,202,122,44,2,39,84,202,122,44,43,38,84,202,122,44,2,38,84,202,122,44,43,37,84,202,122,44,2,37,84,202,122,44,43,36,84,202,122,44,2,36,84,202,122,44,43,35,84,202,122,44,2,35,84,202,122,44,43,34,84,202,122,44,2,34,84,202,122,44,43,33,84,202,122,44,2,33,84,202,122,44,43,32,84,202,122,44,2,32,84,202,122,44,43,31,84,202,122,44,2,31,84,202,122,44,43,30,84,202,122,44,2,30,84,202,122,44,43,29,84,202,122,44,2,29,84,202,122,44,43,28,84,202,122,44,2,28,84,202,122,44,43,27,84,202,122,44,2,27,84,202,122,44,43,26,84,202,122,44,2,26,84,202,122,44,43,25,84,202,122,44,2,25,84,202,122,44,43,24,84,202,122,44,2,24,84,202,122,44,43,23,84,202,122,44,2,23,84,202,122,44,43,22,84,202,122,44,2,22,84,202,122,44,43,21,84,202,122,44,2,21,84,202,122,44,43,20,84,202,122,44,2,20,84,202,122,44,43,19,84,202,122,44,2,19,84,202,122,44,43,18,84,202,122,44,2,18,84,202,122,44,43,17,84,202,122,44,2,17,84,202,122,44,84,-12,1,202,122,44,-39,-11,1,202,122,44,43,16,84,202,122,44,2,16,84,202,122,44,43,15,84,202,122,44,2,15,84,202,122,44,43,14,84,202,122,44,2,14,84,202,122,44,43,13,84,202,122,44,2,13,84,202,122,44,43,12,84,202,122,44,2,12,84,202,122,44,43,11,84,202,122,44,2,11,84,202,122,44,43,10,84,202,122,44,2,10,84,202,122,44,43,9,84,202,122,44,2,9,84,202,122,44,43,8,84,202,122,44,2,8,84,202,122,44,43,7,84,202,122,44,2,7,84,202,122,44,43,6,84,202,122,44,2,6,84,202,122,44,43,5,84,202,122,44,2,5,84,202,122,44,43,4,84,202,122,44,2,4,84,202,122,44,43,3,84,202,122,44,2,3,84,202,122,44,43,2,84,202,122,44,42,2,84,202,122,44,41,2,84,202,122,44,40,2,84,202,122,44,39,2,84,202,122,44,38,2,84,202,122,44,37,2,84,202,122,44,36,2,84,202,122,44,35,2,84,202,122,44,34,2,84,202,122,44,33,2,84,202,122,44,32,2,84,202,122,44,31,2,84,202,122,44,30,2,84,202,122,44,29,2,84,202,122,44,28,2,84,202,122,44,27,2,84,202,122,44,26,2,84,202,122,44,25,2,84,202,122,44,24,2,84,202,122,44,23,2,84,202,122,44,22,2,84,202,122,44,21,2,84,202,122,44,20,2,84,202,122,44,19,2,84,202,122,44,18,2,84,202,122,44,17,2,84,202,122,44,16,2,84,202,122,44,15,2,84,202,122,44,14,2,84,202,122,44,13,2,84,202,122,44,12,2,84,202,122,44,11,2,84,202,122,44,10,2,84,202,122,44,9,2,84,202,122,44,8,2,84,202,122,44,7,2,84,202,122,44,6,2,84,202,122,44,5,2,84,202,122,44,4,2,84,202,122,44,3,2,84,202,122,44,2,2,84,202,122,44,43,43,83,202,122,44,42,43,83,202,122,44,41,43,83,202,122,44,40,43,83,202,122,44,39,43,83,202,122,44,38,43,83,202,122,44,37,43,83,202,122,44,36,43,83,202,122,44,35,43,83,202,122,44,34,43,83,202,122,44,33,43,83,202,122,44,32,43,83,202,122,44,31,43,83,202,122,44,30,43,83,202,122,44,29,43,83,202,122,44,28,43,83,202,122,44,27,43,83,202,122,44,26,43,83,202,122,44,25,43,83,202,122,44,24,43,83,202,122,44,23,43,83,202,122,44,22,43,83,202,122,44,21,43,83,202,122,44,20,43,83,202,122,44,19,43,83,202,122,44,18,43,83,202,122,44,17,43,83,202,122,44,16,43,83,202,122,44,15,43,83,202,122,44,14,43,83,202,122,44,13,43,83,202,122,44,12,43,83,202,122,44,11,43,83,202,122,44,10,43,83,202,122,44,9,43,83,202,122,44,8,43,83,202,122,44,7,43,83,202,122,44,6,43,83,202,122,44,5,43,83,202,122,44,4,43,83,202,122,44,3,43,83,202,122,44,2,43,83,202,122,44,43,42,83,202,122,44,2,42,83,202,122,44,43,41,83,202,122,44,2,41,83,202,122,44,43,40,83,202,122,44,2,40,83,202,122,44,43,39,83,202,122,44,2,39,83,202,122,44,43,38,83,202,122,44,2,38,83,202,122,44,84,-11,1,202,122,44,-39,-10,1,202,122,44,43,37,83,202,122,44,2,37,83,202,122,44,43,36,83,202,122,44,2,36,83,202,122,44,43,35,83,202,122,44,2,35,83,202,122,44,43,34,83,202,122,44,2,34,83,202,122,44,43,33,83,202,122,44,2,33,83,202,122,44,43,32,83,202,122,44,2,32,83,202,122,44,43,31,83,202,122,44,2,31,83,202,122,44,43,30,83,202,122,44,2,30,83,202,122,44,43,29,83,202,122,44,2,29,83,202,122,44,43,28,83,202,122,44,2,28,83,202,122,44,43,27,83,202,122,44,2,27,83,202,122,44,43,26,83,202,122,44,2,26,83,202,122,44,43,25,83,202,122,44,2,25,83,202,122,44,43,24,83,202,122,44,2,24,83,202,122,44,43,23,83,202,122,44,2,23,83,202,122,44,43,22,83,202,122,44,2,22,83,202,122,44,43,21,83,202,122,44,2,21,83,202,122,44,43,20,83,202,122,44,2,20,83,202,122,44,43,19,83,202,122,44,2,19,83,202,122,44,43,18,83,202,122,44,2,18,83,202,122,44,43,17,83,202,122,44,2,17,83,202,122,44,43,16,83,202,122,44,2,16,83,202,122,44,43,15,83,202,122,44,2,15,83,202,122,44,43,14,83,202,122,44,2,14,83,202,122,44,43,13,83,202,122,44,2,13,83,202,122,44,43,12,83,202,122,44,2,12,83,202,122,44,43,11,83,202,122,44,2,11,83,202,122,44,43,10,83,202,122,44,2,10,83,202,122,44,43,9,83,202,122,44,2,9,83,202,122,44,43,8,83,202,122,44,2,8,83,202,122,44,43,7,83,202,122,44,2,7,83,202,122,44,43,6,83,202,122,44,2,6,83,202,122,44,43,5,83,202,122,44,2,5,83,202,122,44,43,4,83,202,122,44,2,4,83,202,122,44,43,3,83,202,122,44,2,3,83,202,122,44,43,2,83,202,122,44,42,2,83,202,122,44,41,2,83,202,122,44,40,2,83,202,122,44,39,2,83,202,122,44,38,2,83,202,122,44,37,2,83,202,122,44,36,2,83,202,122,44,35,2,83,202,122,44,34,2,83,202,122,44,33,2,83,202,122,44,32,2,83,202,122,44,31,2,83,202,122,44,30,2,83,202,122,44,29,2,83,202,122,44,28,2,83,202,122,44,27,2,83,202,122,44,26,2,83,202,122,44,25,2,83,202,122,44,24,2,83,202,122,44,23,2,83,202,122,44,22,2,83,202,122,44,21,2,83,202,122,44,20,2,83,202,122,44,19,2,83,202,122,44,18,2,83,202,122,44,17,2,83,202,122,44,16,2,83,202,122,44,15,2,83,202,122,44,14,2,83,202,122,44,13,2,83,202,122,44,12,2,83,202,122,44,11,2,83,202,122,44,10,2,83,202,122,44,9,2,83,202,122,44,8,2,83,202,122,44,7,2,83,202,122,44,6,2,83,202,122,44,5,2,83,202,122,44,4,2,83,202,122,44,3,2,83,202,122,44,2,2,83,202,122,44,44,44,82,202,122,44,43,44,82,202,122,44,42,44,82,202,122,44,41,44,82,202,122,44,40,44,82,202,122,44,39,44,82,202,122,44,38,44,82,202,122,44,37,44,82,202,122,44,36,44,82,202,122,44,35,44,82,202,122,44,84,-10,1,202,122,44,-39,-9,1,202,122,44,34,44,82,202,122,44,33,44,82,202,122,44,32,44,82,202,122,44,31,44,82,202,122,44,30,44,82,202,122,44,29,44,82,202,122,44,28,44,82,202,122,44,27,44,82,202,122,44,26,44,82,202,122,44,25,44,82,202,122,44,24,44,82,202,122,44,23,44,82,202,122,44,22,44,82,202,122,44,21,44,82,202,122,44,20,44,82,202,122,44,19,44,82,202,122,44,18,44,82,202,122,44,17,44,82,202,122,44,16,44,82,202,122,44,15,44,82,202,122,44,14,44,82,202,122,44,13,44,82,202,122,44,12,44,82,202,122,44,11,44,82,202,122,44,10,44,82,202,122,44,9,44,82,202,122,44,8,44,82,202,122,44,7,44,82,202,122,44,6,44,82,202,122,44,5,44,82,202,122,44,4,44,82,202,122,44,3,44,82,202,122,44,2,44,82,202,122,44,1,44,82,202,122,44,44,43,82,202,122,44,1,43,82,202,122,44,44,42,82,202,122,44,1,42,82,202,122,44,44,41,82,202,122,44,1,41,82,202,122,44,44,40,82,202,122,44,1,40,82,202,122,44,44,39,82,202,122,44,1,39,82,202,122,44,44,38,82,202,122,44,1,38,82,202,122,44,44,37,82,202,122,44,1,37,82,202,122,44,44,36,82,202,122,44,1,36,82,202,122,44,44,35,82,202,122,44,1,35,82,202,122,44,44,34,82,202,122,44,1,34,82,202,122,44,44,33,82,202,122,44,1,33,82,202,122,44,44,32,82,202,122,44,1,32,82,202,122,44,44,31,82,202,122,44,1,31,82,202,122,44,44,30,82,202,122,44,1,30,82,202,122,44,44,29,82,202,122,44,1,29,82,202,122,44,44,28,82,202,122,44,1,28,82,202,122,44,44,27,82,202,122,44,1,27,82,202,122,44,44,26,82,202,122,44,1,26,82,202,122,44,44,25,82,202,122,44,1,25,82,202,122,44,44,24,82,202,122,44,1,24,82,202,122,44,44,23,82,202,122,44,1,23,82,202,122,44,44,22,82,202,122,44,1,22,82,202,122,44,44,21,82,202,122,44,1,21,82,202,122,44,44,20,82,202,122,44,1,20,82,202,122,44,44,19,82,202,122,44,1,19,82,202,122,44,44,18,82,202,122,44,1,18,82,202,122,44,44,17,82,202,122,44,1,17,82,202,122,44,44,16,82,202,122,44,1,16,82,202,122,44,44,15,82,202,122,44,1,15,82,202,122,44,44,14,82,202,122,44,1,14,82,202,122,44,44,13,82,202,122,44,1,13,82,202,122,44,44,12,82,202,122,44,1,12,82,202,122,44,44,11,82,202,122,44,1,11,82,202,122,44,44,10,82,202,122,44,1,10,82,202,122,44,44,9,82,202,122,44,1,9,82,202,122,44,44,8,82,202,122,44,1,8,82,202,122,44,44,7,82,202,122,44,1,7,82,202,122,44,44,6,82,202,122,44,1,6,82,202,122,44,44,5,82,202,122,44,1,5,82,202,122,44,44,4,82,202,122,44,1,4,82,202,122,44,44,3,82,202,122,44,1,3,82,202,122,44,44,2,82,202,122,44,1,2,82,202,122,44,44,1,82,202,122,44,43,1,82,202,122,44,42,1,82,202,122,44,41,1,82,202,122,44,84,-9,1,202,122,44,-39,-8,1,202,122,44,40,1,82,202,122,44,39,1,82,202,122,44,38,1,82,202,122,44,37,1,82,202,122,44,36,1,82,202,122,44,35,1,82,202,122,44,34,1,82,202,122,44,33,1,82,202,122,44,32,1,82,202,122,44,31,1,82,202,122,44,30,1,82,202,122,44,29,1,82,202,122,44,28,1,82,202,122,44,27,1,82,202,122,44,26,1,82,202,122,44,25,1,82,202,122,44,24,1,82,202,122,44,23,1,82,202,122,44,22,1,82,202,122,44,21,1,82,202,122,44,20,1,82,202,122,44,19,1,82,202,122,44,18,1,82,202,122,44,17,1,82,202,122,44,16,1,82,202,122,44,15,1,82,202,122,44,14,1,82,202,122,44,13,1,82,202,122,44,12,1,82,202,122,44,11,1,82,202,122,44,10,1,82,202,122,44,9,1,82,202,122,44,8,1,82,202,122,44,7,1,82,202,122,44,6,1,82,202,122,44,5,1,82,202,122,44,4,1,82,202,122,44,3,1,82,202,122,44,2,1,82,202,122,44,1,1,82,202,122,44,44,44,81,202,122,44,43,44,81,202,122,44,42,44,81,202,122,44,41,44,81,202,122,44,40,44,81,202,122,44,39,44,81,202,122,44,38,44,81,202,122,44,37,44,81,202,122,44,36,44,81,202,122,44,35,44,81,202,122,44,34,44,81,202,122,44,33,44,81,202,122,44,32,44,81,202,122,44,31,44,81,202,122,44,30,44,81,202,122,44,29,44,81,202,122,44,28,44,81,202,122,44,27,44,81,202,122,44,26,44,81,202,122,44,25,44,81,202,122,44,24,44,81,202,122,44,23,44,81,202,122,44,22,44,81,202,122,44,21,44,81,202,122,44,20,44,81,202,122,44,19,44,81,202,122,44,18,44,81,202,122,44,17,44,81,202,122,44,16,44,81,202,122,44,15,44,81,202,122,44,14,44,81,202,122,44,13,44,81,202,122,44,12,44,81,202,122,44,11,44,81,202,122,44,10,44,81,202,122,44,9,44,81,202,122,44,8,44,81,202,122,44,7,44,81,202,122,44,6,44,81,202,122,44,5,44,81,202,122,44,4,44,81,202,122,44,3,44,81,202,122,44,2,44,81,202,122,44,1,44,81,202,122,44,44,43,81,202,122,44,1,43,81,202,122,44,44,42,81,202,122,44,1,42,81,202,122,44,44,41,81,202,122,44,1,41,81,202,122,44,44,40,81,202,122,44,1,40,81,202,122,44,44,39,81,202,122,44,1,39,81,202,122,44,44,38,81,202,122,44,1,38,81,202,122,44,44,37,81,202,122,44,1,37,81,202,122,44,44,36,81,202,122,44,1,36,81,202,122,44,44,35,81,202,122,44,1,35,81,202,122,44,44,34,81,202,122,44,1,34,81,202,122,44,44,33,81,202,122,44,1,33,81,202,122,44,44,32,81,202,122,44,1,32,81,202,122,44,44,31,81,202,122,44,1,31,81,202,122,44,44,30,81,202,122,44,1,30,81,202,122,44,44,29,81,202,122,44,1,29,81,202,122,44,44,28,81,202,122,44,1,28,81,202,122,44,44,27,81,202,122,44,1,27,81,202,122,44,44,26,81,202,122,44,1,26,81,202,122,44,44,25,81,202,122,44,1,25,81,202,122,44,84,-8,1,202,122,44,-39,-7,1,202,122,44,44,24,81,202,122,44,1,24,81,202,122,44,44,23,81,202,122,44,1,23,81,202,122,44,44,22,81,202,122,44,1,22,81,202,122,44,44,21,81,202,122,44,1,21,81,202,122,44,44,20,81,202,122,44,1,20,81,202,122,44,44,19,81,202,122,44,1,19,81,202,122,44,44,18,81,202,122,44,1,18,81,202,122,44,44,17,81,202,122,44,1,17,81,202,122,44,44,16,81,202,122,44,1,16,81,202,122,44,44,15,81,202,122,44,1,15,81,202,122,44,44,14,81,202,122,44,1,14,81,202,122,44,44,13,81,202,122,44,1,13,81,202,122,44,44,12,81,202,122,44,1,12,81,202,122,44,44,11,81,202,122,44,1,11,81,202,122,44,44,10,81,202,122,44,1,10,81,202,122,44,44,9,81,202,122,44,1,9,81,202,122,44,44,8,81,202,122,44,1,8,81,202,122,44,44,7,81,202,122,44,1,7,81,202,122,44,44,6,81,202,122,44,1,6,81,202,122,44,44,5,81,202,122,44,1,5,81,202,122,44,44,4,81,202,122,44,1,4,81,202,122,44,44,3,81,202,122,44,1,3,81,202,122,44,44,2,81,202,122,44,1,2,81,202,122,44,44,1,81,202,122,44,43,1,81,202,122,44,42,1,81,202,122,44,41,1,81,202,122,44,40,1,81,202,122,44,39,1,81,202,122,44,38,1,81,202,122,44,37,1,81,202,122,44,36,1,81,202,122,44,35,1,81,202,122,44,34,1,81,202,122,44,33,1,81,202,122,44,32,1,81,202,122,44,31,1,81,202,122,44,30,1,81,202,122,44,29,1,81,202,122,44,28,1,81,202,122,44,27,1,81,202,122,44,26,1,81,202,122,44,25,1,81,202,122,44,24,1,81,202,122,44,23,1,81,202,122,44,22,1,81,202,122,44,21,1,81,202,122,44,20,1,81,202,122,44,19,1,81,202,122,44,18,1,81,202,122,44,17,1,81,202,122,44,16,1,81,202,122,44,15,1,81,202,122,44,14,1,81,202,122,44,13,1,81,202,122,44,12,1,81,202,122,44,11,1,81,202,122,44,10,1,81,202,122,44,9,1,81,202,122,44,8,1,81,202,122,44,7,1,81,202,122,44,6,1,81,202,122,44,5,1,81,202,122,44,4,1,81,202,122,44,3,1,81,202,122,44,2,1,81,202,122,44,1,1,81,202,122,44,45,45,80,202,122,44,44,45,80,202,122,44,43,45,80,202,122,44,42,45,80,202,122,44,41,45,80,202,122,44,40,45,80,202,122,44,39,45,80,202,122,44,38,45,80,202,122,44,37,45,80,202,122,44,36,45,80,202,122,44,35,45,80,202,122,44,34,45,80,202,122,44,33,45,80,202,122,44,32,45,80,202,122,44,31,45,80,202,122,44,30,45,80,202,122,44,29,45,80,202,122,44,28,45,80,202,122,44,27,45,80,202,122,44,26,45,80,202,122,44,25,45,80,202,122,44,24,45,80,202,122,44,23,45,80,202,122,44,22,45,80,202,122,44,21,45,80,202,122,44,20,45,80,202,122,44,19,45,80,202,122,44,18,45,80,202,122,44,17,45,80,202,122,44,16,45,80,202,122,44,15,45,80,202,122,44,14,45,80,202,122,44,84,-7,1,202,122,44,-39,-6,1,202,122,44,13,45,80,202,122,44,12,45,80,202,122,44,11,45,80,202,122,44,10,45,80,202,122,44,9,45,80,202,122,44,8,45,80,202,122,44,7,45,80,202,122,44,6,45,80,202,122,44,5,45,80,202,122,44,4,45,80,202,122,44,3,45,80,202,122,44,2,45,80,202,122,44,1,45,80,202,122,44,0,45,80,202,122,44,45,44,80,202,122,44,0,44,80,202,122,44,45,43,80,202,122,44,0,43,80,202,122,44,45,42,80,202,122,44,0,42,80,202,122,44,45,41,80,202,122,44,0,41,80,202,122,44,45,40,80,202,122,44,0,40,80,202,122,44,45,39,80,202,122,44,0,39,80,202,122,44,45,38,80,202,122,44,0,38,80,202,122,44,45,37,80,202,122,44,0,37,80,202,122,44,45,36,80,202,122,44,0,36,80,202,122,44,45,35,80,202,122,44,0,35,80,202,122,44,45,34,80,202,122,44,0,34,80,202,122,44,45,33,80,202,122,44,0,33,80,202,122,44,45,32,80,202,122,44,0,32,80,202,122,44,45,31,80,202,122,44,0,31,80,202,122,44,45,30,80,202,122,44,0,30,80,202,122,44,45,29,80,202,122,44,0,29,80,202,122,44,45,28,80,202,122,44,0,28,80,202,122,44,45,27,80,202,122,44,0,27,80,202,122,44,45,26,80,202,122,44,0,26,80,202,122,44,45,25,80,202,122,44,0,25,80,202,122,44,45,24,80,202,122,44,0,24,80,202,122,44,45,23,80,202,122,44,0,23,80,202,122,44,45,22,80,202,122,44,0,22,80,202,122,44,45,21,80,202,122,44,0,21,80,202,122,44,45,20,80,202,122,44,0,20,80,202,122,44,45,19,80,202,122,44,0,19,80,202,122,44,45,18,80,202,122,44,0,18,80,202,122,44,45,17,80,202,122,44,0,17,80,202,122,44,45,16,80,202,122,44,0,16,80,202,122,44,45,15,80,202,122,44,0,15,80,202,122,44,45,14,80,202,122,44,0,14,80,202,122,44,45,13,80,202,122,44,0,13,80,202,122,44,45,12,80,202,122,44,0,12,80,202,122,44,45,11,80,202,122,44,0,11,80,202,122,44,45,10,80,202,122,44,0,10,80,202,122,44,45,9,80,202,122,44,0,9,80,202,122,44,45,8,80,202,122,44,0,8,80,202,122,44,45,7,80,202,122,44,0,7,80,202,122,44,45,6,80,202,122,44,0,6,80,202,122,44,45,5,80,202,122,44,0,5,80,202,122,44,45,4,80,202,122,44,0,4,80,202,122,44,45,3,80,202,122,44,0,3,80,202,122,44,45,2,80,202,122,44,0,2,80,202,122,44,45,1,80,202,122,44,0,1,80,202,122,44,45,0,80,202,122,44,44,0,80,202,122,44,43,0,80,202,122,44,42,0,80,202,122,44,41,0,80,202,122,44,40,0,80,202,122,44,39,0,80,202,122,44,38,0,80,202,122,44,37,0,80,202,122,44,36,0,80,202,122,44,35,0,80,202,122,44,34,0,80,202,122,44,33,0,80,202,122,44,32,0,80,202,122,44,31,0,80,202,122,44,30,0,80,202,122,44,29,0,80,202,122,44,28,0,80,202,122,44,27,0,80,202,122,44,26,0,80,202,122,44,84,-6,1,202,122,44,-39,-5,1,202,122,44,25,0,80,202,122,44,24,0,80,202,122,44,23,0,80,202,122,44,22,0,80,202,122,44,21,0,80,202,122,44,20,0,80,202,122,44,19,0,80,202,122,44,18,0,80,202,122,44,17,0,80,202,122,44,16,0,80,202,122,44,15,0,80,202,122,44,14,0,80,202,122,44,13,0,80,202,122,44,12,0,80,202,122,44,11,0,80,202,122,44,10,0,80,202,122,44,9,0,80,202,122,44,8,0,80,202,122,44,7,0,80,202,122,44,6,0,80,202,122,44,5,0,80,202,122,44,4,0,80,202,122,44,3,0,80,202,122,44,2,0,80,202,122,44,1,0,80,202,122,44,0,0,80,202,122,44,45,45,79,202,122,44,44,45,79,202,122,44,43,45,79,202,122,44,42,45,79,202,122,44,41,45,79,202,122,44,40,45,79,202,122,44,39,45,79,202,122,44,38,45,79,202,122,44,37,45,79,202,122,44,36,45,79,202,122,44,35,45,79,202,122,44,34,45,79,202,122,44,33,45,79,202,122,44,32,45,79,202,122,44,31,45,79,202,122,44,30,45,79,202,122,44,29,45,79,202,122,44,28,45,79,202,122,44,27,45,79,202,122,44,26,45,79,202,122,44,25,45,79,202,122,44,24,45,79,202,122,44,23,45,79,202,122,44,22,45,79,202,122,44,21,45,79,202,122,44,20,45,79,202,122,44,19,45,79,202,122,44,18,45,79,202,122,44,17,45,79,202,122,44,16,45,79,202,122,44,15,45,79,202,122,44,14,45,79,202,122,44,13,45,79,202,122,44,12,45,79,202,122,44,11,45,79,202,122,44,10,45,79,202,122,44,9,45,79,202,122,44,8,45,79,202,122,44,7,45,79,202,122,44,6,45,79,202,122,44,5,45,79,202,122,44,4,45,79,202,122,44,3,45,79,202,122,44,2,45,79,202,122,44,1,45,79,202,122,44,0,45,79,202,122,44,45,44,79,202,122,44,0,44,79,202,122,44,45,43,79,202,122,44,0,43,79,202,122,44,45,42,79,202,122,44,0,42,79,202,122,44,45,41,79,202,122,44,0,41,79,202,122,44,45,40,79,202,122,44,0,40,79,202,122,44,45,39,79,202,122,44,0,39,79,202,122,44,45,38,79,202,122,44,0,38,79,202,122,44,45,37,79,202,122,44,0,37,79,202,122,44,45,36,79,202,122,44,0,36,79,202,122,44,45,35,79,202,122,44,0,35,79,202,122,44,45,34,79,202,122,44,0,34,79,202,122,44,45,33,79,202,122,44,0,33,79,202,122,44,45,32,79,202,122,44,0,32,79,202,122,44,45,31,79,202,122,44,0,31,79,202,122,44,45,30,79,202,122,44,0,30,79,202,122,44,45,29,79,202,122,44,0,29,79,202,122,44,45,28,79,202,122,44,0,28,79,202,122,44,45,27,79,202,122,44,0,27,79,202,122,44,45,26,79,202,122,44,0,26,79,202,122,44,45,25,79,202,122,44,0,25,79,202,122,44,45,24,79,202,122,44,0,24,79,202,122,44,45,23,79,202,122,44,0,23,79,202,122,44,45,22,79,202,122,44,0,22,79,202,122,44,45,21,79,202,122,44,0,21,79,202,122,44,45,20,79,202,122,44,0,20,79,202,122,44,84,-5,1,202,122,44,-39,-4,1,202,122,44,45,19,79,202,122,44,0,19,79,202,122,44,45,18,79,202,122,44,0,18,79,202,122,44,45,17,79,202,122,44,0,17,79,202,122,44,45,16,79,202,122,44,0,16,79,202,122,44,45,15,79,202,122,44,0,15,79,202,122,44,45,14,79,202,122,44,0,14,79,202,122,44,45,13,79,202,122,44,0,13,79,202,122,44,45,12,79,202,122,44,0,12,79,202,122,44,45,11,79,202,122,44,0,11,79,202,122,44,45,10,79,202,122,44,0,10,79,202,122,44,45,9,79,202,122,44,0,9,79,202,122,44,45,8,79,202,122,44,0,8,79,202,122,44,45,7,79,202,122,44,0,7,79,202,122,44,45,6,79,202,122,44,0,6,79,202,122,44,45,5,79,202,122,44,0,5,79,202,122,44,45,4,79,202,122,44,0,4,79,202,122,44,45,3,79,202,122,44,0,3,79,202,122,44,45,2,79,202,122,44,0,2,79,202,122,44,45,1,79,202,122,44,0,1,79,202,122,44,45,0,79,202,122,44,44,0,79,202,122,44,43,0,79,202,122,44,42,0,79,202,122,44,41,0,79,202,122,44,40,0,79,202,122,44,39,0,79,202,122,44,38,0,79,202,122,44,37,0,79,202,122,44,36,0,79,202,122,44,35,0,79,202,122,44,34,0,79,202,122,44,33,0,79,202,122,44,32,0,79,202,122,44,31,0,79,202,122,44,30,0,79,202,122,44,29,0,79,202,122,44,28,0,79,202,122,44,27,0,79,202,122,44,26,0,79,202,122,44,25,0,79,202,122,44,24,0,79,202,122,44,23,0,79,202,122,44,22,0,79,202,122,44,21,0,79,202,122,44,20,0,79,202,122,44,19,0,79,202,122,44,18,0,79,202,122,44,17,0,79,202,122,44,16,0,79,202,122,44,15,0,79,202,122,44,14,0,79,202,122,44,13,0,79,202,122,44,12,0,79,202,122,44,11,0,79,202,122,44,10,0,79,202,122,44,9,0,79,202,122,44,8,0,79,202,122,44,7,0,79,202,122,44,6,0,79,202,122,44,5,0,79,202,122,44,4,0,79,202,122,44,3,0,79,202,122,44,2,0,79,202,122,44,1,0,79,202,122,44,0,0,79,202,122,44,46,46,78,202,122,44,45,46,78,202,122,44,44,46,78,202,122,44,43,46,78,202,122,44,42,46,78,202,122,44,41,46,78,202,122,44,40,46,78,202,122,44,39,46,78,202,122,44,38,46,78,202,122,44,37,46,78,202,122,44,36,46,78,202,122,44,35,46,78,202,122,44,34,46,78,202,122,44,33,46,78,202,122,44,32,46,78,202,122,44,31,46,78,202,122,44,30,46,78,202,122,44,29,46,78,202,122,44,28,46,78,202,122,44,27,46,78,202,122,44,26,46,78,202,122,44,25,46,78,202,122,44,24,46,78,202,122,44,23,46,78,202,122,44,22,46,78,202,122,44,21,46,78,202,122,44,20,46,78,202,122,44,19,46,78,202,122,44,18,46,78,202,122,44,17,46,78,202,122,44,16,46,78,202,122,44,15,46,78,202,122,44,14,46,78,202,122,44,13,46,78,202,122,44,12,46,78,202,122,44,11,46,78,202,122,44,10,46,78,202,122,44,9,46,78,202,122,44,84,-4,1,202,122,44,-39,-3,1,202,122,44,8,46,78,202,122,44,7,46,78,202,122,44,6,46,78,202,122,44,5,46,78,202,122,44,4,46,78,202,122,44,3,46,78,202,122,44,2,46,78,202,122,44,1,46,78,202,122,44,0,46,78,202,122,44,-1,46,78,202,122,44,46,45,78,202,122,44,-1,45,78,202,122,44,46,44,78,202,122,44,-1,44,78,202,122,44,46,43,78,202,122,44,-1,43,78,202,122,44,46,42,78,202,122,44,-1,42,78,202,122,44,46,41,78,202,122,44,-1,41,78,202,122,44,46,40,78,202,122,44,-1,40,78,202,122,44,46,39,78,202,122,44,-1,39,78,202,122,44,46,38,78,202,122,44,-1,38,78,202,122,44,46,37,78,202,122,44,-1,37,78,202,122,44,46,36,78,202,122,44,-1,36,78,202,122,44,46,35,78,202,122,44,-1,35,78,202,122,44,46,34,78,202,122,44,-1,34,78,202,122,44,46,33,78,202,122,44,-1,33,78,202,122,44,46,32,78,202,122,44,-1,32,78,202,122,44,46,31,78,202,122,44,-1,31,78,202,122,44,46,30,78,202,122,44,-1,30,78,202,122,44,46,29,78,202,122,44,-1,29,78,202,122,44,46,28,78,202,122,44,-1,28,78,202,122,44,46,27,78,202,122,44,-1,27,78,202,122,44,46,26,78,202,122,44,-1,26,78,202,122,44,46,25,78,202,122,44,-1,25,78,202,122,44,46,24,78,202,122,44,-1,24,78,202,122,44,46,23,78,202,122,44,-1,23,78,202,122,44,46,22,78,202,122,44,-1,22,78,202,122,44,46,21,78,202,122,44,-1,21,78,202,122,44,46,20,78,202,122,44,-1,20,78,202,122,44,46,19,78,202,122,44,-1,19,78,202,122,44,46,18,78,202,122,44,-1,18,78,202,122,44,46,17,78,202,122,44,-1,17,78,202,122,44,46,16,78,202,122,44,-1,16,78,202,122,44,46,15,78,202,122,44,-1,15,78,202,122,44,46,14,78,202,122,44,-1,14,78,202,122,44,46,13,78,202,122,44,-1,13,78,202,122,44,46,12,78,202,122,44,-1,12,78,202,122,44,46,11,78,202,122,44,-1,11,78,202,122,44,46,10,78,202,122,44,-1,10,78,202,122,44,46,9,78,202,122,44,-1,9,78,202,122,44,46,8,78,202,122,44,-1,8,78,202,122,44,46,7,78,202,122,44,-1,7,78,202,122,44,46,6,78,202,122,44,-1,6,78,202,122,44,46,5,78,202,122,44,-1,5,78,202,122,44,46,4,78,202,122,44,-1,4,78,202,122,44,46,3,78,202,122,44,-1,3,78,202,122,44,46,2,78,202,122,44,-1,2,78,202,122,44,46,1,78,202,122,44,-1,1,78,202,122,44,46,0,78,202,122,44,-1,0,78,202,122,44,46,-1,78,202,122,44,45,-1,78,202,122,44,44,-1,78,202,122,44,43,-1,78,202,122,44,42,-1,78,202,122,44,41,-1,78,202,122,44,40,-1,78,202,122,44,39,-1,78,202,122,44,38,-1,78,202,122,44,37,-1,78,202,122,44,36,-1,78,202,122,44,35,-1,78,202,122,44,34,-1,78,202,122,44,33,-1,78,202,122,44,32,-1,78,202,122,44,31,-1,78,202,122,44,30,-1,78,202,122,44,29,-1,78,202,122,44,28,-1,78,202,122,44,27,-1,78,202,122,44,84,-3,1,202,122,44,-39,-2,1,202,122,44,26,-1,78,202,122,44,25,-1,78,202,122,44,24,-1,78,202,122,44,23,-1,78,202,122,44,22,-1,78,202,122,44,21,-1,78,202,122,44,20,-1,78,202,122,44,19,-1,78,202,122,44,18,-1,78,202,122,44,17,-1,78,202,122,44,16,-1,78,202,122,44,15,-1,78,202,122,44,14,-1,78,202,122,44,13,-1,78,202,122,44,12,-1,78,202,122,44,11,-1,78,202,122,44,10,-1,78,202,122,44,9,-1,78,202,122,44,8,-1,78,202,122,44,7,-1,78,202,122,44,6,-1,78,202,122,44,5,-1,78,202,122,44,4,-1,78,202,122,44,3,-1,78,202,122,44,2,-1,78,202,122,44,1,-1,78,202,122,44,0,-1,78,202,122,44,-1,-1,78,202,122,44,46,46,77,202,122,44,45,46,77,202,122,44,44,46,77,202,122,44,43,46,77,202,122,44,42,46,77,202,122,44,41,46,77,202,122,44,40,46,77,202,122,44,39,46,77,202,122,44,38,46,77,202,122,44,37,46,77,202,122,44,36,46,77,202,122,44,35,46,77,202,122,44,34,46,77,202,122,44,33,46,77,202,122,44,32,46,77,202,122,44,31,46,77,202,122,44,30,46,77,202,122,44,29,46,77,202,122,44,28,46,77,202,122,44,27,46,77,202,122,44,26,46,77,202,122,44,25,46,77,202,122,44,24,46,77,202,122,44,23,46,77,202,122,44,22,46,77,202,122,44,21,46,77,202,122,44,20,46,77,202,122,44,19,46,77,202,122,44,18,46,77,202,122,44,17,46,77,202,122,44,16,46,77,202,122,44,15,46,77,202,122,44,14,46,77,202,122,44,13,46,77,202,122,44,12,46,77,202,122,44,11,46,77,202,122,44,10,46,77,202,122,44,9,46,77,202,122,44,8,46,77,202,122,44,7,46,77,202,122,44,6,46,77,202,122,44,5,46,77,202,122,44,4,46,77,202,122,44,3,46,77,202,122,44,2,46,77,202,122,44,1,46,77,202,122,44,0,46,77,202,122,44,-1,46,77,202,122,44,46,45,77,202,122,44,-1,45,77,202,122,44,46,44,77,202,122,44,-1,44,77,202,122,44,46,43,77,202,122,44,-1,43,77,202,122,44,46,42,77,202,122,44,-1,42,77,202,122,44,46,41,77,202,122,44,-1,41,77,202,122,44,46,40,77,202,122,44,-1,40,77,202,122,44,46,39,77,202,122,44,-1,39,77,202,122,44,46,38,77,202,122,44,-1,38,77,202,122,44,46,37,77,202,122,44,-1,37,77,202,122,44,46,36,77,202,122,44,-1,36,77,202,122,44,46,35,77,202,122,44,-1,35,77,202,122,44,46,34,77,202,122,44,-1,34,77,202,122,44,46,33,77,202,122,44,-1,33,77,202,122,44,46,32,77,202,122,44,-1,32,77,202,122,44,46,31,77,202,122,44,-1,31,77,202,122,44,46,30,77,202,122,44,-1,30,77,202,122,44,46,29,77,202,122,44,-1,29,77,202,122,44,46,28,77,202,122,44,-1,28,77,202,122,44,46,27,77,202,122,44,-1,27,77,202,122,44,46,26,77,202,122,44,-1,26,77,202,122,44,46,25,77,202,122,44,-1,25,77,202,122,44,46,24,77,202,122,44,-1,24,77,202,122,44,46,23,77,202,122,44,-1,23,77,202,122,44,84,-2,1,202,122,44,-39,-1,1,202,122,44,46,22,77,202,122,44,-1,22,77,202,122,44,46,21,77,202,122,44,-1,21,77,202,122,44,46,20,77,202,122,44,-1,20,77,202,122,44,46,19,77,202,122,44,-1,19,77,202,122,44,46,18,77,202,122,44,-1,18,77,202,122,44,46,17,77,202,122,44,-1,17,77,202,122,44,46,16,77,202,122,44,-1,16,77,202,122,44,46,15,77,202,122,44,-1,15,77,202,122,44,46,14,77,202,122,44,-1,14,77,202,122,44,46,13,77,202,122,44,-1,13,77,202,122,44,46,12,77,202,122,44,-1,12,77,202,122,44,46,11,77,202,122,44,-1,11,77,202,122,44,46,10,77,202,122,44,-1,10,77,202,122,44,46,9,77,202,122,44,-1,9,77,202,122,44,46,8,77,202,122,44,-1,8,77,202,122,44,46,7,77,202,122,44,-1,7,77,202,122,44,46,6,77,202,122,44,-1,6,77,202,122,44,46,5,77,202,122,44,-1,5,77,202,122,44,46,4,77,202,122,44,-1,4,77,202,122,44,46,3,77,202,122,44,-1,3,77,202,122,44,46,2,77,202,122,44,-1,2,77,202,122,44,46,1,77,202,122,44,-1,1,77,202,122,44,46,0,77,202,122,44,-1,0,77,202,122,44,46,-1,77,202,122,44,45,-1,77,202,122,44,44,-1,77,202,122,44,43,-1,77,202,122,44,42,-1,77,202,122,44,41,-1,77,202,122,44,40,-1,77,202,122,44,39,-1,77,202,122,44,38,-1,77,202,122,44,37,-1,77,202,122,44,36,-1,77,202,122,44,35,-1,77,202,122,44,34,-1,77,202,122,44,33,-1,77,202,122,44,32,-1,77,202,122,44,31,-1,77,202,122,44,30,-1,77,202,122,44,29,-1,77,202,122,44,28,-1,77,202,122,44,27,-1,77,202,122,44,26,-1,77,202,122,44,25,-1,77,202,122,44,24,-1,77,202,122,44,23,-1,77,202,122,44,22,-1,77,202,122,44,21,-1,77,202,122,44,20,-1,77,202,122,44,19,-1,77,202,122,44,18,-1,77,202,122,44,17,-1,77,202,122,44,16,-1,77,202,122,44,15,-1,77,202,122,44,14,-1,77,202,122,44,13,-1,77,202,122,44,12,-1,77,202,122,44,11,-1,77,202,122,44,10,-1,77,202,122,44,9,-1,77,202,122,44,8,-1,77,202,122,44,7,-1,77,202,122,44,6,-1,77,202,122,44,5,-1,77,202,122,44,4,-1,77,202,122,44,3,-1,77,202,122,44,2,-1,77,202,122,44,1,-1,77,202,122,44,0,-1,77,202,122,44,-1,-1,77,202,122,44,47,47,76,202,122,44,46,47,76,202,122,44,45,47,76,202,122,44,44,47,76,202,122,44,43,47,76,202,122,44,42,47,76,202,122,44,41,47,76,202,122,44,40,47,76,202,122,44,39,47,76,202,122,44,38,47,76,202,122,44,37,47,76,202,122,44,36,47,76,202,122,44,35,47,76,202,122,44,34,47,76,202,122,44,33,47,76,202,122,44,32,47,76,202,122,44,31,47,76,202,122,44,30,47,76,202,122,44,29,47,76,202,122,44,28,47,76,202,122,44,27,47,76,202,122,44,26,47,76,202,122,44,25,47,76,202,122,44,24,47,76,202,122,44,23,47,76,202,122,44,22,47,76,202,122,44,21,47,76,202,122,44,20,47,76,202,122,44,84,-1,1,202,122,44,-39,0,1,202,122,44,19,47,76,202,122,44,18,47,76,202,122,44,17,47,76,202,122,44,16,47,76,202,122,44,15,47,76,202,122,44,14,47,76,202,122,44,13,47,76,202,122,44,12,47,76,202,122,44,11,47,76,202,122,44,10,47,76,202,122,44,9,47,76,202,122,44,8,47,76,202,122,44,7,47,76,202,122,44,6,47,76,202,122,44,5,47,76,202,122,44,4,47,76,202,122,44,3,47,76,202,122,44,2,47,76,202,122,44,1,47,76,202,122,44,0,47,76,202,122,44,-1,47,76,202,122,44,-2,47,76,202,122,44,47,46,76,202,122,44,-2,46,76,202,122,44,47,45,76,202,122,44,-2,45,76,202,122,44,47,44,76,202,122,44,-2,44,76,202,122,44,47,43,76,202,122,44,-2,43,76,202,122,44,47,42,76,202,122,44,-2,42,76,202,122,44,47,41,76,202,122,44,-2,41,76,202,122,44,47,40,76,202,122,44,-2,40,76,202,122,44,47,39,76,202,122,44,-2,39,76,202,122,44,47,38,76,202,122,44,-2,38,76,202,122,44,47,37,76,202,122,44,-2,37,76,202,122,44,47,36,76,202,122,44,-2,36,76,202,122,44,47,35,76,202,122,44,-2,35,76,202,122,44,47,34,76,202,122,44,-2,34,76,202,122,44,47,33,76,202,122,44,-2,33,76,202,122,44,47,32,76,202,122,44,-2,32,76,202,122,44,47,31,76,202,122,44,-2,31,76,202,122,44,47,30,76,202,122,44,-2,30,76,202,122,44,47,29,76,202,122,44,-2,29,76,202,122,44,47,28,76,202,122,44,-2,28,76,202,122,44,47,27,76,202,122,44,-2,27,76,202,122,44,47,26,76,202,122,44,-2,26,76,202,122,44,47,25,76,202,122,44,-2,25,76,202,122,44,47,24,76,202,122,44,-2,24,76,202,122,44,47,23,76,202,122,44,-2,23,76,202,122,44,47,22,76,202,122,44,-2,22,76,202,122,44,47,21,76,202,122,44,-2,21,76,202,122,44,47,20,76,202,122,44,-2,20,76,202,122,44,47,19,76,202,122,44,-2,19,76,202,122,44,47,18,76,202,122,44,-2,18,76,202,122,44,47,17,76,202,122,44,-2,17,76,202,122,44,47,16,76,202,122,44,-2,16,76,202,122,44,47,15,76,202,122,44,-2,15,76,202,122,44,47,14,76,202,122,44,-2,14,76,202,122,44,47,13,76,202,122,44,-2,13,76,202,122,44,47,12,76,202,122,44,-2,12,76,202,122,44,47,11,76,202,122,44,-2,11,76,202,122,44,47,10,76,202,122,44,-2,10,76,202,122,44,47,9,76,202,122,44,-2,9,76,202,122,44,47,8,76,202,122,44,-2,8,76,202,122,44,47,7,76,202,122,44,-2,7,76,202,122,44,47,6,76,202,122,44,-2,6,76,202,122,44,47,5,76,202,122,44,-2,5,76,202,122,44,47,4,76,202,122,44,-2,4,76,202,122,44,47,3,76,202,122,44,-2,3,76,202,122,44,47,2,76,202,122,44,-2,2,76,202,122,44,47,1,76,202,122,44,-2,1,76,202,122,44,47,0,76,202,122,44,-2,0,76,202,122,44,47,-1,76,202,122,44,-2,-1,76,202,122,44,47,-2,76,202,122,44,46,-2,76,202,122,44,45,-2,76,202,122,44,44,-2,76,202,122,44,84,0,1,202,122,44,-39,1,1,202,122,44,43,-2,76,202,122,44,42,-2,76,202,122,44,41,-2,76,202,122,44,40,-2,76,202,122,44,39,-2,76,202,122,44,38,-2,76,202,122,44,37,-2,76,202,122,44,36,-2,76,202,122,44,35,-2,76,202,122,44,34,-2,76,202,122,44,33,-2,76,202,122,44,32,-2,76,202,122,44,31,-2,76,202,122,44,30,-2,76,202,122,44,29,-2,76,202,122,44,28,-2,76,202,122,44,27,-2,76,202,122,44,26,-2,76,202,122,44,25,-2,76,202,122,44,24,-2,76,202,122,44,23,-2,76,202,122,44,22,-2,76,202,122,44,21,-2,76,202,122,44,20,-2,76,202,122,44,19,-2,76,202,122,44,18,-2,76,202,122,44,17,-2,76,202,122,44,16,-2,76,202,122,44,15,-2,76,202,122,44,14,-2,76,202,122,44,13,-2,76,202,122,44,12,-2,76,202,122,44,11,-2,76,202,122,44,10,-2,76,202,122,44,9,-2,76,202,122,44,8,-2,76,202,122,44,7,-2,76,202,122,44,6,-2,76,202,122,44,5,-2,76,202,122,44,4,-2,76,202,122,44,3,-2,76,202,122,44,2,-2,76,202,122,44,1,-2,76,202,122,44,0,-2,76,202,122,44,-1,-2,76,202,122,44,-2,-2,76,202,122,44,47,47,75,202,122,44,46,47,75,202,122,44,45,47,75,202,122,44,44,47,75,202,122,44,43,47,75,202,122,44,42,47,75,202,122,44,41,47,75,202,122,44,40,47,75,202,122,44,39,47,75,202,122,44,38,47,75,202,122,44,37,47,75,202,122,44,36,47,75,202,122,44,35,47,75,202,122,44,34,47,75,202,122,44,33,47,75,202,122,44,32,47,75,202,122,44,31,47,75,202,122,44,30,47,75,202,122,44,29,47,75,202,122,44,28,47,75,202,122,44,27,47,75,202,122,44,26,47,75,202,122,44,25,47,75,202,122,44,24,47,75,202,122,44,23,47,75,202,122,44,22,47,75,202,122,44,21,47,75,202,122,44,20,47,75,202,122,44,19,47,75,202,122,44,18,47,75,202,122,44,17,47,75,202,122,44,16,47,75,202,122,44,15,47,75,202,122,44,14,47,75,202,122,44,13,47,75,202,122,44,12,47,75,202,122,44,11,47,75,202,122,44,10,47,75,202,122,44,9,47,75,202,122,44,8,47,75,202,122,44,7,47,75,202,122,44,6,47,75,202,122,44,5,47,75,202,122,44,4,47,75,202,122,44,3,47,75,202,122,44,2,47,75,202,122,44,1,47,75,202,122,44,0,47,75,202,122,44,-1,47,75,202,122,44,-2,47,75,202,122,44,47,46,75,202,122,44,-2,46,75,202,122,44,47,45,75,202,122,44,-2,45,75,202,122,44,47,44,75,202,122,44,-2,44,75,202,122,44,47,43,75,202,122,44,-2,43,75,202,122,44,47,42,75,202,122,44,-2,42,75,202,122,44,47,41,75,202,122,44,-2,41,75,202,122,44,47,40,75,202,122,44,-2,40,75,202,122,44,47,39,75,202,122,44,-2,39,75,202,122,44,47,38,75,202,122,44,-2,38,75,202,122,44,47,37,75,202,122,44,-2,37,75,202,122,44,47,36,75,202,122,44,-2,36,75,202,122,44,47,35,75,202,122,44,-2,35,75,202,122,44,47,34,75,202,122,44,-2,34,75,202,122,44,84,1,1,202,122,44,-39,2,1,202,122,44,47,33,75,202,122,44,-2,33,75,202,122,44,47,32,75,202,122,44,-2,32,75,202,122,44,47,31,75,202,122,44,-2,31,75,202,122,44,47,30,75,202,122,44,-2,30,75,202,122,44,47,29,75,202,122,44,-2,29,75,202,122,44,47,28,75,202,122,44,-2,28,75,202,122,44,47,27,75,202,122,44,-2,27,75,202,122,44,47,26,75,202,122,44,-2,26,75,202,122,44,47,25,75,202,122,44,-2,25,75,202,122,44,47,24,75,202,122,44,-2,24,75,202,122,44,47,23,75,202,122,44,-2,23,75,202,122,44,47,22,75,202,122,44,-2,22,75,202,122,44,47,21,75,202,122,44,-2,21,75,202,122,44,47,20,75,202,122,44,-2,20,75,202,122,44,47,19,75,202,122,44,-2,19,75,202,122,44,47,18,75,202,122,44,-2,18,75,202,122,44,47,17,75,202,122,44,-2,17,75,202,122,44,47,16,75,202,122,44,-2,16,75,202,122,44,47,15,75,202,122,44,-2,15,75,202,122,44,47,14,75,202,122,44,-2,14,75,202,122,44,47,13,75,202,122,44,-2,13,75,202,122,44,47,12,75,202,122,44,-2,12,75,202,122,44,47,11,75,202,122,44,-2,11,75,202,122,44,47,10,75,202,122,44,-2,10,75,202,122,44,47,9,75,202,122,44,-2,9,75,202,122,44,47,8,75,202,122,44,-2,8,75,202,122,44,47,7,75,202,122,44,-2,7,75,202,122,44,47,6,75,202,122,44,-2,6,75,202,122,44,47,5,75,202,122,44,-2,5,75,202,122,44,47,4,75,202,122,44,-2,4,75,202,122,44,47,3,75,202,122,44,-2,3,75,202,122,44,47,2,75,202,122,44,-2,2,75,202,122,44,47,1,75,202,122,44,-2,1,75,202,122,44,47,0,75,202,122,44,-2,0,75,202,122,44,47,-1,75,202,122,44,-2,-1,75,202,122,44,47,-2,75,202,122,44,46,-2,75,202,122,44,45,-2,75,202,122,44,44,-2,75,202,122,44,43,-2,75,202,122,44,42,-2,75,202,122,44,41,-2,75,202,122,44,40,-2,75,202,122,44,39,-2,75,202,122,44,38,-2,75,202,122,44,37,-2,75,202,122,44,36,-2,75,202,122,44,35,-2,75,202,122,44,34,-2,75,202,122,44,33,-2,75,202,122,44,32,-2,75,202,122,44,31,-2,75,202,122,44,30,-2,75,202,122,44,29,-2,75,202,122,44,28,-2,75,202,122,44,27,-2,75,202,122,44,26,-2,75,202,122,44,25,-2,75,202,122,44,24,-2,75,202,122,44,23,-2,75,202,122,44,22,-2,75,202,122,44,21,-2,75,202,122,44,20,-2,75,202,122,44,19,-2,75,202,122,44,18,-2,75,202,122,44,17,-2,75,202,122,44,16,-2,75,202,122,44,15,-2,75,202,122,44,14,-2,75,202,122,44,13,-2,75,202,122,44,12,-2,75,202,122,44,11,-2,75,202,122,44,10,-2,75,202,122,44,9,-2,75,202,122,44,8,-2,75,202,122,44,7,-2,75,202,122,44,6,-2,75,202,122,44,5,-2,75,202,122,44,4,-2,75,202,122,44,3,-2,75,202,122,44,2,-2,75,202,122,44,1,-2,75,202,122,44,0,-2,75,202,122,44,-1,-2,75,202,122,44,-2,-2,75,202,122,44,48,48,74,202,122,44,47,48,74,202,122,44,84,2,1,202,122,44,-39,3,1,202,122,44,46,48,74,202,122,44,45,48,74,202,122,44,44,48,74,202,122,44,43,48,74,202,122,44,42,48,74,202,122,44,41,48,74,202,122,44,40,48,74,202,122,44,39,48,74,202,122,44,38,48,74,202,122,44,37,48,74,202,122,44,36,48,74,202,122,44,35,48,74,202,122,44,34,48,74,202,122,44,33,48,74,202,122,44,32,48,74,202,122,44,31,48,74,202,122,44,30,48,74,202,122,44,29,48,74,202,122,44,28,48,74,202,122,44,27,48,74,202,122,44,26,48,74,202,122,44,25,48,74,202,122,44,24,48,74,202,122,44,23,48,74,202,122,44,22,48,74,202,122,44,21,48,74,202,122,44,20,48,74,202,122,44,19,48,74,202,122,44,18,48,74,202,122,44,17,48,74,202,122,44,16,48,74,202,122,44,15,48,74,202,122,44,14,48,74,202,122,44,13,48,74,202,122,44,12,48,74,202,122,44,11,48,74,202,122,44,10,48,74,202,122,44,9,48,74,202,122,44,8,48,74,202,122,44,7,48,74,202,122,44,6,48,74,202,122,44,5,48,74,202,122,44,4,48,74,202,122,44,3,48,74,202,122,44,2,48,74,202,122,44,1,48,74,202,122,44,0,48,74,202,122,44,-1,48,74,202,122,44,-2,48,74,202,122,44,-3,48,74,202,122,44,48,47,74,202,122,44,-3,47,74,202,122,44,48,46,74,202,122,44,-3,46,74,202,122,44,48,45,74,202,122,44,-3,45,74,202,122,44,48,44,74,202,122,44,-3,44,74,202,122,44,48,43,74,202,122,44,-3,43,74,202,122,44,48,42,74,202,122,44,-3,42,74,202,122,44,48,41,74,202,122,44,-3,41,74,202,122,44,48,40,74,202,122,44,-3,40,74,202,122,44,48,39,74,202,122,44,-3,39,74,202,122,44,48,38,74,202,122,44,-3,38,74,202,122,44,48,37,74,202,122,44,-3,37,74,202,122,44,48,36,74,202,122,44,-3,36,74,202,122,44,48,35,74,202,122,44,-3,35,74,202,122,44,48,34,74,202,122,44,-3,34,74,202,122,44,48,33,74,202,122,44,-3,33,74,202,122,44,48,32,74,202,122,44,-3,32,74,202,122,44,48,31,74,202,122,44,-3,31,74,202,122,44,48,30,74,202,122,44,-3,30,74,202,122,44,48,29,74,202,122,44,-3,29,74,202,122,44,48,28,74,202,122,44,-3,28,74,202,122,44,48,27,74,202,122,44,-3,27,74,202,122,44,48,26,74,202,122,44,-3,26,74,202,122,44,48,25,74,202,122,44,-3,25,74,202,122,44,48,24,74,202,122,44,-3,24,74,202,122,44,48,23,74,202,122,44,-3,23,74,202,122,44,48,22,74,202,122,44,-3,22,74,202,122,44,48,21,74,202,122,44,-3,21,74,202,122,44,48,20,74,202,122,44,-3,20,74,202,122,44,48,19,74,202,122,44,-3,19,74,202,122,44,48,18,74,202,122,44,-3,18,74,202,122,44,48,17,74,202,122,44,-3,17,74,202,122,44,48,16,74,202,122,44,-3,16,74,202,122,44,48,15,74,202,122,44,-3,15,74,202,122,44,48,14,74,202,122,44,-3,14,74,202,122,44,48,13,74,202,122,44,-3,13,74,202,122,44,48,12,74,202,122,44,-3,12,74,202,122,44,84,3,1,202,122,44,-39,4,1,202,122,44,48,11,74,202,122,44,-3,11,74,202,122,44,48,10,74,202,122,44,-3,10,74,202,122,44,48,9,74,202,122,44,-3,9,74,202,122,44,48,8,74,202,122,44,-3,8,74,202,122,44,48,7,74,202,122,44,-3,7,74,202,122,44,48,6,74,202,122,44,-3,6,74,202,122,44,48,5,74,202,122,44,-3,5,74,202,122,44,48,4,74,202,122,44,-3,4,74,202,122,44,48,3,74,202,122,44,-3,3,74,202,122,44,48,2,74,202,122,44,-3,2,74,202,122,44,48,1,74,202,122,44,-3,1,74,202,122,44,48,0,74,202,122,44,-3,0,74,202,122,44,48,-1,74,202,122,44,-3,-1,74,202,122,44,48,-2,74,202,122,44,-3,-2,74,202,122,44,48,-3,74,202,122,44,47,-3,74,202,122,44,46,-3,74,202,122,44,45,-3,74,202,122,44,44,-3,74,202,122,44,43,-3,74,202,122,44,42,-3,74,202,122,44,41,-3,74,202,122,44,40,-3,74,202,122,44,39,-3,74,202,122,44,38,-3,74,202,122,44,37,-3,74,202,122,44,36,-3,74,202,122,44,35,-3,74,202,122,44,34,-3,74,202,122,44,33,-3,74,202,122,44,32,-3,74,202,122,44,31,-3,74,202,122,44,30,-3,74,202,122,44,29,-3,74,202,122,44,28,-3,74,202,122,44,27,-3,74,202,122,44,26,-3,74,202,122,44,25,-3,74,202,122,44,24,-3,74,202,122,44,23,-3,74,202,122,44,22,-3,74,202,122,44,21,-3,74,202,122,44,20,-3,74,202,122,44,19,-3,74,202,122,44,18,-3,74,202,122,44,17,-3,74,202,122,44,16,-3,74,202,122,44,15,-3,74,202,122,44,14,-3,74,202,122,44,13,-3,74,202,122,44,12,-3,74,202,122,44,11,-3,74,202,122,44,10,-3,74,202,122,44,9,-3,74,202,122,44,8,-3,74,202,122,44,7,-3,74,202,122,44,6,-3,74,202,122,44,5,-3,74,202,122,44,4,-3,74,202,122,44,3,-3,74,202,122,44,2,-3,74,202,122,44,1,-3,74,202,122,44,0,-3,74,202,122,44,-1,-3,74,202,122,44,-2,-3,74,202,122,44,-3,-3,74,202,122,44,48,48,73,202,122,44,47,48,73,202,122,44,46,48,73,202,122,44,45,48,73,202,122,44,44,48,73,202,122,44,43,48,73,202,122,44,42,48,73,202,122,44,41,48,73,202,122,44,40,48,73,202,122,44,39,48,73,202,122,44,38,48,73,202,122,44,37,48,73,202,122,44,36,48,73,202,122,44,35,48,73,202,122,44,34,48,73,202,122,44,33,48,73,202,122,44,32,48,73,202,122,44,31,48,73,202,122,44,30,48,73,202,122,44,29,48,73,202,122,44,28,48,73,202,122,44,27,48,73,202,122,44,26,48,73,202,122,44,25,48,73,202,122,44,24,48,73,202,122,44,23,48,73,202,122,44,22,48,73,202,122,44,21,48,73,202,122,44,20,48,73,202,122,44,19,48,73,202,122,44,18,48,73,202,122,44,17,48,73,202,122,44,16,48,73,202,122,44,15,48,73,202,122,44,14,48,73,202,122,44,13,48,73,202,122,44,12,48,73,202,122,44,11,48,73,202,122,44,10,48,73,202,122,44,9,48,73,202,122,44,8,48,73,202,122,44,7,48,73,202,122,44,84,4,1,202,122,44,-39,5,1,202,122,44,6,48,73,202,122,44,5,48,73,202,122,44,4,48,73,202,122,44,3,48,73,202,122,44,2,48,73,202,122,44,1,48,73,202,122,44,0,48,73,202,122,44,-1,48,73,202,122,44,-2,48,73,202,122,44,-3,48,73,202,122,44,48,47,73,202,122,44,-3,47,73,202,122,44,48,46,73,202,122,44,-3,46,73,202,122,44,48,45,73,202,122,44,-3,45,73,202,122,44,48,44,73,202,122,44,-3,44,73,202,122,44,48,43,73,202,122,44,-3,43,73,202,122,44,48,42,73,202,122,44,-3,42,73,202,122,44,48,41,73,202,122,44,-3,41,73,202,122,44,48,40,73,202,122,44,-3,40,73,202,122,44,48,39,73,202,122,44,-3,39,73,202,122,44,48,38,73,202,122,44,-3,38,73,202,122,44,48,37,73,202,122,44,-3,37,73,202,122,44,48,36,73,202,122,44,-3,36,73,202,122,44,48,35,73,202,122,44,-3,35,73,202,122,44,48,34,73,202,122,44,-3,34,73,202,122,44,48,33,73,202,122,44,-3,33,73,202,122,44,48,32,73,202,122,44,-3,32,73,202,122,44,48,31,73,202,122,44,-3,31,73,202,122,44,48,30,73,202,122,44,-3,30,73,202,122,44,48,29,73,202,122,44,-3,29,73,202,122,44,48,28,73,202,122,44,-3,28,73,202,122,44,48,27,73,202,122,44,-3,27,73,202,122,44,48,26,73,202,122,44,-3,26,73,202,122,44,48,25,73,202,122,44,-3,25,73,202,122,44,48,24,73,202,122,44,-3,24,73,202,122,44,48,23,73,202,122,44,-3,23,73,202,122,44,48,22,73,202,122,44,-3,22,73,202,122,44,48,21,73,202,122,44,-3,21,73,202,122,44,48,20,73,202,122,44,-3,20,73,202,122,44,48,19,73,202,122,44,-3,19,73,202,122,44,48,18,73,202,122,44,-3,18,73,202,122,44,48,17,73,202,122,44,-3,17,73,202,122,44,48,16,73,202,122,44,-3,16,73,202,122,44,48,15,73,202,122,44,-3,15,73,202,122,44,48,14,73,202,122,44,-3,14,73,202,122,44,48,13,73,202,122,44,-3,13,73,202,122,44,48,12,73,202,122,44,-3,12,73,202,122,44,48,11,73,202,122,44,-3,11,73,202,122,44,48,10,73,202,122,44,-3,10,73,202,122,44,48,9,73,202,122,44,-3,9,73,202,122,44,48,8,73,202,122,44,-3,8,73,202,122,44,48,7,73,202,122,44,-3,7,73,202,122,44,48,6,73,202,122,44,-3,6,73,202,122,44,48,5,73,202,122,44,-3,5,73,202,122,44,48,4,73,202,122,44,-3,4,73,202,122,44,48,3,73,202,122,44,-3,3,73,202,122,44,48,2,73,202,122,44,-3,2,73,202,122,44,48,1,73,202,122,44,-3,1,73,202,122,44,48,0,73,202,122,44,-3,0,73,202,122,44,48,-1,73,202,122,44,-3,-1,73,202,122,44,48,-2,73,202,122,44,-3,-2,73,202,122,44,48,-3,73,202,122,44,47,-3,73,202,122,44,46,-3,73,202,122,44,45,-3,73,202,122,44,44,-3,73,202,122,44,43,-3,73,202,122,44,42,-3,73,202,122,44,41,-3,73,202,122,44,40,-3,73,202,122,44,39,-3,73,202,122,44,38,-3,73,202,122,44,37,-3,73,202,122,44,84,5,1,202,122,44,-39,6,1,202,122,44,36,-3,73,202,122,44,35,-3,73,202,122,44,34,-3,73,202,122,44,33,-3,73,202,122,44,32,-3,73,202,122,44,31,-3,73,202,122,44,30,-3,73,202,122,44,29,-3,73,202,122,44,28,-3,73,202,122,44,27,-3,73,202,122,44,26,-3,73,202,122,44,25,-3,73,202,122,44,24,-3,73,202,122,44,23,-3,73,202,122,44,22,-3,73,202,122,44,21,-3,73,202,122,44,20,-3,73,202,122,44,19,-3,73,202,122,44,18,-3,73,202,122,44,17,-3,73,202,122,44,16,-3,73,202,122,44,15,-3,73,202,122,44,14,-3,73,202,122,44,13,-3,73,202,122,44,12,-3,73,202,122,44,11,-3,73,202,122,44,10,-3,73,202,122,44,9,-3,73,202,122,44,8,-3,73,202,122,44,7,-3,73,202,122,44,6,-3,73,202,122,44,5,-3,73,202,122,44,4,-3,73,202,122,44,3,-3,73,202,122,44,2,-3,73,202,122,44,1,-3,73,202,122,44,0,-3,73,202,122,44,-1,-3,73,202,122,44,-2,-3,73,202,122,44,-3,-3,73,202,122,44,49,49,72,202,122,44,48,49,72,202,122,44,47,49,72,202,122,44,46,49,72,202,122,44,45,49,72,202,122,44,44,49,72,202,122,44,43,49,72,202,122,44,42,49,72,202,122,44,41,49,72,202,122,44,40,49,72,202,122,44,39,49,72,202,122,44,38,49,72,202,122,44,37,49,72,202,122,44,36,49,72,202,122,44,35,49,72,202,122,44,34,49,72,202,122,44,33,49,72,202,122,44,32,49,72,202,122,44,31,49,72,202,122,44,30,49,72,202,122,44,29,49,72,202,122,44,28,49,72,202,122,44,27,49,72,202,122,44,26,49,72,202,122,44,25,49,72,202,122,44,24,49,72,202,122,44,23,49,72,202,122,44,22,49,72,202,122,44,21,49,72,202,122,44,20,49,72,202,122,44,19,49,72,202,122,44,18,49,72,202,122,44,17,49,72,202,122,44,16,49,72,202,122,44,15,49,72,202,122,44,14,49,72,202,122,44,13,49,72,202,122,44,12,49,72,202,122,44,11,49,72,202,122,44,10,49,72,202,122,44,9,49,72,202,122,44,8,49,72,202,122,44,7,49,72,202,122,44,6,49,72,202,122,44,5,49,72,202,122,44,4,49,72,202,122,44,3,49,72,202,122,44,2,49,72,202,122,44,1,49,72,202,122,44,0,49,72,202,122,44,-1,49,72,202,122,44,-2,49,72,202,122,44,-3,49,72,202,122,44,-4,49,72,202,122,44,49,48,72,202,122,44,-4,48,72,202,122,44,49,47,72,202,122,44,-4,47,72,202,122,44,49,46,72,202,122,44,-4,46,72,202,122,44,49,45,72,202,122,44,-4,45,72,202,122,44,49,44,72,202,122,44,-4,44,72,202,122,44,49,43,72,202,122,44,-4,43,72,202,122,44,49,42,72,202,122,44,-4,42,72,202,122,44,49,41,72,202,122,44,-4,41,72,202,122,44,49,40,72,202,122,44,-4,40,72,202,122,44,49,39,72,202,122,44,-4,39,72,202,122,44,49,38,72,202,122,44,-4,38,72,202,122,44,49,37,72,202,122,44,-4,37,72,202,122,44,49,36,72,202,122,44,-4,36,72,202,122,44,49,35,72,202,122,44,-4,35,72,202,122,44,84,6,1,202,122,44,-39,7,1,202,122,44,49,34,72,202,122,44,-4,34,72,202,122,44,49,33,72,202,122,44,-4,33,72,202,122,44,49,32,72,202,122,44,-4,32,72,202,122,44,49,31,72,202,122,44,-4,31,72,202,122,44,49,30,72,202,122,44,-4,30,72,202,122,44,49,29,72,202,122,44,-4,29,72,202,122,44,49,28,72,202,122,44,-4,28,72,202,122,44,49,27,72,202,122,44,-4,27,72,202,122,44,49,26,72,202,122,44,-4,26,72,202,122,44,49,25,72,202,122,44,-4,25,72,202,122,44,49,24,72,202,122,44,-4,24,72,202,122,44,49,23,72,202,122,44,-4,23,72,202,122,44,49,22,72,202,122,44,-4,22,72,202,122,44,49,21,72,202,122,44,-4,21,72,202,122,44,49,20,72,202,122,44,-4,20,72,202,122,44,49,19,72,202,122,44,-4,19,72,202,122,44,49,18,72,202,122,44,-4,18,72,202,122,44,49,17,72,202,122,44,-4,17,72,202,122,44,49,16,72,202,122,44,-4,16,72,202,122,44,49,15,72,202,122,44,-4,15,72,202,122,44,49,14,72,202,122,44,-4,14,72,202,122,44,49,13,72,202,122,44,-4,13,72,202,122,44,49,12,72,202,122,44,-4,12,72,202,122,44,49,11,72,202,122,44,-4,11,72,202,122,44,49,10,72,202,122,44,-4,10,72,202,122,44,49,9,72,202,122,44,-4,9,72,202,122,44,49,8,72,202,122,44,-4,8,72,202,122,44,49,7,72,202,122,44,-4,7,72,202,122,44,49,6,72,202,122,44,-4,6,72,202,122,44,49,5,72,202,122,44,-4,5,72,202,122,44,49,4,72,202,122,44,-4,4,72,202,122,44,49,3,72,202,122,44,-4,3,72,202,122,44,49,2,72,202,122,44,-4,2,72,202,122,44,49,1,72,202,122,44,-4,1,72,202,122,44,49,0,72,202,122,44,-4,0,72,202,122,44,49,-1,72,202,122,44,-4,-1,72,202,122,44,49,-2,72,202,122,44,-4,-2,72,202,122,44,49,-3,72,202,122,44,-4,-3,72,202,122,44,49,-4,72,202,122,44,48,-4,72,202,122,44,47,-4,72,202,122,44,46,-4,72,202,122,44,45,-4,72,202,122,44,44,-4,72,202,122,44,43,-4,72,202,122,44,42,-4,72,202,122,44,41,-4,72,202,122,44,40,-4,72,202,122,44,39,-4,72,202,122,44,38,-4,72,202,122,44,37,-4,72,202,122,44,36,-4,72,202,122,44,35,-4,72,202,122,44,34,-4,72,202,122,44,33,-4,72,202,122,44,32,-4,72,202,122,44,31,-4,72,202,122,44,30,-4,72,202,122,44,29,-4,72,202,122,44,28,-4,72,202,122,44,27,-4,72,202,122,44,26,-4,72,202,122,44,25,-4,72,202,122,44,24,-4,72,202,122,44,23,-4,72,202,122,44,22,-4,72,202,122,44,21,-4,72,202,122,44,20,-4,72,202,122,44,19,-4,72,202,122,44,18,-4,72,202,122,44,17,-4,72,202,122,44,16,-4,72,202,122,44,15,-4,72,202,122,44,14,-4,72,202,122,44,13,-4,72,202,122,44,12,-4,72,202,122,44,11,-4,72,202,122,44,10,-4,72,202,122,44,9,-4,72,202,122,44,8,-4,72,202,122,44,7,-4,72,202,122,44,6,-4,72,202,122,44,5,-4,72,202,122,44,4,-4,72,202,122,44,84,7,1,202,122,44,-39,8,1,202,122,44,3,-4,72,202,122,44,2,-4,72,202,122,44,1,-4,72,202,122,44,0,-4,72,202,122,44,-1,-4,72,202,122,44,-2,-4,72,202,122,44,-3,-4,72,202,122,44,-4,-4,72,202,122,44,49,49,71,202,122,44,48,49,71,202,122,44,47,49,71,202,122,44,46,49,71,202,122,44,45,49,71,202,122,44,44,49,71,202,122,44,43,49,71,202,122,44,42,49,71,202,122,44,41,49,71,202,122,44,40,49,71,202,122,44,39,49,71,202,122,44,38,49,71,202,122,44,37,49,71,202,122,44,36,49,71,202,122,44,35,49,71,202,122,44,34,49,71,202,122,44,33,49,71,202,122,44,32,49,71,202,122,44,31,49,71,202,122,44,30,49,71,202,122,44,29,49,71,202,122,44,28,49,71,202,122,44,27,49,71,202,122,44,26,49,71,202,122,44,25,49,71,202,122,44,24,49,71,202,122,44,23,49,71,202,122,44,22,49,71,202,122,44,21,49,71,202,122,44,20,49,71,202,122,44,19,49,71,202,122,44,18,49,71,202,122,44,17,49,71,202,122,44,16,49,71,202,122,44,15,49,71,202,122,44,14,49,71,202,122,44,13,49,71,202,122,44,12,49,71,202,122,44,11,49,71,202,122,44,10,49,71,202,122,44,9,49,71,202,122,44,8,49,71,202,122,44,7,49,71,202,122,44,6,49,71,202,122,44,5,49,71,202,122,44,4,49,71,202,122,44,3,49,71,202,122,44,2,49,71,202,122,44,1,49,71,202,122,44,0,49,71,202,122,44,-1,49,71,202,122,44,-2,49,71,202,122,44,-3,49,71,202,122,44,-4,49,71,202,122,44,49,48,71,202,122,44,-4,48,71,202,122,44,49,47,71,202,122,44,-4,47,71,202,122,44,49,46,71,202,122,44,-4,46,71,202,122,44,49,45,71,202,122,44,-4,45,71,202,122,44,49,44,71,202,122,44,-4,44,71,202,122,44,49,43,71,202,122,44,-4,43,71,202,122,44,49,42,71,202,122,44,-4,42,71,202,122,44,49,41,71,202,122,44,-4,41,71,202,122,44,49,40,71,202,122,44,-4,40,71,202,122,44,49,39,71,202,122,44,-4,39,71,202,122,44,49,38,71,202,122,44,-4,38,71,202,122,44,49,37,71,202,122,44,-4,37,71,202,122,44,49,36,71,202,122,44,-4,36,71,202,122,44,49,35,71,202,122,44,-4,35,71,202,122,44,49,34,71,202,122,44,-4,34,71,202,122,44,49,33,71,202,122,44,-4,33,71,202,122,44,49,32,71,202,122,44,-4,32,71,202,122,44,49,31,71,202,122,44,-4,31,71,202,122,44,49,30,71,202,122,44,-4,30,71,202,122,44,49,29,71,202,122,44,-4,29,71,202,122,44,49,28,71,202,122,44,-4,28,71,202,122,44,49,27,71,202,122,44,-4,27,71,202,122,44,49,26,71,202,122,44,-4,26,71,202,122,44,49,25,71,202,122,44,-4,25,71,202,122,44,49,24,71,202,122,44,-4,24,71,202,122,44,49,23,71,202,122,44,-4,23,71,202,122,44,49,22,71,202,122,44,-4,22,71,202,122,44,49,21,71,202,122,44,-4,21,71,202,122,44,49,20,71,202,122,44,-4,20,71,202,122,44,49,19,71,202,122,44,-4,19,71,202,122,44,84,8,1,202,122,44,-39,9,1,202,122,44,49,18,71,202,122,44,-4,18,71,202,122,44,49,17,71,202,122,44,-4,17,71,202,122,44,49,16,71,202,122,44,-4,16,71,202,122,44,49,15,71,202,122,44,-4,15,71,202,122,44,49,14,71,202,122,44,-4,14,71,202,122,44,49,13,71,202,122,44,-4,13,71,202,122,44,49,12,71,202,122,44,-4,12,71,202,122,44,49,11,71,202,122,44,-4,11,71,202,122,44,49,10,71,202,122,44,-4,10,71,202,122,44,49,9,71,202,122,44,-4,9,71,202,122,44,49,8,71,202,122,44,-4,8,71,202,122,44,49,7,71,202,122,44,-4,7,71,202,122,44,49,6,71,202,122,44,-4,6,71,202,122,44,49,5,71,202,122,44,-4,5,71,202,122,44,49,4,71,202,122,44,-4,4,71,202,122,44,49,3,71,202,122,44,-4,3,71,202,122,44,49,2,71,202,122,44,-4,2,71,202,122,44,49,1,71,202,122,44,-4,1,71,202,122,44,49,0,71,202,122,44,-4,0,71,202,122,44,49,-1,71,202,122,44,-4,-1,71,202,122,44,49,-2,71,202,122,44,-4,-2,71,202,122,44,49,-3,71,202,122,44,-4,-3,71,202,122,44,49,-4,71,202,122,44,48,-4,71,202,122,44,47,-4,71,202,122,44,46,-4,71,202,122,44,45,-4,71,202,122,44,44,-4,71,202,122,44,43,-4,71,202,122,44,42,-4,71,202,122,44,41,-4,71,202,122,44,40,-4,71,202,122,44,39,-4,71,202,122,44,38,-4,71,202,122,44,37,-4,71,202,122,44,36,-4,71,202,122,44,35,-4,71,202,122,44,34,-4,71,202,122,44,33,-4,71,202,122,44,32,-4,71,202,122,44,31,-4,71,202,122,44,30,-4,71,202,122,44,29,-4,71,202,122,44,28,-4,71,202,122,44,27,-4,71,202,122,44,26,-4,71,202,122,44,25,-4,71,202,122,44,24,-4,71,202,122,44,23,-4,71,202,122,44,22,-4,71,202,122,44,21,-4,71,202,122,44,20,-4,71,202,122,44,19,-4,71,202,122,44,18,-4,71,202,122,44,17,-4,71,202,122,44,16,-4,71,202,122,44,15,-4,71,202,122,44,14,-4,71,202,122,44,13,-4,71,202,122,44,12,-4,71,202,122,44,11,-4,71,202,122,44,10,-4,71,202,122,44,9,-4,71,202,122,44,8,-4,71,202,122,44,7,-4,71,202,122,44,6,-4,71,202,122,44,5,-4,71,202,122,44,4,-4,71,202,122,44,3,-4,71,202,122,44,2,-4,71,202,122,44,1,-4,71,202,122,44,0,-4,71,202,122,44,-1,-4,71,202,122,44,-2,-4,71,202,122,44,-3,-4,71,202,122,44,-4,-4,71,202,122,44,50,50,70,202,122,44,49,50,70,202,122,44,48,50,70,202,122,44,47,50,70,202,122,44,46,50,70,202,122,44,45,50,70,202,122,44,44,50,70,202,122,44,43,50,70,202,122,44,42,50,70,202,122,44,41,50,70,202,122,44,40,50,70,202,122,44,39,50,70,202,122,44,38,50,70,202,122,44,37,50,70,202,122,44,36,50,70,202,122,44,35,50,70,202,122,44,34,50,70,202,122,44,33,50,70,202,122,44,32,50,70,202,122,44,31,50,70,202,122,44,30,50,70,202,122,44,29,50,70,202,122,44,28,50,70,202,122,44,27,50,70,202,122,44,84,9,1,202,122,44,-39,10,1,202,122,44,26,50,70,202,122,44,25,50,70,202,122,44,24,50,70,202,122,44,23,50,70,202,122,44,22,50,70,202,122,44,21,50,70,202,122,44,20,50,70,202,122,44,19,50,70,202,122,44,18,50,70,202,122,44,17,50,70,202,122,44,16,50,70,202,122,44,15,50,70,202,122,44,14,50,70,202,122,44,13,50,70,202,122,44,12,50,70,202,122,44,11,50,70,202,122,44,10,50,70,202,122,44,9,50,70,202,122,44,8,50,70,202,122,44,7,50,70,202,122,44,6,50,70,202,122,44,5,50,70,202,122,44,4,50,70,202,122,44,3,50,70,202,122,44,2,50,70,202,122,44,1,50,70,202,122,44,0,50,70,202,122,44,-1,50,70,202,122,44,-2,50,70,202,122,44,-3,50,70,202,122,44,-4,50,70,202,122,44,-5,50,70,202,122,44,50,49,70,202,122,44,-5,49,70,202,122,44,50,48,70,202,122,44,-5,48,70,202,122,44,50,47,70,202,122,44,-5,47,70,202,122,44,50,46,70,202,122,44,-5,46,70,202,122,44,50,45,70,202,122,44,-5,45,70,202,122,44,50,44,70,202,122,44,-5,44,70,202,122,44,50,43,70,202,122,44,-5,43,70,202,122,44,50,42,70,202,122,44,-5,42,70,202,122,44,50,41,70,202,122,44,-5,41,70,202,122,44,50,40,70,202,122,44,-5,40,70,202,122,44,50,39,70,202,122,44,-5,39,70,202,122,44,50,38,70,202,122,44,-5,38,70,202,122,44,50,37,70,202,122,44,-5,37,70,202,122,44,50,36,70,202,122,44,-5,36,70,202,122,44,50,35,70,202,122,44,-5,35,70,202,122,44,50,34,70,202,122,44,-5,34,70,202,122,44,50,33,70,202,122,44,-5,33,70,202,122,44,50,32,70,202,122,44,-5,32,70,202,122,44,50,31,70,202,122,44,-5,31,70,202,122,44,50,30,70,202,122,44,-5,30,70,202,122,44,50,29,70,202,122,44,-5,29,70,202,122,44,50,28,70,202,122,44,-5,28,70,202,122,44,50,27,70,202,122,44,-5,27,70,202,122,44,50,26,70,202,122,44,-5,26,70,202,122,44,50,25,70,202,122,44,-5,25,70,202,122,44,50,24,70,202,122,44,-5,24,70,202,122,44,50,23,70,202,122,44,-5,23,70,202,122,44,50,22,70,202,122,44,-5,22,70,202,122,44,50,21,70,202,122,44,-5,21,70,202,122,44,50,20,70,202,122,44,-5,20,70,202,122,44,50,19,70,202,122,44,-5,19,70,202,122,44,50,18,70,202,122,44,-5,18,70,202,122,44,50,17,70,202,122,44,-5,17,70,202,122,44,50,16,70,202,122,44,-5,16,70,202,122,44,50,15,70,202,122,44,-5,15,70,202,122,44,50,14,70,202,122,44,-5,14,70,202,122,44,50,13,70,202,122,44,-5,13,70,202,122,44,50,12,70,202,122,44,-5,12,70,202,122,44,50,11,70,202,122,44,-5,11,70,202,122,44,50,10,70,202,122,44,-5,10,70,202,122,44,50,9,70,202,122,44,-5,9,70,202,122,44,50,8,70,202,122,44,-5,8,70,202,122,44,50,7,70,202,122,44,-5,7,70,202,122,44,50,6,70,202,122,44,-5,6,70,202,122,44,50,5,70,202,122,44,-5,5,70,202,122,44,84,10,1,202,122,44,-39,11,1,202,122,44,50,4,70,202,122,44,-5,4,70,202,122,44,50,3,70,202,122,44,-5,3,70,202,122,44,50,2,70,202,122,44,-5,2,70,202,122,44,50,1,70,202,122,44,-5,1,70,202,122,44,50,0,70,202,122,44,-5,0,70,202,122,44,50,-1,70,202,122,44,-5,-1,70,202,122,44,50,-2,70,202,122,44,-5,-2,70,202,122,44,50,-3,70,202,122,44,-5,-3,70,202,122,44,50,-4,70,202,122,44,-5,-4,70,202,122,44,50,-5,70,202,122,44,49,-5,70,202,122,44,48,-5,70,202,122,44,47,-5,70,202,122,44,46,-5,70,202,122,44,45,-5,70,202,122,44,44,-5,70,202,122,44,43,-5,70,202,122,44,42,-5,70,202,122,44,41,-5,70,202,122,44,40,-5,70,202,122,44,39,-5,70,202,122,44,38,-5,70,202,122,44,37,-5,70,202,122,44,36,-5,70,202,122,44,35,-5,70,202,122,44,34,-5,70,202,122,44,33,-5,70,202,122,44,32,-5,70,202,122,44,31,-5,70,202,122,44,30,-5,70,202,122,44,29,-5,70,202,122,44,28,-5,70,202,122,44,27,-5,70,202,122,44,26,-5,70,202,122,44,25,-5,70,202,122,44,24,-5,70,202,122,44,23,-5,70,202,122,44,22,-5,70,202,122,44,21,-5,70,202,122,44,20,-5,70,202,122,44,19,-5,70,202,122,44,18,-5,70,202,122,44,17,-5,70,202,122,44,16,-5,70,202,122,44,15,-5,70,202,122,44,14,-5,70,202,122,44,13,-5,70,202,122,44,12,-5,70,202,122,44,11,-5,70,202,122,44,10,-5,70,202,122,44,9,-5,70,202,122,44,8,-5,70,202,122,44,7,-5,70,202,122,44,6,-5,70,202,122,44,5,-5,70,202,122,44,4,-5,70,202,122,44,3,-5,70,202,122,44,2,-5,70,202,122,44,1,-5,70,202,122,44,0,-5,70,202,122,44,-1,-5,70,202,122,44,-2,-5,70,202,122,44,-3,-5,70,202,122,44,-4,-5,70,202,122,44,-5,-5,70,202,122,44,50,50,69,202,122,44,49,50,69,202,122,44,48,50,69,202,122,44,47,50,69,202,122,44,46,50,69,202,122,44,45,50,69,202,122,44,44,50,69,202,122,44,43,50,69,202,122,44,42,50,69,202,122,44,41,50,69,202,122,44,40,50,69,202,122,44,39,50,69,202,122,44,38,50,69,202,122,44,37,50,69,202,122,44,36,50,69,202,122,44,35,50,69,202,122,44,34,50,69,202,122,44,33,50,69,202,122,44,32,50,69,202,122,44,31,50,69,202,122,44,30,50,69,202,122,44,29,50,69,202,122,44,28,50,69,202,122,44,27,50,69,202,122,44,26,50,69,202,122,44,25,50,69,202,122,44,24,50,69,202,122,44,23,50,69,202,122,44,22,50,69,202,122,44,21,50,69,202,122,44,20,50,69,202,122,44,19,50,69,202,122,44,18,50,69,202,122,44,17,50,69,202,122,44,16,50,69,202,122,44,15,50,69,202,122,44,14,50,69,202,122,44,13,50,69,202,122,44,12,50,69,202,122,44,11,50,69,202,122,44,10,50,69,202,122,44,9,50,69,202,122,44,8,50,69,202,122,44,7,50,69,202,122,44,6,50,69,202,122,44,5,50,69,202,122,44,4,50,69,202,122,44,3,50,69,202,122,44,84,11,1,202,122,44,-39,12,1,202,122,44,2,50,69,202,122,44,1,50,69,202,122,44,0,50,69,202,122,44,-1,50,69,202,122,44,-2,50,69,202,122,44,-3,50,69,202,122,44,-4,50,69,202,122,44,-5,50,69,202,122,44,50,49,69,202,122,44,-5,49,69,202,122,44,50,48,69,202,122,44,-5,48,69,202,122,44,50,47,69,202,122,44,-5,47,69,202,122,44,50,46,69,202,122,44,-5,46,69,202,122,44,50,45,69,202,122,44,-5,45,69,202,122,44,50,44,69,202,122,44,-5,44,69,202,122,44,50,43,69,202,122,44,-5,43,69,202,122,44,50,42,69,202,122,44,-5,42,69,202,122,44,50,41,69,202,122,44,-5,41,69,202,122,44,50,40,69,202,122,44,-5,40,69,202,122,44,50,39,69,202,122,44,-5,39,69,202,122,44,50,38,69,202,122,44,-5,38,69,202,122,44,50,37,69,202,122,44,-5,37,69,202,122,44,50,36,69,202,122,44,-5,36,69,202,122,44,50,35,69,202,122,44,-5,35,69,202,122,44,50,34,69,202,122,44,-5,34,69,202,122,44,50,33,69,202,122,44,-5,33,69,202,122,44,50,32,69,202,122,44,-5,32,69,202,122,44,50,31,69,202,122,44,-5,31,69,202,122,44,50,30,69,202,122,44,-5,30,69,202,122,44,50,29,69,202,122,44,-5,29,69,202,122,44,50,28,69,202,122,44,-5,28,69,202,122,44,50,27,69,202,122,44,-5,27,69,202,122,44,50,26,69,202,122,44,-5,26,69,202,122,44,50,25,69,202,122,44,-5,25,69,202,122,44,50,24,69,202,122,44,-5,24,69,202,122,44,50,23,69,202,122,44,-5,23,69,202,122,44,50,22,69,202,122,44,-5,22,69,202,122,44,50,21,69,202,122,44,-5,21,69,202,122,44,50,20,69,202,122,44,-5,20,69,202,122,44,50,19,69,202,122,44,-5,19,69,202,122,44,50,18,69,202,122,44,-5,18,69,202,122,44,50,17,69,202,122,44,-5,17,69,202,122,44,50,16,69,202,122,44,-5,16,69,202,122,44,50,15,69,202,122,44,-5,15,69,202,122,44,50,14,69,202,122,44,-5,14,69,202,122,44,50,13,69,202,122,44,-5,13,69,202,122,44,50,12,69,202,122,44,-5,12,69,202,122,44,50,11,69,202,122,44,-5,11,69,202,122,44,50,10,69,202,122,44,-5,10,69,202,122,44,50,9,69,202,122,44,-5,9,69,202,122,44,50,8,69,202,122,44,-5,8,69,202,122,44,50,7,69,202,122,44,-5,7,69,202,122,44,50,6,69,202,122,44,-5,6,69,202,122,44,50,5,69,202,122,44,-5,5,69,202,122,44,50,4,69,202,122,44,-5,4,69,202,122,44,50,3,69,202,122,44,-5,3,69,202,122,44,50,2,69,202,122,44,-5,2,69,202,122,44,50,1,69,202,122,44,-5,1,69,202,122,44,50,0,69,202,122,44,-5,0,69,202,122,44,50,-1,69,202,122,44,-5,-1,69,202,122,44,50,-2,69,202,122,44,-5,-2,69,202,122,44,50,-3,69,202,122,44,-5,-3,69,202,122,44,50,-4,69,202,122,44,-5,-4,69,202,122,44,50,-5,69,202,122,44,49,-5,69,202,122,44,48,-5,69,202,122,44,47,-5,69,202,122,44,46,-5,69,202,122,44,45,-5,69,202,122,44,84,12,1,202,122,44,-39,13,1,202,122,44,44,-5,69,202,122,44,43,-5,69,202,122,44,42,-5,69,202,122,44,41,-5,69,202,122,44,40,-5,69,202,122,44,39,-5,69,202,122,44,38,-5,69,202,122,44,37,-5,69,202,122,44,36,-5,69,202,122,44,35,-5,69,202,122,44,34,-5,69,202,122,44,33,-5,69,202,122,44,32,-5,69,202,122,44,31,-5,69,202,122,44,30,-5,69,202,122,44,29,-5,69,202,122,44,28,-5,69,202,122,44,27,-5,69,202,122,44,26,-5,69,202,122,44,25,-5,69,202,122,44,24,-5,69,202,122,44,23,-5,69,202,122,44,22,-5,69,202,122,44,21,-5,69,202,122,44,20,-5,69,202,122,44,19,-5,69,202,122,44,18,-5,69,202,122,44,17,-5,69,202,122,44,16,-5,69,202,122,44,15,-5,69,202,122,44,14,-5,69,202,122,44,13,-5,69,202,122,44,12,-5,69,202,122,44,11,-5,69,202,122,44,10,-5,69,202,122,44,9,-5,69,202,122,44,8,-5,69,202,122,44,7,-5,69,202,122,44,6,-5,69,202,122,44,5,-5,69,202,122,44,4,-5,69,202,122,44,3,-5,69,202,122,44,2,-5,69,202,122,44,1,-5,69,202,122,44,0,-5,69,202,122,44,-1,-5,69,202,122,44,-2,-5,69,202,122,44,-3,-5,69,202,122,44,-4,-5,69,202,122,44,-5,-5,69,202,122,44,51,51,68,202,122,44,50,51,68,202,122,44,49,51,68,202,122,44,48,51,68,202,122,44,47,51,68,202,122,44,46,51,68,202,122,44,45,51,68,202,122,44,44,51,68,202,122,44,43,51,68,202,122,44,42,51,68,202,122,44,41,51,68,202,122,44,40,51,68,202,122,44,39,51,68,202,122,44,38,51,68,202,122,44,37,51,68,202,122,44,36,51,68,202,122,44,35,51,68,202,122,44,34,51,68,202,122,44,33,51,68,202,122,44,32,51,68,202,122,44,31,51,68,202,122,44,30,51,68,202,122,44,29,51,68,202,122,44,28,51,68,202,122,44,27,51,68,202,122,44,26,51,68,202,122,44,25,51,68,202,122,44,24,51,68,202,122,44,23,51,68,202,122,44,22,51,68,202,122,44,21,51,68,202,122,44,20,51,68,202,122,44,19,51,68,202,122,44,18,51,68,202,122,44,17,51,68,202,122,44,16,51,68,202,122,44,15,51,68,202,122,44,14,51,68,202,122,44,13,51,68,202,122,44,12,51,68,202,122,44,11,51,68,202,122,44,10,51,68,202,122,44,9,51,68,202,122,44,8,51,68,202,122,44,7,51,68,202,122,44,6,51,68,202,122,44,5,51,68,202,122,44,4,51,68,202,122,44,3,51,68,202,122,44,2,51,68,202,122,44,1,51,68,202,122,44,0,51,68,202,122,44,-1,51,68,202,122,44,-2,51,68,202,122,44,-3,51,68,202,122,44,-4,51,68,202,122,44,-5,51,68,202,122,44,-6,51,68,202,122,44,51,50,68,202,122,44,-6,50,68,202,122,44,51,49,68,202,122,44,-6,49,68,202,122,44,51,48,68,202,122,44,-6,48,68,202,122,44,51,47,68,202,122,44,-6,47,68,202,122,44,51,46,68,202,122,44,-6,46,68,202,122,44,51,45,68,202,122,44,-6,45,68,202,122,44,51,44,68,202,122,44,-6,44,68,202,122,44,84,13,1,202,122,44,-39,14,1,202,122,44,51,43,68,202,122,44,-6,43,68,202,122,44,51,42,68,202,122,44,-6,42,68,202,122,44,51,41,68,202,122,44,-6,41,68,202,122,44,51,40,68,202,122,44,-6,40,68,202,122,44,51,39,68,202,122,44,-6,39,68,202,122,44,51,38,68,202,122,44,-6,38,68,202,122,44,51,37,68,202,122,44,-6,37,68,202,122,44,51,36,68,202,122,44,-6,36,68,202,122,44,51,35,68,202,122,44,-6,35,68,202,122,44,51,34,68,202,122,44,-6,34,68,202,122,44,51,33,68,202,122,44,-6,33,68,202,122,44,51,32,68,202,122,44,-6,32,68,202,122,44,51,31,68,202,122,44,-6,31,68,202,122,44,51,30,68,202,122,44,-6,30,68,202,122,44,51,29,68,202,122,44,-6,29,68,202,122,44,51,28,68,202,122,44,-6,28,68,202,122,44,51,27,68,202,122,44,-6,27,68,202,122,44,51,26,68,202,122,44,-6,26,68,202,122,44,51,25,68,202,122,44,-6,25,68,202,122,44,51,24,68,202,122,44,-6,24,68,202,122,44,51,23,68,202,122,44,-6,23,68,202,122,44,51,22,68,202,122,44,-6,22,68,202,122,44,51,21,68,202,122,44,-6,21,68,202,122,44,51,20,68,202,122,44,-6,20,68,202,122,44,51,19,68,202,122,44,-6,19,68,202,122,44,51,18,68,202,122,44,-6,18,68,202,122,44,51,17,68,202,122,44,-6,17,68,202,122,44,51,16,68,202,122,44,-6,16,68,202,122,44,51,15,68,202,122,44,-6,15,68,202,122,44,51,14,68,202,122,44,-6,14,68,202,122,44,51,13,68,202,122,44,-6,13,68,202,122,44,51,12,68,202,122,44,-6,12,68,202,122,44,51,11,68,202,122,44,-6,11,68,202,122,44,51,10,68,202,122,44,-6,10,68,202,122,44,51,9,68,202,122,44,-6,9,68,202,122,44,51,8,68,202,122,44,-6,8,68,202,122,44,51,7,68,202,122,44,-6,7,68,202,122,44,51,6,68,202,122,44,-6,6,68,202,122,44,51,5,68,202,122,44,-6,5,68,202,122,44,51,4,68,202,122,44,-6,4,68,202,122,44,51,3,68,202,122,44,-6,3,68,202,122,44,51,2,68,202,122,44,-6,2,68,202,122,44,51,1,68,202,122,44,-6,1,68,202,122,44,51,0,68,202,122,44,-6,0,68,202,122,44,51,-1,68,202,122,44,-6,-1,68,202,122,44,51,-2,68,202,122,44,-6,-2,68,202,122,44,51,-3,68,202,122,44,-6,-3,68,202,122,44,51,-4,68,202,122,44,-6,-4,68,202,122,44,51,-5,68,202,122,44,-6,-5,68,202,122,44,51,-6,68,202,122,44,50,-6,68,202,122,44,49,-6,68,202,122,44,48,-6,68,202,122,44,47,-6,68,202,122,44,46,-6,68,202,122,44,45,-6,68,202,122,44,44,-6,68,202,122,44,43,-6,68,202,122,44,42,-6,68,202,122,44,41,-6,68,202,122,44,40,-6,68,202,122,44,39,-6,68,202,122,44,38,-6,68,202,122,44,37,-6,68,202,122,44,36,-6,68,202,122,44,35,-6,68,202,122,44,34,-6,68,202,122,44,33,-6,68,202,122,44,32,-6,68,202,122,44,31,-6,68,202,122,44,30,-6,68,202,122,44,29,-6,68,202,122,44,28,-6,68,202,122,44,84,14,1,202,122,44,-39,15,1,202,122,44,27,-6,68,202,122,44,26,-6,68,202,122,44,25,-6,68,202,122,44,24,-6,68,202,122,44,23,-6,68,202,122,44,22,-6,68,202,122,44,21,-6,68,202,122,44,20,-6,68,202,122,44,19,-6,68,202,122,44,18,-6,68,202,122,44,17,-6,68,202,122,44,16,-6,68,202,122,44,15,-6,68,202,122,44,14,-6,68,202,122,44,13,-6,68,202,122,44,12,-6,68,202,122,44,11,-6,68,202,122,44,10,-6,68,202,122,44,9,-6,68,202,122,44,8,-6,68,202,122,44,7,-6,68,202,122,44,6,-6,68,202,122,44,5,-6,68,202,122,44,4,-6,68,202,122,44,3,-6,68,202,122,44,2,-6,68,202,122,44,1,-6,68,202,122,44,0,-6,68,202,122,44,-1,-6,68,202,122,44,-2,-6,68,202,122,44,-3,-6,68,202,122,44,-4,-6,68,202,122,44,-5,-6,68,202,122,44,-6,-6,68,202,122,44,51,51,67,202,122,44,50,51,67,202,122,44,49,51,67,202,122,44,48,51,67,202,122,44,47,51,67,202,122,44,46,51,67,202,122,44,45,51,67,202,122,44,44,51,67,202,122,44,43,51,67,202,122,44,42,51,67,202,122,44,41,51,67,202,122,44,40,51,67,202,122,44,39,51,67,202,122,44,38,51,67,202,122,44,37,51,67,202,122,44,36,51,67,202,122,44,35,51,67,202,122,44,34,51,67,202,122,44,33,51,67,202,122,44,32,51,67,202,122,44,31,51,67,202,122,44,30,51,67,202,122,44,29,51,67,202,122,44,28,51,67,202,122,44,27,51,67,202,122,44,26,51,67,202,122,44,25,51,67,202,122,44,24,51,67,202,122,44,23,51,67,202,122,44,22,51,67,202,122,44,21,51,67,202,122,44,20,51,67,202,122,44,19,51,67,202,122,44,18,51,67,202,122,44,17,51,67,202,122,44,16,51,67,202,122,44,15,51,67,202,122,44,14,51,67,202,122,44,13,51,67,202,122,44,12,51,67,202,122,44,11,51,67,202,122,44,10,51,67,202,122,44,9,51,67,202,122,44,8,51,67,202,122,44,7,51,67,202,122,44,6,51,67,202,122,44,5,51,67,202,122,44,4,51,67,202,122,44,3,51,67,202,122,44,2,51,67,202,122,44,1,51,67,202,122,44,0,51,67,202,122,44,-1,51,67,202,122,44,-2,51,67,202,122,44,-3,51,67,202,122,44,-4,51,67,202,122,44,-5,51,67,202,122,44,-6,51,67,202,122,44,51,50,67,202,122,44,-6,50,67,202,122,44,51,49,67,202,122,44,-6,49,67,202,122,44,51,48,67,202,122,44,-6,48,67,202,122,44,51,47,67,202,122,44,-6,47,67,202,122,44,51,46,67,202,122,44,-6,46,67,202,122,44,51,45,67,202,122,44,-6,45,67,202,122,44,51,44,67,202,122,44,-6,44,67,202,122,44,51,43,67,202,122,44,-6,43,67,202,122,44,51,42,67,202,122,44,-6,42,67,202,122,44,51,41,67,202,122,44,-6,41,67,202,122,44,51,40,67,202,122,44,-6,40,67,202,122,44,51,39,67,202,122,44,-6,39,67,202,122,44,51,38,67,202,122,44,-6,38,67,202,122,44,51,37,67,202,122,44,-6,37,67,202,122,44,51,36,67,202,122,44,-6,36,67,202,122,44,84,15,1,202,122,44,-39,16,1,202,122,44,51,35,67,202,122,44,-6,35,67,202,122,44,51,34,67,202,122,44,-6,34,67,202,122,44,51,33,67,202,122,44,-6,33,67,202,122,44,51,32,67,202,122,44,-6,32,67,202,122,44,51,31,67,202,122,44,-6,31,67,202,122,44,51,30,67,202,122,44,-6,30,67,202,122,44,51,29,67,202,122,44,-6,29,67,202,122,44,51,28,67,202,122,44,-6,28,67,202,122,44,51,27,67,202,122,44,-6,27,67,202,122,44,51,26,67,202,122,44,-6,26,67,202,122,44,51,25,67,202,122,44,-6,25,67,202,122,44,51,24,67,202,122,44,-6,24,67,202,122,44,51,23,67,202,122,44,-6,23,67,202,122,44,51,22,67,202,122,44,-6,22,67,202,122,44,51,21,67,202,122,44,-6,21,67,202,122,44,51,20,67,202,122,44,-6,20,67,202,122,44,51,19,67,202,122,44,-6,19,67,202,122,44,51,18,67,202,122,44,-6,18,67,202,122,44,51,17,67,202,122,44,-6,17,67,202,122,44,51,16,67,202,122,44,-6,16,67,202,122,44,51,15,67,202,122,44,-6,15,67,202,122,44,51,14,67,202,122,44,-6,14,67,202,122,44,51,13,67,202,122,44,-6,13,67,202,122,44,51,12,67,202,122,44,-6,12,67,202,122,44,51,11,67,202,122,44,-6,11,67,202,122,44,51,10,67,202,122,44,-6,10,67,202,122,44,51,9,67,202,122,44,-6,9,67,202,122,44,51,8,67,202,122,44,-6,8,67,202,122,44,51,7,67,202,122,44,-6,7,67,202,122,44,51,6,67,202,122,44,-6,6,67,202,122,44,51,5,67,202,122,44,-6,5,67,202,122,44,51,4,67,202,122,44,-6,4,67,202,122,44,51,3,67,202,122,44,-6,3,67,202,122,44,51,2,67,202,122,44,-6,2,67,202,122,44,51,1,67,202,122,44,-6,1,67,202,122,44,51,0,67,202,122,44,-6,0,67,202,122,44,51,-1,67,202,122,44,-6,-1,67,202,122,44,51,-2,67,202,122,44,-6,-2,67,202,122,44,51,-3,67,202,122,44,-6,-3,67,202,122,44,51,-4,67,202,122,44,-6,-4,67,202,122,44,51,-5,67,202,122,44,-6,-5,67,202,122,44,51,-6,67,202,122,44,50,-6,67,202,122,44,49,-6,67,202,122,44,48,-6,67,202,122,44,47,-6,67,202,122,44,46,-6,67,202,122,44,45,-6,67,202,122,44,44,-6,67,202,122,44,43,-6,67,202,122,44,42,-6,67,202,122,44,41,-6,67,202,122,44,40,-6,67,202,122,44,39,-6,67,202,122,44,38,-6,67,202,122,44,37,-6,67,202,122,44,36,-6,67,202,122,44,35,-6,67,202,122,44,34,-6,67,202,122,44,33,-6,67,202,122,44,32,-6,67,202,122,44,31,-6,67,202,122,44,30,-6,67,202,122,44,29,-6,67,202,122,44,28,-6,67,202,122,44,27,-6,67,202,122,44,26,-6,67,202,122,44,25,-6,67,202,122,44,24,-6,67,202,122,44,23,-6,67,202,122,44,22,-6,67,202,122,44,21,-6,67,202,122,44,20,-6,67,202,122,44,19,-6,67,202,122,44,18,-6,67,202,122,44,17,-6,67,202,122,44,16,-6,67,202,122,44,15,-6,67,202,122,44,14,-6,67,202,122,44,13,-6,67,202,122,44,12,-6,67,202,122,44,84,16,1,202,122,44,-39,17,1,202,122,44,11,-6,67,202,122,44,10,-6,67,202,122,44,9,-6,67,202,122,44,8,-6,67,202,122,44,7,-6,67,202,122,44,6,-6,67,202,122,44,5,-6,67,202,122,44,4,-6,67,202,122,44,3,-6,67,202,122,44,2,-6,67,202,122,44,1,-6,67,202,122,44,0,-6,67,202,122,44,-1,-6,67,202,122,44,-2,-6,67,202,122,44,-3,-6,67,202,122,44,-4,-6,67,202,122,44,-5,-6,67,202,122,44,-6,-6,67,202,122,44,52,52,66,202,122,44,51,52,66,202,122,44,50,52,66,202,122,44,49,52,66,202,122,44,48,52,66,202,122,44,47,52,66,202,122,44,46,52,66,202,122,44,45,52,66,202,122,44,44,52,66,202,122,44,43,52,66,202,122,44,42,52,66,202,122,44,41,52,66,202,122,44,40,52,66,202,122,44,39,52,66,202,122,44,38,52,66,202,122,44,37,52,66,202,122,44,36,52,66,202,122,44,35,52,66,202,122,44,34,52,66,202,122,44,33,52,66,202,122,44,32,52,66,202,122,44,31,52,66,202,122,44,30,52,66,202,122,44,29,52,66,202,122,44,28,52,66,202,122,44,27,52,66,202,122,44,26,52,66,202,122,44,25,52,66,202,122,44,24,52,66,202,122,44,23,52,66,202,122,44,22,52,66,202,122,44,21,52,66,202,122,44,20,52,66,202,122,44,19,52,66,202,122,44,18,52,66,202,122,44,17,52,66,202,122,44,16,52,66,202,122,44,15,52,66,202,122,44,14,52,66,202,122,44,13,52,66,202,122,44,12,52,66,202,122,44,11,52,66,202,122,44,10,52,66,202,122,44,9,52,66,202,122,44,8,52,66,202,122,44,7,52,66,202,122,44,6,52,66,202,122,44,5,52,66,202,122,44,4,52,66,202,122,44,3,52,66,202,122,44,2,52,66,202,122,44,1,52,66,202,122,44,0,52,66,202,122,44,-1,52,66,202,122,44,-2,52,66,202,122,44,-3,52,66,202,122,44,-4,52,66,202,122,44,-5,52,66,202,122,44,-6,52,66,202,122,44,-7,52,66,202,122,44,52,51,66,202,122,44,-7,51,66,202,122,44,52,50,66,202,122,44,-7,50,66,202,122,44,52,49,66,202,122,44,-7,49,66,202,122,44,52,48,66,202,122,44,-7,48,66,202,122,44,52,47,66,202,122,44,-7,47,66,202,122,44,52,46,66,202,122,44,-7,46,66,202,122,44,52,45,66,202,122,44,-7,45,66,202,122,44,52,44,66,202,122,44,-7,44,66,202,122,44,52,43,66,202,122,44,-7,43,66,202,122,44,52,42,66,202,122,44,-7,42,66,202,122,44,52,41,66,202,122,44,-7,41,66,202,122,44,52,40,66,202,122,44,-7,40,66,202,122,44,52,39,66,202,122,44,-7,39,66,202,122,44,52,38,66,202,122,44,-7,38,66,202,122,44,52,37,66,202,122,44,-7,37,66,202,122,44,52,36,66,202,122,44,-7,36,66,202,122,44,52,35,66,202,122,44,-7,35,66,202,122,44,52,34,66,202,122,44,-7,34,66,202,122,44,52,33,66,202,122,44,-7,33,66,202,122,44,52,32,66,202,122,44,-7,32,66,202,122,44,52,31,66,202,122,44,-7,31,66,202,122,44,52,30,66,202,122,44,-7,30,66,202,122,44,84,17,1,202,122,44,-39,18,1,202,122,44,52,29,66,202,122,44,-7,29,66,202,122,44,52,28,66,202,122,44,-7,28,66,202,122,44,52,27,66,202,122,44,-7,27,66,202,122,44,52,26,66,202,122,44,-7,26,66,202,122,44,52,25,66,202,122,44,-7,25,66,202,122,44,52,24,66,202,122,44,-7,24,66,202,122,44,52,23,66,202,122,44,-7,23,66,202,122,44,52,22,66,202,122,44,-7,22,66,202,122,44,52,21,66,202,122,44,-7,21,66,202,122,44,52,20,66,202,122,44,-7,20,66,202,122,44,52,19,66,202,122,44,-7,19,66,202,122,44,52,18,66,202,122,44,-7,18,66,202,122,44,52,17,66,202,122,44,-7,17,66,202,122,44,52,16,66,202,122,44,-7,16,66,202,122,44,52,15,66,202,122,44,-7,15,66,202,122,44,52,14,66,202,122,44,-7,14,66,202,122,44,52,13,66,202,122,44,-7,13,66,202,122,44,52,12,66,202,122,44,-7,12,66,202,122,44,52,11,66,202,122,44,-7,11,66,202,122,44,52,10,66,202,122,44,-7,10,66,202,122,44,52,9,66,202,122,44,-7,9,66,202,122,44,52,8,66,202,122,44,-7,8,66,202,122,44,52,7,66,202,122,44,-7,7,66,202,122,44,52,6,66,202,122,44,-7,6,66,202,122,44,52,5,66,202,122,44,-7,5,66,202,122,44,52,4,66,202,122,44,-7,4,66,202,122,44,52,3,66,202,122,44,-7,3,66,202,122,44,52,2,66,202,122,44,-7,2,66,202,122,44,52,1,66,202,122,44,-7,1,66,202,122,44,52,0,66,202,122,44,-7,0,66,202,122,44,52,-1,66,202,122,44,-7,-1,66,202,122,44,52,-2,66,202,122,44,-7,-2,66,202,122,44,52,-3,66,202,122,44,-7,-3,66,202,122,44,52,-4,66,202,122,44,-7,-4,66,202,122,44,52,-5,66,202,122,44,-7,-5,66,202,122,44,52,-6,66,202,122,44,-7,-6,66,202,122,44,52,-7,66,202,122,44,51,-7,66,202,122,44,50,-7,66,202,122,44,49,-7,66,202,122,44,48,-7,66,202,122,44,47,-7,66,202,122,44,46,-7,66,202,122,44,45,-7,66,202,122,44,44,-7,66,202,122,44,43,-7,66,202,122,44,42,-7,66,202,122,44,41,-7,66,202,122,44,40,-7,66,202,122,44,39,-7,66,202,122,44,38,-7,66,202,122,44,37,-7,66,202,122,44,36,-7,66,202,122,44,35,-7,66,202,122,44,34,-7,66,202,122,44,33,-7,66,202,122,44,32,-7,66,202,122,44,31,-7,66,202,122,44,30,-7,66,202,122,44,29,-7,66,202,122,44,28,-7,66,202,122,44,27,-7,66,202,122,44,26,-7,66,202,122,44,25,-7,66,202,122,44,24,-7,66,202,122,44,23,-7,66,202,122,44,22,-7,66,202,122,44,21,-7,66,202,122,44,20,-7,66,202,122,44,19,-7,66,202,122,44,18,-7,66,202,122,44,17,-7,66,202,122,44,16,-7,66,202,122,44,15,-7,66,202,122,44,14,-7,66,202,122,44,13,-7,66,202,122,44,12,-7,66,202,122,44,11,-7,66,202,122,44,10,-7,66,202,122,44,9,-7,66,202,122,44,8,-7,66,202,122,44,7,-7,66,202,122,44,6,-7,66,202,122,44,5,-7,66,202,122,44,4,-7,66,202,122,44,3,-7,66,202,122,44,84,18,1,202,122,44,-39,19,1,202,122,44,2,-7,66,202,122,44,1,-7,66,202,122,44,0,-7,66,202,122,44,-1,-7,66,202,122,44,-2,-7,66,202,122,44,-3,-7,66,202,122,44,-4,-7,66,202,122,44,-5,-7,66,202,122,44,-6,-7,66,202,122,44,-7,-7,66,202,122,44,52,52,65,202,122,44,51,52,65,202,122,44,50,52,65,202,122,44,49,52,65,202,122,44,48,52,65,202,122,44,47,52,65,202,122,44,46,52,65,202,122,44,45,52,65,202,122,44,44,52,65,202,122,44,43,52,65,202,122,44,42,52,65,202,122,44,41,52,65,202,122,44,40,52,65,202,122,44,39,52,65,202,122,44,38,52,65,202,122,44,37,52,65,202,122,44,36,52,65,202,122,44,35,52,65,202,122,44,34,52,65,202,122,44,33,52,65,202,122,44,32,52,65,202,122,44,31,52,65,202,122,44,30,52,65,202,122,44,29,52,65,202,122,44,28,52,65,202,122,44,27,52,65,202,122,44,26,52,65,202,122,44,25,52,65,202,122,44,24,52,65,202,122,44,23,52,65,202,122,44,22,52,65,202,122,44,21,52,65,202,122,44,20,52,65,202,122,44,19,52,65,202,122,44,18,52,65,202,122,44,17,52,65,202,122,44,16,52,65,202,122,44,15,52,65,202,122,44,14,52,65,202,122,44,13,52,65,202,122,44,12,52,65,202,122,44,11,52,65,202,122,44,10,52,65,202,122,44,9,52,65,202,122,44,8,52,65,202,122,44,7,52,65,202,122,44,6,52,65,202,122,44,5,52,65,202,122,44,4,52,65,202,122,44,3,52,65,202,122,44,2,52,65,202,122,44,1,52,65,202,122,44,0,52,65,202,122,44,-1,52,65,202,122,44,-2,52,65,202,122,44,-3,52,65,202,122,44,-4,52,65,202,122,44,-5,52,65,202,122,44,-6,52,65,202,122,44,-7,52,65,202,122,44,52,51,65,202,122,44,-7,51,65,202,122,44,52,50,65,202,122,44,-7,50,65,202,122,44,52,49,65,202,122,44,-7,49,65,202,122,44,52,48,65,202,122,44,-7,48,65,202,122,44,52,47,65,202,122,44,-7,47,65,202,122,44,52,46,65,202,122,44,-7,46,65,202,122,44,52,45,65,202,122,44,-7,45,65,202,122,44,52,44,65,202,122,44,-7,44,65,202,122,44,52,43,65,202,122,44,-7,43,65,202,122,44,52,42,65,202,122,44,-7,42,65,202,122,44,52,41,65,202,122,44,-7,41,65,202,122,44,52,40,65,202,122,44,-7,40,65,202,122,44,52,39,65,202,122,44,-7,39,65,202,122,44,52,38,65,202,122,44,-7,38,65,202,122,44,52,37,65,202,122,44,-7,37,65,202,122,44,52,36,65,202,122,44,-7,36,65,202,122,44,52,35,65,202,122,44,-7,35,65,202,122,44,52,34,65,202,122,44,-7,34,65,202,122,44,52,33,65,202,122,44,-7,33,65,202,122,44,52,32,65,202,122,44,-7,32,65,202,122,44,52,31,65,202,122,44,-7,31,65,202,122,44,52,30,65,202,122,44,-7,30,65,202,122,44,52,29,65,202,122,44,-7,29,65,202,122,44,52,28,65,202,122,44,-7,28,65,202,122,44,52,27,65,202,122,44,-7,27,65,202,122,44,52,26,65,202,122,44,-7,26,65,202,122,44,84,19,1,202,122,44,-39,20,1,202,122,44,52,25,65,202,122,44,-7,25,65,202,122,44,52,24,65,202,122,44,-7,24,65,202,122,44,52,23,65,202,122,44,-7,23,65,202,122,44,52,22,65,202,122,44,-7,22,65,202,122,44,52,21,65,202,122,44,-7,21,65,202,122,44,52,20,65,202,122,44,-7,20,65,202,122,44,52,19,65,202,122,44,-7,19,65,202,122,44,52,18,65,202,122,44,-7,18,65,202,122,44,52,17,65,202,122,44,-7,17,65,202,122,44,52,16,65,202,122,44,-7,16,65,202,122,44,52,15,65,202,122,44,-7,15,65,202,122,44,52,14,65,202,122,44,-7,14,65,202,122,44,52,13,65,202,122,44,-7,13,65,202,122,44,52,12,65,202,122,44,-7,12,65,202,122,44,52,11,65,202,122,44,-7,11,65,202,122,44,52,10,65,202,122,44,-7,10,65,202,122,44,52,9,65,202,122,44,-7,9,65,202,122,44,52,8,65,202,122,44,-7,8,65,202,122,44,52,7,65,202,122,44,-7,7,65,202,122,44,52,6,65,202,122,44,-7,6,65,202,122,44,52,5,65,202,122,44,-7,5,65,202,122,44,52,4,65,202,122,44,-7,4,65,202,122,44,52,3,65,202,122,44,-7,3,65,202,122,44,52,2,65,202,122,44,-7,2,65,202,122,44,52,1,65,202,122,44,-7,1,65,202,122,44,52,0,65,202,122,44,-7,0,65,202,122,44,52,-1,65,202,122,44,-7,-1,65,202,122,44,52,-2,65,202,122,44,-7,-2,65,202,122,44,52,-3,65,202,122,44,-7,-3,65,202,122,44,52,-4,65,202,122,44,-7,-4,65,202,122,44,52,-5,65,202,122,44,-7,-5,65,202,122,44,52,-6,65,202,122,44,-7,-6,65,202,122,44,52,-7,65,202,122,44,51,-7,65,202,122,44,50,-7,65,202,122,44,49,-7,65,202,122,44,48,-7,65,202,122,44,47,-7,65,202,122,44,46,-7,65,202,122,44,45,-7,65,202,122,44,44,-7,65,202,122,44,43,-7,65,202,122,44,42,-7,65,202,122,44,41,-7,65,202,122,44,40,-7,65,202,122,44,39,-7,65,202,122,44,38,-7,65,202,122,44,37,-7,65,202,122,44,36,-7,65,202,122,44,35,-7,65,202,122,44,34,-7,65,202,122,44,33,-7,65,202,122,44,32,-7,65,202,122,44,31,-7,65,202,122,44,30,-7,65,202,122,44,29,-7,65,202,122,44,28,-7,65,202,122,44,27,-7,65,202,122,44,26,-7,65,202,122,44,25,-7,65,202,122,44,24,-7,65,202,122,44,23,-7,65,202,122,44,22,-7,65,202,122,44,21,-7,65,202,122,44,20,-7,65,202,122,44,19,-7,65,202,122,44,18,-7,65,202,122,44,17,-7,65,202,122,44,16,-7,65,202,122,44,15,-7,65,202,122,44,14,-7,65,202,122,44,13,-7,65,202,122,44,12,-7,65,202,122,44,11,-7,65,202,122,44,10,-7,65,202,122,44,9,-7,65,202,122,44,8,-7,65,202,122,44,7,-7,65,202,122,44,6,-7,65,202,122,44,5,-7,65,202,122,44,4,-7,65,202,122,44,3,-7,65,202,122,44,2,-7,65,202,122,44,1,-7,65,202,122,44,0,-7,65,202,122,44,-1,-7,65,202,122,44,-2,-7,65,202,122,44,-3,-7,65,202,122,44,-4,-7,65,202,122,44,-5,-7,65,202,122,44,84,20,1,202,122,44,-39,21,1,202,122,44,-6,-7,65,202,122,44,-7,-7,65,202,122,44,53,53,64,202,122,44,52,53,64,202,122,44,51,53,64,202,122,44,50,53,64,202,122,44,49,53,64,202,122,44,48,53,64,202,122,44,47,53,64,202,122,44,46,53,64,202,122,44,45,53,64,202,122,44,44,53,64,202,122,44,43,53,64,202,122,44,42,53,64,202,122,44,41,53,64,202,122,44,40,53,64,202,122,44,39,53,64,202,122,44,38,53,64,202,122,44,37,53,64,202,122,44,36,53,64,202,122,44,35,53,64,202,122,44,34,53,64,202,122,44,33,53,64,202,122,44,32,53,64,202,122,44,31,53,64,202,122,44,30,53,64,202,122,44,29,53,64,202,122,44,28,53,64,202,122,44,27,53,64,202,122,44,26,53,64,202,122,44,25,53,64,202,122,44,24,53,64,202,122,44,23,53,64,202,122,44,22,53,64,202,122,44,21,53,64,202,122,44,20,53,64,202,122,44,19,53,64,202,122,44,18,53,64,202,122,44,17,53,64,202,122,44,16,53,64,202,122,44,15,53,64,202,122,44,14,53,64,202,122,44,13,53,64,202,122,44,12,53,64,202,122,44,11,53,64,202,122,44,10,53,64,202,122,44,9,53,64,202,122,44,8,53,64,202,122,44,7,53,64,202,122,44,6,53,64,202,122,44,5,53,64,202,122,44,4,53,64,202,122,44,3,53,64,202,122,44,2,53,64,202,122,44,1,53,64,202,122,44,0,53,64,202,122,44,-1,53,64,202,122,44,-2,53,64,202,122,44,-3,53,64,202,122,44,-4,53,64,202,122,44,-5,53,64,202,122,44,-6,53,64,202,122,44,-7,53,64,202,122,44,-8,53,64,202,122,44,53,52,64,202,122,44,-8,52,64,202,122,44,53,51,64,202,122,44,-8,51,64,202,122,44,53,50,64,202,122,44,-8,50,64,202,122,44,53,49,64,202,122,44,-8,49,64,202,122,44,53,48,64,202,122,44,-8,48,64,202,122,44,53,47,64,202,122,44,-8,47,64,202,122,44,53,46,64,202,122,44,-8,46,64,202,122,44,53,45,64,202,122,44,-8,45,64,202,122,44,53,44,64,202,122,44,-8,44,64,202,122,44,53,43,64,202,122,44,-8,43,64,202,122,44,53,42,64,202,122,44,-8,42,64,202,122,44,53,41,64,202,122,44,-8,41,64,202,122,44,53,40,64,202,122,44,-8,40,64,202,122,44,53,39,64,202,122,44,-8,39,64,202,122,44,53,38,64,202,122,44,-8,38,64,202,122,44,53,37,64,202,122,44,-8,37,64,202,122,44,53,36,64,202,122,44,-8,36,64,202,122,44,53,35,64,202,122,44,-8,35,64,202,122,44,53,34,64,202,122,44,-8,34,64,202,122,44,53,33,64,202,122,44,-8,33,64,202,122,44,53,32,64,202,122,44,-8,32,64,202,122,44,53,31,64,202,122,44,-8,31,64,202,122,44,53,30,64,202,122,44,-8,30,64,202,122,44,53,29,64,202,122,44,-8,29,64,202,122,44,53,28,64,202,122,44,-8,28,64,202,122,44,53,27,64,202,122,44,-8,27,64,202,122,44,53,26,64,202,122,44,-8,26,64,202,122,44,53,25,64,202,122,44,-8,25,64,202,122,44,53,24,64,202,122,44,-8,24,64,202,122,44,84,21,1,202,122,44,-39,22,1,202,122,44,53,23,64,202,122,44,-8,23,64,202,122,44,53,22,64,202,122,44,-8,22,64,202,122,44,53,21,64,202,122,44,-8,21,64,202,122,44,53,20,64,202,122,44,-8,20,64,202,122,44,53,19,64,202,122,44,-8,19,64,202,122,44,53,18,64,202,122,44,-8,18,64,202,122,44,53,17,64,202,122,44,-8,17,64,202,122,44,53,16,64,202,122,44,-8,16,64,202,122,44,53,15,64,202,122,44,-8,15,64,202,122,44,53,14,64,202,122,44,-8,14,64,202,122,44,53,13,64,202,122,44,-8,13,64,202,122,44,53,12,64,202,122,44,-8,12,64,202,122,44,53,11,64,202,122,44,-8,11,64,202,122,44,53,10,64,202,122,44,-8,10,64,202,122,44,53,9,64,202,122,44,-8,9,64,202,122,44,53,8,64,202,122,44,-8,8,64,202,122,44,53,7,64,202,122,44,-8,7,64,202,122,44,53,6,64,202,122,44,-8,6,64,202,122,44,53,5,64,202,122,44,-8,5,64,202,122,44,53,4,64,202,122,44,-8,4,64,202,122,44,53,3,64,202,122,44,-8,3,64,202,122,44,53,2,64,202,122,44,-8,2,64,202,122,44,53,1,64,202,122,44,-8,1,64,202,122,44,53,0,64,202,122,44,-8,0,64,202,122,44,53,-1,64,202,122,44,-8,-1,64,202,122,44,53,-2,64,202,122,44,-8,-2,64,202,122,44,53,-3,64,202,122,44,-8,-3,64,202,122,44,53,-4,64,202,122,44,-8,-4,64,202,122,44,53,-5,64,202,122,44,-8,-5,64,202,122,44,53,-6,64,202,122,44,-8,-6,64,202,122,44,53,-7,64,202,122,44,-8,-7,64,202,122,44,53,-8,64,202,122,44,52,-8,64,202,122,44,51,-8,64,202,122,44,50,-8,64,202,122,44,49,-8,64,202,122,44,48,-8,64,202,122,44,47,-8,64,202,122,44,46,-8,64,202,122,44,45,-8,64,202,122,44,44,-8,64,202,122,44,43,-8,64,202,122,44,42,-8,64,202,122,44,41,-8,64,202,122,44,40,-8,64,202,122,44,39,-8,64,202,122,44,38,-8,64,202,122,44,37,-8,64,202,122,44,36,-8,64,202,122,44,35,-8,64,202,122,44,34,-8,64,202,122,44,33,-8,64,202,122,44,32,-8,64,202,122,44,31,-8,64,202,122,44,30,-8,64,202,122,44,29,-8,64,202,122,44,28,-8,64,202,122,44,27,-8,64,202,122,44,26,-8,64,202,122,44,25,-8,64,202,122,44,24,-8,64,202,122,44,23,-8,64,202,122,44,22,-8,64,202,122,44,21,-8,64,202,122,44,20,-8,64,202,122,44,19,-8,64,202,122,44,18,-8,64,202,122,44,17,-8,64,202,122,44,16,-8,64,202,122,44,15,-8,64,202,122,44,14,-8,64,202,122,44,13,-8,64,202,122,44,12,-8,64,202,122,44,11,-8,64,202,122,44,10,-8,64,202,122,44,9,-8,64,202,122,44,8,-8,64,202,122,44,7,-8,64,202,122,44,6,-8,64,202,122,44,5,-8,64,202,122,44,4,-8,64,202,122,44,3,-8,64,202,122,44,2,-8,64,202,122,44,1,-8,64,202,122,44,0,-8,64,202,122,44,-1,-8,64,202,122,44,-2,-8,64,202,122,44,-3,-8,64,202,122,44,-4,-8,64,202,122,44,-5,-8,64,202,122,44,-6,-8,64,202,122,44,84,22,1,202,122,44,-39,23,1,202,122,44,-7,-8,64,202,122,44,-8,-8,64,202,122,44,53,53,63,202,122,44,52,53,63,202,122,44,51,53,63,202,122,44,50,53,63,202,122,44,49,53,63,202,122,44,48,53,63,202,122,44,47,53,63,202,122,44,46,53,63,202,122,44,45,53,63,202,122,44,44,53,63,202,122,44,43,53,63,202,122,44,42,53,63,202,122,44,41,53,63,202,122,44,40,53,63,202,122,44,39,53,63,202,122,44,38,53,63,202,122,44,37,53,63,202,122,44,36,53,63,202,122,44,35,53,63,202,122,44,34,53,63,202,122,44,33,53,63,202,122,44,32,53,63,202,122,44,31,53,63,202,122,44,30,53,63,202,122,44,29,53,63,202,122,44,28,53,63,202,122,44,27,53,63,202,122,44,26,53,63,202,122,44,25,53,63,202,122,44,24,53,63,202,122,44,23,53,63,202,122,44,22,53,63,202,122,44,21,53,63,202,122,44,20,53,63,202,122,44,19,53,63,202,122,44,18,53,63,202,122,44,17,53,63,202,122,44,16,53,63,202,122,44,15,53,63,202,122,44,14,53,63,202,122,44,13,53,63,202,122,44,12,53,63,202,122,44,11,53,63,202,122,44,10,53,63,202,122,44,9,53,63,202,122,44,8,53,63,202,122,44,7,53,63,202,122,44,6,53,63,202,122,44,5,53,63,202,122,44,4,53,63,202,122,44,3,53,63,202,122,44,2,53,63,202,122,44,1,53,63,202,122,44,0,53,63,202,122,44,-1,53,63,202,122,44,-2,53,63,202,122,44,-3,53,63,202,122,44,-4,53,63,202,122,44,-5,53,63,202,122,44,-6,53,63,202,122,44,-7,53,63,202,122,44,-8,53,63,202,122,44,53,52,63,202,122,44,-8,52,63,202,122,44,53,51,63,202,122,44,-8,51,63,202,122,44,53,50,63,202,122,44,-8,50,63,202,122,44,53,49,63,202,122,44,-8,49,63,202,122,44,53,48,63,202,122,44,-8,48,63,202,122,44,53,47,63,202,122,44,-8,47,63,202,122,44,53,46,63,202,122,44,-8,46,63,202,122,44,53,45,63,202,122,44,-8,45,63,202,122,44,53,44,63,202,122,44,-8,44,63,202,122,44,53,43,63,202,122,44,-8,43,63,202,122,44,53,42,63,202,122,44,-8,42,63,202,122,44,53,41,63,202,122,44,-8,41,63,202,122,44,53,40,63,202,122,44,-8,40,63,202,122,44,53,39,63,202,122,44,-8,39,63,202,122,44,53,38,63,202,122,44,-8,38,63,202,122,44,53,37,63,202,122,44,-8,37,63,202,122,44,53,36,63,202,122,44,-8,36,63,202,122,44,53,35,63,202,122,44,-8,35,63,202,122,44,53,34,63,202,122,44,-8,34,63,202,122,44,53,33,63,202,122,44,-8,33,63,202,122,44,53,32,63,202,122,44,-8,32,63,202,122,44,53,31,63,202,122,44,-8,31,63,202,122,44,53,30,63,202,122,44,-8,30,63,202,122,44,53,29,63,202,122,44,-8,29,63,202,122,44,53,28,63,202,122,44,-8,28,63,202,122,44,53,27,63,202,122,44,-8,27,63,202,122,44,53,26,63,202,122,44,-8,26,63,202,122,44,53,25,63,202,122,44,-8,25,63,202,122,44,53,24,63,202,122,44,-8,24,63,202,122,44,84,23,1,202,122,44,-39,24,1,202,122,44,53,23,63,202,122,44,-8,23,63,202,122,44,53,22,63,202,122,44,-8,22,63,202,122,44,53,21,63,202,122,44,-8,21,63,202,122,44,53,20,63,202,122,44,-8,20,63,202,122,44,53,19,63,202,122,44,-8,19,63,202,122,44,53,18,63,202,122,44,-8,18,63,202,122,44,53,17,63,202,122,44,-8,17,63,202,122,44,53,16,63,202,122,44,-8,16,63,202,122,44,53,15,63,202,122,44,-8,15,63,202,122,44,53,14,63,202,122,44,-8,14,63,202,122,44,53,13,63,202,122,44,-8,13,63,202,122,44,53,12,63,202,122,44,-8,12,63,202,122,44,53,11,63,202,122,44,-8,11,63,202,122,44,53,10,63,202,122,44,-8,10,63,202,122,44,53,9,63,202,122,44,-8,9,63,202,122,44,53,8,63,202,122,44,-8,8,63,202,122,44,53,7,63,202,122,44,-8,7,63,202,122,44,53,6,63,202,122,44,-8,6,63,202,122,44,53,5,63,202,122,44,-8,5,63,202,122,44,53,4,63,202,122,44,-8,4,63,202,122,44,53,3,63,202,122,44,-8,3,63,202,122,44,53,2,63,202,122,44,-8,2,63,202,122,44,53,1,63,202,122,44,-8,1,63,202,122,44,53,0,63,202,122,44,-8,0,63,202,122,44,53,-1,63,202,122,44,-8,-1,63,202,122,44,53,-2,63,202,122,44,-8,-2,63,202,122,44,53,-3,63,202,122,44,-8,-3,63,202,122,44,53,-4,63,202,122,44,-8,-4,63,202,122,44,53,-5,63,202,122,44,-8,-5,63,202,122,44,53,-6,63,202,122,44,-8,-6,63,202,122,44,53,-7,63,202,122,44,-8,-7,63,202,122,44,53,-8,63,202,122,44,52,-8,63,202,122,44,51,-8,63,202,122,44,50,-8,63,202,122,44,49,-8,63,202,122,44,48,-8,63,202,122,44,47,-8,63,202,122,44,46,-8,63,202,122,44,45,-8,63,202,122,44,44,-8,63,202,122,44,43,-8,63,202,122,44,42,-8,63,202,122,44,41,-8,63,202,122,44,40,-8,63,202,122,44,39,-8,63,202,122,44,38,-8,63,202,122,44,37,-8,63,202,122,44,36,-8,63,202,122,44,35,-8,63,202,122,44,34,-8,63,202,122,44,33,-8,63,202,122,44,32,-8,63,202,122,44,31,-8,63,202,122,44,30,-8,63,202,122,44,29,-8,63,202,122,44,28,-8,63,202,122,44,27,-8,63,202,122,44,26,-8,63,202,122,44,25,-8,63,202,122,44,24,-8,63,202,122,44,23,-8,63,202,122,44,22,-8,63,202,122,44,21,-8,63,202,122,44,20,-8,63,202,122,44,19,-8,63,202,122,44,18,-8,63,202,122,44,17,-8,63,202,122,44,16,-8,63,202,122,44,15,-8,63,202,122,44,14,-8,63,202,122,44,13,-8,63,202,122,44,12,-8,63,202,122,44,11,-8,63,202,122,44,10,-8,63,202,122,44,9,-8,63,202,122,44,8,-8,63,202,122,44,7,-8,63,202,122,44,6,-8,63,202,122,44,5,-8,63,202,122,44,4,-8,63,202,122,44,3,-8,63,202,122,44,2,-8,63,202,122,44,1,-8,63,202,122,44,0,-8,63,202,122,44,-1,-8,63,202,122,44,-2,-8,63,202,122,44,-3,-8,63,202,122,44,-4,-8,63,202,122,44,-5,-8,63,202,122,44,-6,-8,63,202,122,44,84,24,1,202,122,44,-39,25,1,202,122,44,-7,-8,63,202,122,44,-8,-8,63,202,122,44,54,54,62,202,122,44,53,54,62,202,122,44,52,54,62,202,122,44,51,54,62,202,122,44,50,54,62,202,122,44,49,54,62,202,122,44,48,54,62,202,122,44,47,54,62,202,122,44,46,54,62,202,122,44,45,54,62,202,122,44,44,54,62,202,122,44,43,54,62,202,122,44,42,54,62,202,122,44,41,54,62,202,122,44,40,54,62,202,122,44,39,54,62,202,122,44,38,54,62,202,122,44,37,54,62,202,122,44,36,54,62,202,122,44,35,54,62,202,122,44,34,54,62,202,122,44,33,54,62,202,122,44,32,54,62,202,122,44,31,54,62,202,122,44,30,54,62,202,122,44,29,54,62,202,122,44,28,54,62,202,122,44,27,54,62,202,122,44,26,54,62,202,122,44,25,54,62,202,122,44,24,54,62,202,122,44,23,54,62,202,122,44,22,54,62,202,122,44,21,54,62,202,122,44,20,54,62,202,122,44,19,54,62,202,122,44,18,54,62,202,122,44,17,54,62,202,122,44,16,54,62,202,122,44,15,54,62,202,122,44,14,54,62,202,122,44,13,54,62,202,122,44,12,54,62,202,122,44,11,54,62,202,122,44,10,54,62,202,122,44,9,54,62,202,122,44,8,54,62,202,122,44,7,54,62,202,122,44,6,54,62,202,122,44,5,54,62,202,122,44,4,54,62,202,122,44,3,54,62,202,122,44,2,54,62,202,122,44,1,54,62,202,122,44,0,54,62,202,122,44,-1,54,62,202,122,44,-2,54,62,202,122,44,-3,54,62,202,122,44,-4,54,62,202,122,44,-5,54,62,202,122,44,-6,54,62,202,122,44,-7,54,62,202,122,44,-8,54,62,202,122,44,-9,54,62,202,122,44,54,53,62,202,122,44,-9,53,62,202,122,44,54,52,62,202,122,44,-9,52,62,202,122,44,54,51,62,202,122,44,-9,51,62,202,122,44,54,50,62,202,122,44,-9,50,62,202,122,44,54,49,62,202,122,44,-9,49,62,202,122,44,54,48,62,202,122,44,-9,48,62,202,122,44,54,47,62,202,122,44,-9,47,62,202,122,44,54,46,62,202,122,44,-9,46,62,202,122,44,54,45,62,202,122,44,-9,45,62,202,122,44,54,44,62,202,122,44,-9,44,62,202,122,44,54,43,62,202,122,44,-9,43,62,202,122,44,54,42,62,202,122,44,-9,42,62,202,122,44,54,41,62,202,122,44,-9,41,62,202,122,44,54,40,62,202,122,44,-9,40,62,202,122,44,54,39,62,202,122,44,-9,39,62,202,122,44,54,38,62,202,122,44,-9,38,62,202,122,44,54,37,62,202,122,44,-9,37,62,202,122,44,54,36,62,202,122,44,-9,36,62,202,122,44,54,35,62,202,122,44,-9,35,62,202,122,44,54,34,62,202,122,44,-9,34,62,202,122,44,54,33,62,202,122,44,-9,33,62,202,122,44,54,32,62,202,122,44,-9,32,62,202,122,44,54,31,62,202,122,44,-9,31,62,202,122,44,54,30,62,202,122,44,-9,30,62,202,122,44,54,29,62,202,122,44,-9,29,62,202,122,44,54,28,62,202,122,44,-9,28,62,202,122,44,54,27,62,202,122,44,-9,27,62,202,122,44,54,26,62,202,122,44,-9,26,62,202,122,44,84,25,1,202,122,44,-39,26,1,202,122,44,54,25,62,202,122,44,-9,25,62,202,122,44,54,24,62,202,122,44,-9,24,62,202,122,44,54,23,62,202,122,44,-9,23,62,202,122,44,54,22,62,202,122,44,-9,22,62,202,122,44,54,21,62,202,122,44,-9,21,62,202,122,44,54,20,62,202,122,44,-9,20,62,202,122,44,54,19,62,202,122,44,-9,19,62,202,122,44,54,18,62,202,122,44,-9,18,62,202,122,44,54,17,62,202,122,44,-9,17,62,202,122,44,54,16,62,202,122,44,-9,16,62,202,122,44,54,15,62,202,122,44,-9,15,62,202,122,44,54,14,62,202,122,44,-9,14,62,202,122,44,54,13,62,202,122,44,-9,13,62,202,122,44,54,12,62,202,122,44,-9,12,62,202,122,44,54,11,62,202,122,44,-9,11,62,202,122,44,54,10,62,202,122,44,-9,10,62,202,122,44,54,9,62,202,122,44,-9,9,62,202,122,44,54,8,62,202,122,44,-9,8,62,202,122,44,54,7,62,202,122,44,-9,7,62,202,122,44,54,6,62,202,122,44,-9,6,62,202,122,44,54,5,62,202,122,44,-9,5,62,202,122,44,54,4,62,202,122,44,-9,4,62,202,122,44,54,3,62,202,122,44,-9,3,62,202,122,44,54,2,62,202,122,44,-9,2,62,202,122,44,54,1,62,202,122,44,-9,1,62,202,122,44,54,0,62,202,122,44,-9,0,62,202,122,44,54,-1,62,202,122,44,-9,-1,62,202,122,44,54,-2,62,202,122,44,-9,-2,62,202,122,44,54,-3,62,202,122,44,-9,-3,62,202,122,44,54,-4,62,202,122,44,-9,-4,62,202,122,44,54,-5,62,202,122,44,-9,-5,62,202,122,44,54,-6,62,202,122,44,-9,-6,62,202,122,44,54,-7,62,202,122,44,-9,-7,62,202,122,44,54,-8,62,202,122,44,-9,-8,62,202,122,44,54,-9,62,202,122,44,53,-9,62,202,122,44,52,-9,62,202,122,44,51,-9,62,202,122,44,50,-9,62,202,122,44,49,-9,62,202,122,44,48,-9,62,202,122,44,47,-9,62,202,122,44,46,-9,62,202,122,44,45,-9,62,202,122,44,44,-9,62,202,122,44,43,-9,62,202,122,44,42,-9,62,202,122,44,41,-9,62,202,122,44,40,-9,62,202,122,44,39,-9,62,202,122,44,38,-9,62,202,122,44,37,-9,62,202,122,44,36,-9,62,202,122,44,35,-9,62,202,122,44,34,-9,62,202,122,44,33,-9,62,202,122,44,32,-9,62,202,122,44,31,-9,62,202,122,44,30,-9,62,202,122,44,29,-9,62,202,122,44,28,-9,62,202,122,44,27,-9,62,202,122,44,26,-9,62,202,122,44,25,-9,62,202,122,44,24,-9,62,202,122,44,23,-9,62,202,122,44,22,-9,62,202,122,44,21,-9,62,202,122,44,20,-9,62,202,122,44,19,-9,62,202,122,44,18,-9,62,202,122,44,17,-9,62,202,122,44,16,-9,62,202,122,44,15,-9,62,202,122,44,14,-9,62,202,122,44,13,-9,62,202,122,44,12,-9,62,202,122,44,11,-9,62,202,122,44,10,-9,62,202,122,44,9,-9,62,202,122,44,8,-9,62,202,122,44,7,-9,62,202,122,44,6,-9,62,202,122,44,5,-9,62,202,122,44,4,-9,62,202,122,44,3,-9,62,202,122,44,2,-9,62,202,122,44,1,-9,62,202,122,44,84,26,1,202,122,44,-39,27,1,202,122,44,0,-9,62,202,122,44,-1,-9,62,202,122,44,-2,-9,62,202,122,44,-3,-9,62,202,122,44,-4,-9,62,202,122,44,-5,-9,62,202,122,44,-6,-9,62,202,122,44,-7,-9,62,202,122,44,-8,-9,62,202,122,44,-9,-9,62,202,122,44,54,54,61,202,122,44,53,54,61,202,122,44,52,54,61,202,122,44,51,54,61,202,122,44,50,54,61,202,122,44,49,54,61,202,122,44,48,54,61,202,122,44,47,54,61,202,122,44,46,54,61,202,122,44,45,54,61,202,122,44,44,54,61,202,122,44,43,54,61,202,122,44,42,54,61,202,122,44,41,54,61,202,122,44,40,54,61,202,122,44,39,54,61,202,122,44,38,54,61,202,122,44,37,54,61,202,122,44,36,54,61,202,122,44,35,54,61,202,122,44,34,54,61,202,122,44,33,54,61,202,122,44,32,54,61,202,122,44,31,54,61,202,122,44,30,54,61,202,122,44,29,54,61,202,122,44,28,54,61,202,122,44,27,54,61,202,122,44,26,54,61,202,122,44,25,54,61,202,122,44,24,54,61,202,122,44,23,54,61,202,122,44,22,54,61,202,122,44,21,54,61,202,122,44,20,54,61,202,122,44,19,54,61,202,122,44,18,54,61,202,122,44,17,54,61,202,122,44,16,54,61,202,122,44,15,54,61,202,122,44,14,54,61,202,122,44,13,54,61,202,122,44,12,54,61,202,122,44,11,54,61,202,122,44,10,54,61,202,122,44,9,54,61,202,122,44,8,54,61,202,122,44,7,54,61,202,122,44,6,54,61,202,122,44,5,54,61,202,122,44,4,54,61,202,122,44,3,54,61,202,122,44,2,54,61,202,122,44,1,54,61,202,122,44,0,54,61,202,122,44,-1,54,61,202,122,44,-2,54,61,202,122,44,-3,54,61,202,122,44,-4,54,61,202,122,44,-5,54,61,202,122,44,-6,54,61,202,122,44,-7,54,61,202,122,44,-8,54,61,202,122,44,-9,54,61,202,122,44,54,53,61,202,122,44,-9,53,61,202,122,44,54,52,61,202,122,44,-9,52,61,202,122,44,54,51,61,202,122,44,-9,51,61,202,122,44,54,50,61,202,122,44,-9,50,61,202,122,44,54,49,61,202,122,44,-9,49,61,202,122,44,54,48,61,202,122,44,-9,48,61,202,122,44,54,47,61,202,122,44,-9,47,61,202,122,44,54,46,61,202,122,44,-9,46,61,202,122,44,54,45,61,202,122,44,-9,45,61,202,122,44,54,44,61,202,122,44,-9,44,61,202,122,44,54,43,61,202,122,44,-9,43,61,202,122,44,54,42,61,202,122,44,-9,42,61,202,122,44,54,41,61,202,122,44,-9,41,61,202,122,44,54,40,61,202,122,44,-9,40,61,202,122,44,54,39,61,202,122,44,-9,39,61,202,122,44,54,38,61,202,122,44,-9,38,61,202,122,44,54,37,61,202,122,44,-9,37,61,202,122,44,54,36,61,202,122,44,-9,36,61,202,122,44,54,35,61,202,122,44,-9,35,61,202,122,44,54,34,61,202,122,44,-9,34,61,202,122,44,54,33,61,202,122,44,-9,33,61,202,122,44,54,32,61,202,122,44,-9,32,61,202,122,44,54,31,61,202,122,44,-9,31,61,202,122,44,54,30,61,202,122,44,-9,30,61,202,122,44,84,27,1,202,122,44,-39,28,1,202,122,44,54,29,61,202,122,44,-9,29,61,202,122,44,54,28,61,202,122,44,-9,28,61,202,122,44,54,27,61,202,122,44,-9,27,61,202,122,44,54,26,61,202,122,44,-9,26,61,202,122,44,54,25,61,202,122,44,-9,25,61,202,122,44,54,24,61,202,122,44,-9,24,61,202,122,44,54,23,61,202,122,44,-9,23,61,202,122,44,54,22,61,202,122,44,-9,22,61,202,122,44,54,21,61,202,122,44,-9,21,61,202,122,44,54,20,61,202,122,44,-9,20,61,202,122,44,54,19,61,202,122,44,-9,19,61,202,122,44,54,18,61,202,122,44,-9,18,61,202,122,44,54,17,61,202,122,44,-9,17,61,202,122,44,54,16,61,202,122,44,-9,16,61,202,122,44,54,15,61,202,122,44,-9,15,61,202,122,44,54,14,61,202,122,44,-9,14,61,202,122,44,54,13,61,202,122,44,-9,13,61,202,122,44,54,12,61,202,122,44,-9,12,61,202,122,44,54,11,61,202,122,44,-9,11,61,202,122,44,54,10,61,202,122,44,-9,10,61,202,122,44,54,9,61,202,122,44,-9,9,61,202,122,44,54,8,61,202,122,44,-9,8,61,202,122,44,54,7,61,202,122,44,-9,7,61,202,122,44,54,6,61,202,122,44,-9,6,61,202,122,44,54,5,61,202,122,44,-9,5,61,202,122,44,54,4,61,202,122,44,-9,4,61,202,122,44,54,3,61,202,122,44,-9,3,61,202,122,44,54,2,61,202,122,44,-9,2,61,202,122,44,54,1,61,202,122,44,-9,1,61,202,122,44,54,0,61,202,122,44,-9,0,61,202,122,44,54,-1,61,202,122,44,-9,-1,61,202,122,44,54,-2,61,202,122,44,-9,-2,61,202,122,44,54,-3,61,202,122,44,-9,-3,61,202,122,44,54,-4,61,202,122,44,-9,-4,61,202,122,44,54,-5,61,202,122,44,-9,-5,61,202,122,44,54,-6,61,202,122,44,-9,-6,61,202,122,44,54,-7,61,202,122,44,-9,-7,61,202,122,44,54,-8,61,202,122,44,-9,-8,61,202,122,44,54,-9,61,202,122,44,53,-9,61,202,122,44,52,-9,61,202,122,44,51,-9,61,202,122,44,50,-9,61,202,122,44,49,-9,61,202,122,44,48,-9,61,202,122,44,47,-9,61,202,122,44,46,-9,61,202,122,44,45,-9,61,202,122,44,44,-9,61,202,122,44,43,-9,61,202,122,44,42,-9,61,202,122,44,41,-9,61,202,122,44,40,-9,61,202,122,44,39,-9,61,202,122,44,38,-9,61,202,122,44,37,-9,61,202,122,44,36,-9,61,202,122,44,35,-9,61,202,122,44,34,-9,61,202,122,44,33,-9,61,202,122,44,32,-9,61,202,122,44,31,-9,61,202,122,44,30,-9,61,202,122,44,29,-9,61,202,122,44,28,-9,61,202,122,44,27,-9,61,202,122,44,26,-9,61,202,122,44,25,-9,61,202,122,44,24,-9,61,202,122,44,23,-9,61,202,122,44,22,-9,61,202,122,44,21,-9,61,202,122,44,20,-9,61,202,122,44,19,-9,61,202,122,44,18,-9,61,202,122,44,17,-9,61,202,122,44,16,-9,61,202,122,44,15,-9,61,202,122,44,14,-9,61,202,122,44,13,-9,61,202,122,44,12,-9,61,202,122,44,11,-9,61,202,122,44,10,-9,61,202,122,44,9,-9,61,202,122,44,84,28,1,202,122,44,-39,29,1,202,122,44,8,-9,61,202,122,44,7,-9,61,202,122,44,6,-9,61,202,122,44,5,-9,61,202,122,44,4,-9,61,202,122,44,3,-9,61,202,122,44,2,-9,61,202,122,44,1,-9,61,202,122,44,0,-9,61,202,122,44,-1,-9,61,202,122,44,-2,-9,61,202,122,44,-3,-9,61,202,122,44,-4,-9,61,202,122,44,-5,-9,61,202,122,44,-6,-9,61,202,122,44,-7,-9,61,202,122,44,-8,-9,61,202,122,44,-9,-9,61,202,122,44,55,55,60,202,122,44,54,55,60,202,122,44,53,55,60,202,122,44,52,55,60,202,122,44,51,55,60,202,122,44,50,55,60,202,122,44,49,55,60,202,122,44,48,55,60,202,122,44,47,55,60,202,122,44,46,55,60,202,122,44,45,55,60,202,122,44,44,55,60,202,122,44,43,55,60,202,122,44,42,55,60,202,122,44,41,55,60,202,122,44,40,55,60,202,122,44,39,55,60,202,122,44,38,55,60,202,122,44,37,55,60,202,122,44,36,55,60,202,122,44,35,55,60,202,122,44,34,55,60,202,122,44,33,55,60,202,122,44,32,55,60,202,122,44,31,55,60,202,122,44,30,55,60,202,122,44,29,55,60,202,122,44,28,55,60,202,122,44,27,55,60,202,122,44,26,55,60,202,122,44,25,55,60,202,122,44,24,55,60,202,122,44,23,55,60,202,122,44,22,55,60,202,122,44,21,55,60,202,122,44,20,55,60,202,122,44,19,55,60,202,122,44,18,55,60,202,122,44,17,55,60,202,122,44,16,55,60,202,122,44,15,55,60,202,122,44,14,55,60,202,122,44,13,55,60,202,122,44,12,55,60,202,122,44,11,55,60,202,122,44,10,55,60,202,122,44,9,55,60,202,122,44,8,55,60,202,122,44,7,55,60,202,122,44,6,55,60,202,122,44,5,55,60,202,122,44,4,55,60,202,122,44,3,55,60,202,122,44,2,55,60,202,122,44,1,55,60,202,122,44,0,55,60,202,122,44,-1,55,60,202,122,44,-2,55,60,202,122,44,-3,55,60,202,122,44,-4,55,60,202,122,44,-5,55,60,202,122,44,-6,55,60,202,122,44,-7,55,60,202,122,44,-8,55,60,202,122,44,-9,55,60,202,122,44,-10,55,60,202,122,44,55,54,60,202,122,44,-10,54,60,202,122,44,55,53,60,202,122,44,-10,53,60,202,122,44,55,52,60,202,122,44,-10,52,60,202,122,44,55,51,60,202,122,44,-10,51,60,202,122,44,55,50,60,202,122,44,-10,50,60,202,122,44,55,49,60,202,122,44,-10,49,60,202,122,44,55,48,60,202,122,44,-10,48,60,202,122,44,55,47,60,202,122,44,-10,47,60,202,122,44,55,46,60,202,122,44,-10,46,60,202,122,44,55,45,60,202,122,44,-10,45,60,202,122,44,55,44,60,202,122,44,-10,44,60,202,122,44,55,43,60,202,122,44,-10,43,60,202,122,44,55,42,60,202,122,44,-10,42,60,202,122,44,55,41,60,202,122,44,-10,41,60,202,122,44,55,40,60,202,122,44,-10,40,60,202,122,44,55,39,60,202,122,44,-10,39,60,202,122,44,55,38,60,202,122,44,-10,38,60,202,122,44,55,37,60,202,122,44,-10,37,60,202,122,44,55,36,60,202,122,44,-10,36,60,202,122,44,84,29,1,202,122,44,-39,30,1,202,122,44,55,35,60,202,122,44,-10,35,60,202,122,44,55,34,60,202,122,44,-10,34,60,202,122,44,55,33,60,202,122,44,-10,33,60,202,122,44,55,32,60,202,122,44,-10,32,60,202,122,44,55,31,60,202,122,44,-10,31,60,202,122,44,55,30,60,202,122,44,-10,30,60,202,122,44,55,29,60,202,122,44,-10,29,60,202,122,44,55,28,60,202,122,44,-10,28,60,202,122,44,55,27,60,202,122,44,-10,27,60,202,122,44,55,26,60,202,122,44,-10,26,60,202,122,44,55,25,60,202,122,44,-10,25,60,202,122,44,55,24,60,202,122,44,-10,24,60,202,122,44,55,23,60,202,122,44,-10,23,60,202,122,44,55,22,60,202,122,44,-10,22,60,202,122,44,55,21,60,202,122,44,-10,21,60,202,122,44,55,20,60,202,122,44,-10,20,60,202,122,44,55,19,60,202,122,44,-10,19,60,202,122,44,55,18,60,202,122,44,-10,18,60,202,122,44,55,17,60,202,122,44,-10,17,60,202,122,44,55,16,60,202,122,44,-10,16,60,202,122,44,55,15,60,202,122,44,-10,15,60,202,122,44,55,14,60,202,122,44,-10,14,60,202,122,44,55,13,60,202,122,44,-10,13,60,202,122,44,55,12,60,202,122,44,-10,12,60,202,122,44,55,11,60,202,122,44,-10,11,60,202,122,44,55,10,60,202,122,44,-10,10,60,202,122,44,55,9,60,202,122,44,-10,9,60,202,122,44,55,8,60,202,122,44,-10,8,60,202,122,44,55,7,60,202,122,44,-10,7,60,202,122,44,55,6,60,202,122,44,-10,6,60,202,122,44,55,5,60,202,122,44,-10,5,60,202,122,44,55,4,60,202,122,44,-10,4,60,202,122,44,55,3,60,202,122,44,-10,3,60,202,122,44,55,2,60,202,122,44,-10,2,60,202,122,44,55,1,60,202,122,44,-10,1,60,202,122,44,55,0,60,202,122,44,-10,0,60,202,122,44,55,-1,60,202,122,44,-10,-1,60,202,122,44,55,-2,60,202,122,44,-10,-2,60,202,122,44,55,-3,60,202,122,44,-10,-3,60,202,122,44,55,-4,60,202,122,44,-10,-4,60,202,122,44,55,-5,60,202,122,44,-10,-5,60,202,122,44,55,-6,60,202,122,44,-10,-6,60,202,122,44,55,-7,60,202,122,44,-10,-7,60,202,122,44,55,-8,60,202,122,44,-10,-8,60,202,122,44,55,-9,60,202,122,44,-10,-9,60,202,122,44,55,-10,60,202,122,44,54,-10,60,202,122,44,53,-10,60,202,122,44,52,-10,60,202,122,44,51,-10,60,202,122,44,50,-10,60,202,122,44,49,-10,60,202,122,44,48,-10,60,202,122,44,47,-10,60,202,122,44,46,-10,60,202,122,44,45,-10,60,202,122,44,44,-10,60,202,122,44,43,-10,60,202,122,44,42,-10,60,202,122,44,41,-10,60,202,122,44,40,-10,60,202,122,44,39,-10,60,202,122,44,38,-10,60,202,122,44,37,-10,60,202,122,44,36,-10,60,202,122,44,35,-10,60,202,122,44,34,-10,60,202,122,44,33,-10,60,202,122,44,32,-10,60,202,122,44,31,-10,60,202,122,44,30,-10,60,202,122,44,29,-10,60,202,122,44,28,-10,60,202,122,44,27,-10,60,202,122,44,26,-10,60,202,122,44,25,-10,60,202,122,44,24,-10,60,202,122,44,84,30,1,202,122,44,-39,31,1,202,122,44,23,-10,60,202,122,44,22,-10,60,202,122,44,21,-10,60,202,122,44,20,-10,60,202,122,44,19,-10,60,202,122,44,18,-10,60,202,122,44,17,-10,60,202,122,44,16,-10,60,202,122,44,15,-10,60,202,122,44,14,-10,60,202,122,44,13,-10,60,202,122,44,12,-10,60,202,122,44,11,-10,60,202,122,44,10,-10,60,202,122,44,9,-10,60,202,122,44,8,-10,60,202,122,44,7,-10,60,202,122,44,6,-10,60,202,122,44,5,-10,60,202,122,44,4,-10,60,202,122,44,3,-10,60,202,122,44,2,-10,60,202,122,44,1,-10,60,202,122,44,0,-10,60,202,122,44,-1,-10,60,202,122,44,-2,-10,60,202,122,44,-3,-10,60,202,122,44,-4,-10,60,202,122,44,-5,-10,60,202,122,44,-6,-10,60,202,122,44,-7,-10,60,202,122,44,-8,-10,60,202,122,44,-9,-10,60,202,122,44,-10,-10,60,202,122,44,55,55,59,202,122,44,54,55,59,202,122,44,53,55,59,202,122,44,52,55,59,202,122,44,51,55,59,202,122,44,50,55,59,202,122,44,49,55,59,202,122,44,48,55,59,202,122,44,47,55,59,202,122,44,46,55,59,202,122,44,45,55,59,202,122,44,44,55,59,202,122,44,43,55,59,202,122,44,42,55,59,202,122,44,41,55,59,202,122,44,40,55,59,202,122,44,39,55,59,202,122,44,38,55,59,202,122,44,37,55,59,202,122,44,36,55,59,202,122,44,35,55,59,202,122,44,34,55,59,202,122,44,33,55,59,202,122,44,32,55,59,202,122,44,31,55,59,202,122,44,30,55,59,202,122,44,29,55,59,202,122,44,28,55,59,202,122,44,27,55,59,202,122,44,26,55,59,202,122,44,25,55,59,202,122,44,24,55,59,202,122,44,23,55,59,202,122,44,22,55,59,202,122,44,21,55,59,202,122,44,20,55,59,202,122,44,19,55,59,202,122,44,18,55,59,202,122,44,17,55,59,202,122,44,16,55,59,202,122,44,15,55,59,202,122,44,14,55,59,202,122,44,13,55,59,202,122,44,12,55,59,202,122,44,11,55,59,202,122,44,10,55,59,202,122,44,9,55,59,202,122,44,8,55,59,202,122,44,7,55,59,202,122,44,6,55,59,202,122,44,5,55,59,202,122,44,4,55,59,202,122,44,3,55,59,202,122,44,2,55,59,202,122,44,1,55,59,202,122,44,0,55,59,202,122,44,-1,55,59,202,122,44,-2,55,59,202,122,44,-3,55,59,202,122,44,-4,55,59,202,122,44,-5,55,59,202,122,44,-6,55,59,202,122,44,-7,55,59,202,122,44,-8,55,59,202,122,44,-9,55,59,202,122,44,-10,55,59,202,122,44,55,54,59,202,122,44,-10,54,59,202,122,44,55,53,59,202,122,44,-10,53,59,202,122,44,55,52,59,202,122,44,-10,52,59,202,122,44,55,51,59,202,122,44,-10,51,59,202,122,44,55,50,59,202,122,44,-10,50,59,202,122,44,55,49,59,202,122,44,-10,49,59,202,122,44,55,48,59,202,122,44,-10,48,59,202,122,44,55,47,59,202,122,44,-10,47,59,202,122,44,55,46,59,202,122,44,-10,46,59,202,122,44,55,45,59,202,122,44,-10,45,59,202,122,44,55,44,59,202,122,44,-10,44,59,202,122,44,84,31,1,202,122,44,-39,32,1,202,122,44,55,43,59,202,122,44,-10,43,59,202,122,44,55,42,59,202,122,44,-10,42,59,202,122,44,55,41,59,202,122,44,-10,41,59,202,122,44,55,40,59,202,122,44,-10,40,59,202,122,44,55,39,59,202,122,44,-10,39,59,202,122,44,55,38,59,202,122,44,-10,38,59,202,122,44,55,37,59,202,122,44,-10,37,59,202,122,44,55,36,59,202,122,44,-10,36,59,202,122,44,55,35,59,202,122,44,-10,35,59,202,122,44,55,34,59,202,122,44,-10,34,59,202,122,44,55,33,59,202,122,44,-10,33,59,202,122,44,55,32,59,202,122,44,-10,32,59,202,122,44,55,31,59,202,122,44,-10,31,59,202,122,44,55,30,59,202,122,44,-10,30,59,202,122,44,55,29,59,202,122,44,-10,29,59,202,122,44,55,28,59,202,122,44,-10,28,59,202,122,44,55,27,59,202,122,44,-10,27,59,202,122,44,55,26,59,202,122,44,-10,26,59,202,122,44,55,25,59,202,122,44,-10,25,59,202,122,44,55,24,59,202,122,44,-10,24,59,202,122,44,55,23,59,202,122,44,-10,23,59,202,122,44,55,22,59,202,122,44,-10,22,59,202,122,44,55,21,59,202,122,44,-10,21,59,202,122,44,55,20,59,202,122,44,-10,20,59,202,122,44,55,19,59,202,122,44,-10,19,59,202,122,44,55,18,59,202,122,44,-10,18,59,202,122,44,55,17,59,202,122,44,-10,17,59,202,122,44,55,16,59,202,122,44,-10,16,59,202,122,44,55,15,59,202,122,44,-10,15,59,202,122,44,55,14,59,202,122,44,-10,14,59,202,122,44,55,13,59,202,122,44,-10,13,59,202,122,44,55,12,59,202,122,44,-10,12,59,202,122,44,55,11,59,202,122,44,-10,11,59,202,122,44,55,10,59,202,122,44,-10,10,59,202,122,44,55,9,59,202,122,44,-10,9,59,202,122,44,55,8,59,202,122,44,-10,8,59,202,122,44,55,7,59,202,122,44,-10,7,59,202,122,44,55,6,59,202,122,44,-10,6,59,202,122,44,55,5,59,202,122,44,-10,5,59,202,122,44,55,4,59,202,122,44,-10,4,59,202,122,44,55,3,59,202,122,44,-10,3,59,202,122,44,55,2,59,202,122,44,-10,2,59,202,122,44,55,1,59,202,122,44,-10,1,59,202,122,44,55,0,59,202,122,44,-10,0,59,202,122,44,55,-1,59,202,122,44,-10,-1,59,202,122,44,55,-2,59,202,122,44,-10,-2,59,202,122,44,55,-3,59,202,122,44,-10,-3,59,202,122,44,55,-4,59,202,122,44,-10,-4,59,202,122,44,55,-5,59,202,122,44,-10,-5,59,202,122,44,55,-6,59,202,122,44,-10,-6,59,202,122,44,55,-7,59,202,122,44,-10,-7,59,202,122,44,55,-8,59,202,122,44,-10,-8,59,202,122,44,55,-9,59,202,122,44,-10,-9,59,202,122,44,55,-10,59,202,122,44,54,-10,59,202,122,44,53,-10,59,202,122,44,52,-10,59,202,122,44,51,-10,59,202,122,44,50,-10,59,202,122,44,49,-10,59,202,122,44,48,-10,59,202,122,44,47,-10,59,202,122,44,46,-10,59,202,122,44,45,-10,59,202,122,44,44,-10,59,202,122,44,43,-10,59,202,122,44,42,-10,59,202,122,44,41,-10,59,202,122,44,40,-10,59,202,122,44,84,32,1,202,122,44,-39,33,1,202,122,44,39,-10,59,202,122,44,38,-10,59,202,122,44,37,-10,59,202,122,44,36,-10,59,202,122,44,35,-10,59,202,122,44,34,-10,59,202,122,44,33,-10,59,202,122,44,32,-10,59,202,122,44,31,-10,59,202,122,44,30,-10,59,202,122,44,29,-10,59,202,122,44,28,-10,59,202,122,44,27,-10,59,202,122,44,26,-10,59,202,122,44,25,-10,59,202,122,44,24,-10,59,202,122,44,23,-10,59,202,122,44,22,-10,59,202,122,44,21,-10,59,202,122,44,20,-10,59,202,122,44,19,-10,59,202,122,44,18,-10,59,202,122,44,17,-10,59,202,122,44,16,-10,59,202,122,44,15,-10,59,202,122,44,14,-10,59,202,122,44,13,-10,59,202,122,44,12,-10,59,202,122,44,11,-10,59,202,122,44,10,-10,59,202,122,44,9,-10,59,202,122,44,8,-10,59,202,122,44,7,-10,59,202,122,44,6,-10,59,202,122,44,5,-10,59,202,122,44,4,-10,59,202,122,44,3,-10,59,202,122,44,2,-10,59,202,122,44,1,-10,59,202,122,44,0,-10,59,202,122,44,-1,-10,59,202,122,44,-2,-10,59,202,122,44,-3,-10,59,202,122,44,-4,-10,59,202,122,44,-5,-10,59,202,122,44,-6,-10,59,202,122,44,-7,-10,59,202,122,44,-8,-10,59,202,122,44,-9,-10,59,202,122,44,-10,-10,59,202,122,44,56,56,58,202,122,44,55,56,58,202,122,44,54,56,58,202,122,44,53,56,58,202,122,44,52,56,58,202,122,44,51,56,58,202,122,44,50,56,58,202,122,44,49,56,58,202,122,44,48,56,58,202,122,44,47,56,58,202,122,44,46,56,58,202,122,44,45,56,58,202,122,44,44,56,58,202,122,44,43,56,58,202,122,44,42,56,58,202,122,44,41,56,58,202,122,44,40,56,58,202,122,44,39,56,58,202,122,44,38,56,58,202,122,44,37,56,58,202,122,44,36,56,58,202,122,44,35,56,58,202,122,44,34,56,58,202,122,44,33,56,58,202,122,44,32,56,58,202,122,44,31,56,58,202,122,44,30,56,58,202,122,44,29,56,58,202,122,44,28,56,58,202,122,44,27,56,58,202,122,44,26,56,58,202,122,44,25,56,58,202,122,44,24,56,58,202,122,44,23,56,58,202,122,44,22,56,58,202,122,44,21,56,58,202,122,44,20,56,58,202,122,44,19,56,58,202,122,44,18,56,58,202,122,44,17,56,58,202,122,44,16,56,58,202,122,44,15,56,58,202,122,44,14,56,58,202,122,44,13,56,58,202,122,44,12,56,58,202,122,44,11,56,58,202,122,44,10,56,58,202,122,44,9,56,58,202,122,44,8,56,58,202,122,44,7,56,58,202,122,44,6,56,58,202,122,44,5,56,58,202,122,44,4,56,58,202,122,44,3,56,58,202,122,44,2,56,58,202,122,44,1,56,58,202,122,44,0,56,58,202,122,44,-1,56,58,202,122,44,-2,56,58,202,122,44,-3,56,58,202,122,44,-4,56,58,202,122,44,-5,56,58,202,122,44,-6,56,58,202,122,44,-7,56,58,202,122,44,-8,56,58,202,122,44,-9,56,58,202,122,44,-10,56,58,202,122,44,-11,56,58,202,122,44,56,55,58,202,122,44,-11,55,58,202,122,44,56,54,58,202,122,44,-11,54,58,202,122,44,84,33,1,202,122,44,-39,34,1,202,122,44,56,53,58,202,122,44,-11,53,58,202,122,44,56,52,58,202,122,44,-11,52,58,202,122,44,56,51,58,202,122,44,-11,51,58,202,122,44,56,50,58,202,122,44,-11,50,58,202,122,44,56,49,58,202,122,44,-11,49,58,202,122,44,56,48,58,202,122,44,-11,48,58,202,122,44,56,47,58,202,122,44,-11,47,58,202,122,44,56,46,58,202,122,44,-11,46,58,202,122,44,56,45,58,202,122,44,-11,45,58,202,122,44,56,44,58,202,122,44,-11,44,58,202,122,44,56,43,58,202,122,44,-11,43,58,202,122,44,56,42,58,202,122,44,-11,42,58,202,122,44,56,41,58,202,122,44,-11,41,58,202,122,44,56,40,58,202,122,44,-11,40,58,202,122,44,56,39,58,202,122,44,-11,39,58,202,122,44,56,38,58,202,122,44,-11,38,58,202,122,44,56,37,58,202,122,44,-11,37,58,202,122,44,56,36,58,202,122,44,-11,36,58,202,122,44,56,35,58,202,122,44,-11,35,58,202,122,44,56,34,58,202,122,44,-11,34,58,202,122,44,56,33,58,202,122,44,-11,33,58,202,122,44,56,32,58,202,122,44,-11,32,58,202,122,44,56,31,58,202,122,44,-11,31,58,202,122,44,56,30,58,202,122,44,-11,30,58,202,122,44,56,29,58,202,122,44,-11,29,58,202,122,44,56,28,58,202,122,44,-11,28,58,202,122,44,56,27,58,202,122,44,-11,27,58,202,122,44,56,26,58,202,122,44,-11,26,58,202,122,44,56,25,58,202,122,44,-11,25,58,202,122,44,56,24,58,202,122,44,-11,24,58,202,122,44,56,23,58,202,122,44,-11,23,58,202,122,44,56,22,58,202,122,44,-11,22,58,202,122,44,56,21,58,202,122,44,-11,21,58,202,122,44,56,20,58,202,122,44,-11,20,58,202,122,44,56,19,58,202,122,44,-11,19,58,202,122,44,56,18,58,202,122,44,-11,18,58,202,122,44,56,17,58,202,122,44,-11,17,58,202,122,44,56,16,58,202,122,44,-11,16,58,202,122,44,56,15,58,202,122,44,-11,15,58,202,122,44,56,14,58,202,122,44,-11,14,58,202,122,44,56,13,58,202,122,44,-11,13,58,202,122,44,56,12,58,202,122,44,-11,12,58,202,122,44,56,11,58,202,122,44,-11,11,58,202,122,44,56,10,58,202,122,44,-11,10,58,202,122,44,56,9,58,202,122,44,-11,9,58,202,122,44,56,8,58,202,122,44,-11,8,58,202,122,44,56,7,58,202,122,44,-11,7,58,202,122,44,56,6,58,202,122,44,-11,6,58,202,122,44,56,5,58,202,122,44,-11,5,58,202,122,44,56,4,58,202,122,44,-11,4,58,202,122,44,56,3,58,202,122,44,-11,3,58,202,122,44,56,2,58,202,122,44,-11,2,58,202,122,44,56,1,58,202,122,44,-11,1,58,202,122,44,56,0,58,202,122,44,-11,0,58,202,122,44,56,-1,58,202,122,44,-11,-1,58,202,122,44,56,-2,58,202,122,44,-11,-2,58,202,122,44,56,-3,58,202,122,44,-11,-3,58,202,122,44,56,-4,58,202,122,44,-11,-4,58,202,122,44,56,-5,58,202,122,44,-11,-5,58,202,122,44,56,-6,58,202,122,44,-11,-6,58,202,122,44,56,-7,58,202,122,44,-11,-7,58,202,122,44,84,34,1,202,122,44,-39,35,1,202,122,44,56,-8,58,202,122,44,-11,-8,58,202,122,44,56,-9,58,202,122,44,-11,-9,58,202,122,44,56,-10,58,202,122,44,-11,-10,58,202,122,44,56,-11,58,202,122,44,55,-11,58,202,122,44,54,-11,58,202,122,44,53,-11,58,202,122,44,52,-11,58,202,122,44,51,-11,58,202,122,44,50,-11,58,202,122,44,49,-11,58,202,122,44,48,-11,58,202,122,44,47,-11,58,202,122,44,46,-11,58,202,122,44,45,-11,58,202,122,44,44,-11,58,202,122,44,43,-11,58,202,122,44,42,-11,58,202,122,44,41,-11,58,202,122,44,40,-11,58,202,122,44,39,-11,58,202,122,44,38,-11,58,202,122,44,37,-11,58,202,122,44,36,-11,58,202,122,44,35,-11,58,202,122,44,34,-11,58,202,122,44,33,-11,58,202,122,44,32,-11,58,202,122,44,31,-11,58,202,122,44,30,-11,58,202,122,44,29,-11,58,202,122,44,28,-11,58,202,122,44,27,-11,58,202,122,44,26,-11,58,202,122,44,25,-11,58,202,122,44,24,-11,58,202,122,44,23,-11,58,202,122,44,22,-11,58,202,122,44,21,-11,58,202,122,44,20,-11,58,202,122,44,19,-11,58,202,122,44,18,-11,58,202,122,44,17,-11,58,202,122,44,16,-11,58,202,122,44,15,-11,58,202,122,44,14,-11,58,202,122,44,13,-11,58,202,122,44,12,-11,58,202,122,44,11,-11,58,202,122,44,10,-11,58,202,122,44,9,-11,58,202,122,44,8,-11,58,202,122,44,7,-11,58,202,122,44,6,-11,58,202,122,44,5,-11,58,202,122,44,4,-11,58,202,122,44,3,-11,58,202,122,44,2,-11,58,202,122,44,1,-11,58,202,122,44,0,-11,58,202,122,44,-1,-11,58,202,122,44,-2,-11,58,202,122,44,-3,-11,58,202,122,44,-4,-11,58,202,122,44,-5,-11,58,202,122,44,-6,-11,58,202,122,44,-7,-11,58,202,122,44,-8,-11,58,202,122,44,-9,-11,58,202,122,44,-10,-11,58,202,122,44,-11,-11,58,202,122,44,56,56,57,202,122,44,55,56,57,202,122,44,54,56,57,202,122,44,53,56,57,202,122,44,52,56,57,202,122,44,51,56,57,202,122,44,50,56,57,202,122,44,49,56,57,202,122,44,48,56,57,202,122,44,47,56,57,202,122,44,46,56,57,202,122,44,45,56,57,202,122,44,44,56,57,202,122,44,43,56,57,202,122,44,42,56,57,202,122,44,41,56,57,202,122,44,40,56,57,202,122,44,39,56,57,202,122,44,38,56,57,202,122,44,37,56,57,202,122,44,36,56,57,202,122,44,35,56,57,202,122,44,34,56,57,202,122,44,33,56,57,202,122,44,32,56,57,202,122,44,31,56,57,202,122,44,30,56,57,202,122,44,29,56,57,202,122,44,28,56,57,202,122,44,27,56,57,202,122,44,26,56,57,202,122,44,25,56,57,202,122,44,24,56,57,202,122,44,23,56,57,202,122,44,22,56,57,202,122,44,21,56,57,202,122,44,20,56,57,202,122,44,19,56,57,202,122,44,18,56,57,202,122,44,17,56,57,202,122,44,16,56,57,202,122,44,15,56,57,202,122,44,14,56,57,202,122,44,13,56,57,202,122,44,12,56,57,202,122,44,11,56,57,202,122,44,10,56,57,202,122,44,9,56,57,202,122,44,84,35,1,202,122,44,-39,36,1,202,122,44,8,56,57,202,122,44,7,56,57,202,122,44,6,56,57,202,122,44,5,56,57,202,122,44,4,56,57,202,122,44,3,56,57,202,122,44,2,56,57,202,122,44,1,56,57,202,122,44,0,56,57,202,122,44,-1,56,57,202,122,44,-2,56,57,202,122,44,-3,56,57,202,122,44,-4,56,57,202,122,44,-5,56,57,202,122,44,-6,56,57,202,122,44,-7,56,57,202,122,44,-8,56,57,202,122,44,-9,56,57,202,122,44,-10,56,57,202,122,44,-11,56,57,202,122,44,56,55,57,202,122,44,-11,55,57,202,122,44,56,54,57,202,122,44,-11,54,57,202,122,44,56,53,57,202,122,44,-11,53,57,202,122,44,56,52,57,202,122,44,-11,52,57,202,122,44,56,51,57,202,122,44,-11,51,57,202,122,44,56,50,57,202,122,44,-11,50,57,202,122,44,56,49,57,202,122,44,-11,49,57,202,122,44,56,48,57,202,122,44,-11,48,57,202,122,44,56,47,57,202,122,44,-11,47,57,202,122,44,56,46,57,202,122,44,-11,46,57,202,122,44,56,45,57,202,122,44,-11,45,57,202,122,44,56,44,57,202,122,44,-11,44,57,202,122,44,56,43,57,202,122,44,-11,43,57,202,122,44,56,42,57,202,122,44,-11,42,57,202,122,44,56,41,57,202,122,44,-11,41,57,202,122,44,56,40,57,202,122,44,-11,40,57,202,122,44,56,39,57,202,122,44,-11,39,57,202,122,44,56,38,57,202,122,44,-11,38,57,202,122,44,56,37,57,202,122,44,-11,37,57,202,122,44,56,36,57,202,122,44,-11,36,57,202,122,44,56,35,57,202,122,44,-11,35,57,202,122,44,56,34,57,202,122,44,-11,34,57,202,122,44,56,33,57,202,122,44,-11,33,57,202,122,44,56,32,57,202,122,44,-11,32,57,202,122,44,56,31,57,202,122,44,-11,31,57,202,122,44,56,30,57,202,122,44,-11,30,57,202,122,44,56,29,57,202,122,44,-11,29,57,202,122,44,56,28,57,202,122,44,-11,28,57,202,122,44,56,27,57,202,122,44,-11,27,57,202,122,44,56,26,57,202,122,44,-11,26,57,202,122,44,56,25,57,202,122,44,-11,25,57,202,122,44,56,24,57,202,122,44,-11,24,57,202,122,44,56,23,57,202,122,44,-11,23,57,202,122,44,56,22,57,202,122,44,-11,22,57,202,122,44,56,21,57,202,122,44,-11,21,57,202,122,44,56,20,57,202,122,44,-11,20,57,202,122,44,56,19,57,202,122,44,-11,19,57,202,122,44,56,18,57,202,122,44,-11,18,57,202,122,44,56,17,57,202,122,44,-11,17,57,202,122,44,56,16,57,202,122,44,-11,16,57,202,122,44,56,15,57,202,122,44,-11,15,57,202,122,44,56,14,57,202,122,44,-11,14,57,202,122,44,56,13,57,202,122,44,-11,13,57,202,122,44,56,12,57,202,122,44,-11,12,57,202,122,44,56,11,57,202,122,44,-11,11,57,202,122,44,56,10,57,202,122,44,-11,10,57,202,122,44,56,9,57,202,122,44,-11,9,57,202,122,44,56,8,57,202,122,44,-11,8,57,202,122,44,56,7,57,202,122,44,-11,7,57,202,122,44,56,6,57,202,122,44,-11,6,57,202,122,44,56,5,57,202,122,44,-11,5,57,202,122,44,84,36,1,202,122,44,-39,37,1,202,122,44,56,4,57,202,122,44,-11,4,57,202,122,44,56,3,57,202,122,44,-11,3,57,202,122,44,56,2,57,202,122,44,-11,2,57,202,122,44,56,1,57,202,122,44,-11,1,57,202,122,44,56,0,57,202,122,44,-11,0,57,202,122,44,56,-1,57,202,122,44,-11,-1,57,202,122,44,56,-2,57,202,122,44,-11,-2,57,202,122,44,56,-3,57,202,122,44,-11,-3,57,202,122,44,56,-4,57,202,122,44,-11,-4,57,202,122,44,56,-5,57,202,122,44,-11,-5,57,202,122,44,56,-6,57,202,122,44,-11,-6,57,202,122,44,56,-7,57,202,122,44,-11,-7,57,202,122,44,56,-8,57,202,122,44,-11,-8,57,202,122,44,56,-9,57,202,122,44,-11,-9,57,202,122,44,56,-10,57,202,122,44,-11,-10,57,202,122,44,56,-11,57,202,122,44,55,-11,57,202,122,44,54,-11,57,202,122,44,53,-11,57,202,122,44,52,-11,57,202,122,44,51,-11,57,202,122,44,50,-11,57,202,122,44,49,-11,57,202,122,44,48,-11,57,202,122,44,47,-11,57,202,122,44,46,-11,57,202,122,44,45,-11,57,202,122,44,44,-11,57,202,122,44,43,-11,57,202,122,44,42,-11,57,202,122,44,41,-11,57,202,122,44,40,-11,57,202,122,44,39,-11,57,202,122,44,38,-11,57,202,122,44,37,-11,57,202,122,44,36,-11,57,202,122,44,35,-11,57,202,122,44,34,-11,57,202,122,44,33,-11,57,202,122,44,32,-11,57,202,122,44,31,-11,57,202,122,44,30,-11,57,202,122,44,29,-11,57,202,122,44,28,-11,57,202,122,44,27,-11,57,202,122,44,26,-11,57,202,122,44,25,-11,57,202,122,44,24,-11,57,202,122,44,23,-11,57,202,122,44,22,-11,57,202,122,44,21,-11,57,202,122,44,20,-11,57,202,122,44,19,-11,57,202,122,44,18,-11,57,202,122,44,17,-11,57,202,122,44,16,-11,57,202,122,44,15,-11,57,202,122,44,14,-11,57,202,122,44,13,-11,57,202,122,44,12,-11,57,202,122,44,11,-11,57,202,122,44,10,-11,57,202,122,44,9,-11,57,202,122,44,8,-11,57,202,122,44,7,-11,57,202,122,44,6,-11,57,202,122,44,5,-11,57,202,122,44,4,-11,57,202,122,44,3,-11,57,202,122,44,2,-11,57,202,122,44,1,-11,57,202,122,44,0,-11,57,202,122,44,-1,-11,57,202,122,44,-2,-11,57,202,122,44,-3,-11,57,202,122,44,-4,-11,57,202,122,44,-5,-11,57,202,122,44,-6,-11,57,202,122,44,-7,-11,57,202,122,44,-8,-11,57,202,122,44,-9,-11,57,202,122,44,-10,-11,57,202,122,44,-11,-11,57,202,122,44,57,57,56,202,122,44,56,57,56,202,122,44,55,57,56,202,122,44,54,57,56,202,122,44,53,57,56,202,122,44,52,57,56,202,122,44,51,57,56,202,122,44,50,57,56,202,122,44,49,57,56,202,122,44,48,57,56,202,122,44,47,57,56,202,122,44,46,57,56,202,122,44,45,57,56,202,122,44,44,57,56,202,122,44,43,57,56,202,122,44,42,57,56,202,122,44,41,57,56,202,122,44,40,57,56,202,122,44,39,57,56,202,122,44,38,57,56,202,122,44,37,57,56,202,122,44,36,57,56,202,122,44,35,57,56,202,122,44,34,57,56,202,122,44,84,37,1,202,122,44,-39,38,1,202,122,44,33,57,56,202,122,44,32,57,56,202,122,44,31,57,56,202,122,44,30,57,56,202,122,44,29,57,56,202,122,44,28,57,56,202,122,44,27,57,56,202,122,44,26,57,56,202,122,44,25,57,56,202,122,44,24,57,56,202,122,44,23,57,56,202,122,44,22,57,56,202,122,44,21,57,56,202,122,44,20,57,56,202,122,44,19,57,56,202,122,44,18,57,56,202,122,44,17,57,56,202,122,44,16,57,56,202,122,44,15,57,56,202,122,44,14,57,56,202,122,44,13,57,56,202,122,44,12,57,56,202,122,44,11,57,56,202,122,44,10,57,56,202,122,44,9,57,56,202,122,44,8,57,56,202,122,44,7,57,56,202,122,44,6,57,56,202,122,44,5,57,56,202,122,44,4,57,56,202,122,44,3,57,56,202,122,44,2,57,56,202,122,44,1,57,56,202,122,44,0,57,56,202,122,44,-1,57,56,202,122,44,-2,57,56,202,122,44,-3,57,56,202,122,44,-4,57,56,202,122,44,-5,57,56,202,122,44,-6,57,56,202,122,44,-7,57,56,202,122,44,-8,57,56,202,122,44,-9,57,56,202,122,44,-10,57,56,202,122,44,-11,57,56,202,122,44,-12,57,56,202,122,44,57,56,56,202,122,44,-12,56,56,202,122,44,57,55,56,202,122,44,-12,55,56,202,122,44,57,54,56,202,122,44,-12,54,56,202,122,44,57,53,56,202,122,44,-12,53,56,202,122,44,57,52,56,202,122,44,-12,52,56,202,122,44,57,51,56,202,122,44,-12,51,56,202,122,44,57,50,56,202,122,44,-12,50,56,202,122,44,57,49,56,202,122,44,-12,49,56,202,122,44,57,48,56,202,122,44,-12,48,56,202,122,44,57,47,56,202,122,44,-12,47,56,202,122,44,57,46,56,202,122,44,-12,46,56,202,122,44,57,45,56,202,122,44,-12,45,56,202,122,44,57,44,56,202,122,44,-12,44,56,202,122,44,57,43,56,202,122,44,-12,43,56,202,122,44,57,42,56,202,122,44,-12,42,56,202,122,44,57,41,56,202,122,44,-12,41,56,202,122,44,57,40,56,202,122,44,-12,40,56,202,122,44,57,39,56,202,122,44,-12,39,56,202,122,44,57,38,56,202,122,44,-12,38,56,202,122,44,57,37,56,202,122,44,-12,37,56,202,122,44,57,36,56,202,122,44,-12,36,56,202,122,44,57,35,56,202,122,44,-12,35,56,202,122,44,57,34,56,202,122,44,-12,34,56,202,122,44,57,33,56,202,122,44,-12,33,56,202,122,44,57,32,56,202,122,44,-12,32,56,202,122,44,57,31,56,202,122,44,-12,31,56,202,122,44,57,30,56,202,122,44,-12,30,56,202,122,44,57,29,56,202,122,44,-12,29,56,202,122,44,57,28,56,202,122,44,-12,28,56,202,122,44,57,27,56,202,122,44,-12,27,56,202,122,44,57,26,56,202,122,44,-12,26,56,202,122,44,57,25,56,202,122,44,-12,25,56,202,122,44,57,24,56,202,122,44,-12,24,56,202,122,44,57,23,56,202,122,44,-12,23,56,202,122,44,57,22,56,202,122,44,-12,22,56,202,122,44,57,21,56,202,122,44,-12,21,56,202,122,44,57,20,56,202,122,44,-12,20,56,202,122,44,57,19,56,202,122,44,-12,19,56,202,122,44,84,38,1,202,122,44,-39,39,1,202,122,44,57,18,56,202,122,44,-12,18,56,202,122,44,57,17,56,202,122,44,-12,17,56,202,122,44,57,16,56,202,122,44,-12,16,56,202,122,44,57,15,56,202,122,44,-12,15,56,202,122,44,57,14,56,202,122,44,-12,14,56,202,122,44,57,13,56,202,122,44,-12,13,56,202,122,44,57,12,56,202,122,44,-12,12,56,202,122,44,57,11,56,202,122,44,-12,11,56,202,122,44,57,10,56,202,122,44,-12,10,56,202,122,44,57,9,56,202,122,44,-12,9,56,202,122,44,57,8,56,202,122,44,-12,8,56,202,122,44,57,7,56,202,122,44,-12,7,56,202,122,44,57,6,56,202,122,44,-12,6,56,202,122,44,57,5,56,202,122,44,-12,5,56,202,122,44,57,4,56,202,122,44,-12,4,56,202,122,44,57,3,56,202,122,44,-12,3,56,202,122,44,57,2,56,202,122,44,-12,2,56,202,122,44,57,1,56,202,122,44,-12,1,56,202,122,44,57,0,56,202,122,44,-12,0,56,202,122,44,57,-1,56,202,122,44,-12,-1,56,202,122,44,57,-2,56,202,122,44,-12,-2,56,202,122,44,57,-3,56,202,122,44,-12,-3,56,202,122,44,57,-4,56,202,122,44,-12,-4,56,202,122,44,57,-5,56,202,122,44,-12,-5,56,202,122,44,57,-6,56,202,122,44,-12,-6,56,202,122,44,57,-7,56,202,122,44,-12,-7,56,202,122,44,57,-8,56,202,122,44,-12,-8,56,202,122,44,57,-9,56,202,122,44,-12,-9,56,202,122,44,57,-10,56,202,122,44,-12,-10,56,202,122,44,57,-11,56,202,122,44,-12,-11,56,202,122,44,57,-12,56,202,122,44,56,-12,56,202,122,44,55,-12,56,202,122,44,54,-12,56,202,122,44,53,-12,56,202,122,44,52,-12,56,202,122,44,51,-12,56,202,122,44,50,-12,56,202,122,44,49,-12,56,202,122,44,48,-12,56,202,122,44,47,-12,56,202,122,44,46,-12,56,202,122,44,45,-12,56,202,122,44,44,-12,56,202,122,44,43,-12,56,202,122,44,42,-12,56,202,122,44,41,-12,56,202,122,44,40,-12,56,202,122,44,39,-12,56,202,122,44,38,-12,56,202,122,44,37,-12,56,202,122,44,36,-12,56,202,122,44,35,-12,56,202,122,44,34,-12,56,202,122,44,33,-12,56,202,122,44,32,-12,56,202,122,44,31,-12,56,202,122,44,30,-12,56,202,122,44,29,-12,56,202,122,44,28,-12,56,202,122,44,27,-12,56,202,122,44,26,-12,56,202,122,44,25,-12,56,202,122,44,24,-12,56,202,122,44,23,-12,56,202,122,44,22,-12,56,202,122,44,21,-12,56,202,122,44,20,-12,56,202,122,44,19,-12,56,202,122,44,18,-12,56,202,122,44,17,-12,56,202,122,44,16,-12,56,202,122,44,15,-12,56,202,122,44,14,-12,56,202,122,44,13,-12,56,202,122,44,12,-12,56,202,122,44,11,-12,56,202,122,44,10,-12,56,202,122,44,9,-12,56,202,122,44,8,-12,56,202,122,44,7,-12,56,202,122,44,6,-12,56,202,122,44,5,-12,56,202,122,44,4,-12,56,202,122,44,3,-12,56,202,122,44,2,-12,56,202,122,44,1,-12,56,202,122,44,0,-12,56,202,122,44,-1,-12,56,202,122,44,-2,-12,56,202,122,44,-3,-12,56,202,122,44,-4,-12,56,202,122,44,84,39,1,202,122,44,-39,40,1,202,122,44,-5,-12,56,202,122,44,-6,-12,56,202,122,44,-7,-12,56,202,122,44,-8,-12,56,202,122,44,-9,-12,56,202,122,44,-10,-12,56,202,122,44,-11,-12,56,202,122,44,-12,-12,56,202,122,44,57,57,55,202,122,44,56,57,55,202,122,44,55,57,55,202,122,44,54,57,55,202,122,44,53,57,55,202,122,44,52,57,55,202,122,44,51,57,55,202,122,44,50,57,55,202,122,44,49,57,55,202,122,44,48,57,55,202,122,44,47,57,55,202,122,44,46,57,55,202,122,44,45,57,55,202,122,44,44,57,55,202,122,44,43,57,55,202,122,44,42,57,55,202,122,44,41,57,55,202,122,44,40,57,55,202,122,44,39,57,55,202,122,44,38,57,55,202,122,44,37,57,55,202,122,44,36,57,55,202,122,44,35,57,55,202,122,44,34,57,55,202,122,44,33,57,55,202,122,44,32,57,55,202,122,44,31,57,55,202,122,44,30,57,55,202,122,44,29,57,55,202,122,44,28,57,55,202,122,44,27,57,55,202,122,44,26,57,55,202,122,44,25,57,55,202,122,44,24,57,55,202,122,44,23,57,55,202,122,44,22,57,55,202,122,44,21,57,55,202,122,44,20,57,55,202,122,44,19,57,55,202,122,44,18,57,55,202,122,44,17,57,55,202,122,44,16,57,55,202,122,44,15,57,55,202,122,44,14,57,55,202,122,44,13,57,55,202,122,44,12,57,55,202,122,44,11,57,55,202,122,44,10,57,55,202,122,44,9,57,55,202,122,44,8,57,55,202,122,44,7,57,55,202,122,44,6,57,55,202,122,44,5,57,55,202,122,44,4,57,55,202,122,44,3,57,55,202,122,44,2,57,55,202,122,44,1,57,55,202,122,44,0,57,55,202,122,44,-1,57,55,202,122,44,-2,57,55,202,122,44,-3,57,55,202,122,44,-4,57,55,202,122,44,-5,57,55,202,122,44,-6,57,55,202,122,44,-7,57,55,202,122,44,-8,57,55,202,122,44,-9,57,55,202,122,44,-10,57,55,202,122,44,-11,57,55,202,122,44,-12,57,55,202,122,44,57,56,55,202,122,44,-12,56,55,202,122,44,57,55,55,202,122,44,-12,55,55,202,122,44,57,54,55,202,122,44,-12,54,55,202,122,44,57,53,55,202,122,44,-12,53,55,202,122,44,57,52,55,202,122,44,-12,52,55,202,122,44,57,51,55,202,122,44,-12,51,55,202,122,44,57,50,55,202,122,44,-12,50,55,202,122,44,57,49,55,202,122,44,-12,49,55,202,122,44,57,48,55,202,122,44,-12,48,55,202,122,44,57,47,55,202,122,44,-12,47,55,202,122,44,57,46,55,202,122,44,-12,46,55,202,122,44,57,45,55,202,122,44,-12,45,55,202,122,44,57,44,55,202,122,44,-12,44,55,202,122,44,57,43,55,202,122,44,-12,43,55,202,122,44,57,42,55,202,122,44,-12,42,55,202,122,44,57,41,55,202,122,44,-12,41,55,202,122,44,57,40,55,202,122,44,-12,40,55,202,122,44,57,39,55,202,122,44,-12,39,55,202,122,44,57,38,55,202,122,44,-12,38,55,202,122,44,57,37,55,202,122,44,-12,37,55,202,122,44,57,36,55,202,122,44,-12,36,55,202,122,44,57,35,55,202,122,44,-12,35,55,202,122,44,84,40,1,202,122,44,-39,41,1,202,122,44,57,34,55,202,122,44,-12,34,55,202,122,44,57,33,55,202,122,44,-12,33,55,202,122,44,57,32,55,202,122,44,-12,32,55,202,122,44,57,31,55,202,122,44,-12,31,55,202,122,44,57,30,55,202,122,44,-12,30,55,202,122,44,57,29,55,202,122,44,-12,29,55,202,122,44,57,28,55,202,122,44,-12,28,55,202,122,44,57,27,55,202,122,44,-12,27,55,202,122,44,57,26,55,202,122,44,-12,26,55,202,122,44,57,25,55,202,122,44,-12,25,55,202,122,44,57,24,55,202,122,44,-12,24,55,202,122,44,57,23,55,202,122,44,-12,23,55,202,122,44,57,22,55,202,122,44,-12,22,55,202,122,44,57,21,55,202,122,44,-12,21,55,202,122,44,57,20,55,202,122,44,-12,20,55,202,122,44,57,19,55,202,122,44,-12,19,55,202,122,44,57,18,55,202,122,44,-12,18,55,202,122,44,57,17,55,202,122,44,-12,17,55,202,122,44,57,16,55,202,122,44,-12,16,55,202,122,44,57,15,55,202,122,44,-12,15,55,202,122,44,57,14,55,202,122,44,-12,14,55,202,122,44,57,13,55,202,122,44,-12,13,55,202,122,44,57,12,55,202,122,44,-12,12,55,202,122,44,57,11,55,202,122,44,-12,11,55,202,122,44,57,10,55,202,122,44,-12,10,55,202,122,44,57,9,55,202,122,44,-12,9,55,202,122,44,57,8,55,202,122,44,-12,8,55,202,122,44,57,7,55,202,122,44,-12,7,55,202,122,44,57,6,55,202,122,44,-12,6,55,202,122,44,57,5,55,202,122,44,-12,5,55,202,122,44,57,4,55,202,122,44,-12,4,55,202,122,44,57,3,55,202,122,44,-12,3,55,202,122,44,57,2,55,202,122,44,-12,2,55,202,122,44,57,1,55,202,122,44,-12,1,55,202,122,44,57,0,55,202,122,44,-12,0,55,202,122,44,57,-1,55,202,122,44,-12,-1,55,202,122,44,57,-2,55,202,122,44,-12,-2,55,202,122,44,57,-3,55,202,122,44,-12,-3,55,202,122,44,57,-4,55,202,122,44,-12,-4,55,202,122,44,57,-5,55,202,122,44,-12,-5,55,202,122,44,57,-6,55,202,122,44,-12,-6,55,202,122,44,57,-7,55,202,122,44,-12,-7,55,202,122,44,57,-8,55,202,122,44,-12,-8,55,202,122,44,57,-9,55,202,122,44,-12,-9,55,202,122,44,57,-10,55,202,122,44,-12,-10,55,202,122,44,57,-11,55,202,122,44,-12,-11,55,202,122,44,57,-12,55,202,122,44,56,-12,55,202,122,44,55,-12,55,202,122,44,54,-12,55,202,122,44,53,-12,55,202,122,44,52,-12,55,202,122,44,51,-12,55,202,122,44,50,-12,55,202,122,44,49,-12,55,202,122,44,48,-12,55,202,122,44,47,-12,55,202,122,44,46,-12,55,202,122,44,45,-12,55,202,122,44,44,-12,55,202,122,44,43,-12,55,202,122,44,42,-12,55,202,122,44,41,-12,55,202,122,44,40,-12,55,202,122,44,39,-12,55,202,122,44,38,-12,55,202,122,44,37,-12,55,202,122,44,36,-12,55,202,122,44,35,-12,55,202,122,44,34,-12,55,202,122,44,33,-12,55,202,122,44,32,-12,55,202,122,44,31,-12,55,202,122,44,30,-12,55,202,122,44,29,-12,55,202,122,44,28,-12,55,202,122,44,84,41,1,202,122,44,-39,42,1,202,122,44,27,-12,55,202,122,44,26,-12,55,202,122,44,25,-12,55,202,122,44,24,-12,55,202,122,44,23,-12,55,202,122,44,22,-12,55,202,122,44,21,-12,55,202,122,44,20,-12,55,202,122,44,19,-12,55,202,122,44,18,-12,55,202,122,44,17,-12,55,202,122,44,16,-12,55,202,122,44,15,-12,55,202,122,44,14,-12,55,202,122,44,13,-12,55,202,122,44,12,-12,55,202,122,44,11,-12,55,202,122,44,10,-12,55,202,122,44,9,-12,55,202,122,44,8,-12,55,202,122,44,7,-12,55,202,122,44,6,-12,55,202,122,44,5,-12,55,202,122,44,4,-12,55,202,122,44,3,-12,55,202,122,44,2,-12,55,202,122,44,1,-12,55,202,122,44,0,-12,55,202,122,44,-1,-12,55,202,122,44,-2,-12,55,202,122,44,-3,-12,55,202,122,44,-4,-12,55,202,122,44,-5,-12,55,202,122,44,-6,-12,55,202,122,44,-7,-12,55,202,122,44,-8,-12,55,202,122,44,-9,-12,55,202,122,44,-10,-12,55,202,122,44,-11,-12,55,202,122,44,-12,-12,55,202,122,44,58,58,54,202,122,44,57,58,54,202,122,44,56,58,54,202,122,44,55,58,54,202,122,44,54,58,54,202,122,44,53,58,54,202,122,44,52,58,54,202,122,44,51,58,54,202,122,44,50,58,54,202,122,44,49,58,54,202,122,44,48,58,54,202,122,44,47,58,54,202,122,44,46,58,54,202,122,44,45,58,54,202,122,44,44,58,54,202,122,44,43,58,54,202,122,44,42,58,54,202,122,44,41,58,54,202,122,44,40,58,54,202,122,44,39,58,54,202,122,44,38,58,54,202,122,44,37,58,54,202,122,44,36,58,54,202,122,44,35,58,54,202,122,44,34,58,54,202,122,44,33,58,54,202,122,44,32,58,54,202,122,44,31,58,54,202,122,44,30,58,54,202,122,44,29,58,54,202,122,44,28,58,54,202,122,44,27,58,54,202,122,44,26,58,54,202,122,44,25,58,54,202,122,44,24,58,54,202,122,44,23,58,54,202,122,44,22,58,54,202,122,44,21,58,54,202,122,44,20,58,54,202,122,44,19,58,54,202,122,44,18,58,54,202,122,44,17,58,54,202,122,44,16,58,54,202,122,44,15,58,54,202,122,44,14,58,54,202,122,44,13,58,54,202,122,44,12,58,54,202,122,44,11,58,54,202,122,44,10,58,54,202,122,44,9,58,54,202,122,44,8,58,54,202,122,44,7,58,54,202,122,44,6,58,54,202,122,44,5,58,54,202,122,44,4,58,54,202,122,44,3,58,54,202,122,44,2,58,54,202,122,44,1,58,54,202,122,44,0,58,54,202,122,44,-1,58,54,202,122,44,-2,58,54,202,122,44,-3,58,54,202,122,44,-4,58,54,202,122,44,-5,58,54,202,122,44,-6,58,54,202,122,44,-7,58,54,202,122,44,-8,58,54,202,122,44,-9,58,54,202,122,44,-10,58,54,202,122,44,-11,58,54,202,122,44,-12,58,54,202,122,44,-13,58,54,202,122,44,58,57,54,202,122,44,-13,57,54,202,122,44,58,56,54,202,122,44,-13,56,54,202,122,44,58,55,54,202,122,44,-13,55,54,202,122,44,58,54,54,202,122,44,-13,54,54,202,122,44,58,53,54,202,122,44,-13,53,54,202,122,44,84,42,1,202,122,44,-39,43,1,202,122,44,58,52,54,202,122,44,-13,52,54,202,122,44,58,51,54,202,122,44,-13,51,54,202,122,44,58,50,54,202,122,44,-13,50,54,202,122,44,58,49,54,202,122,44,-13,49,54,202,122,44,58,48,54,202,122,44,-13,48,54,202,122,44,58,47,54,202,122,44,-13,47,54,202,122,44,58,46,54,202,122,44,-13,46,54,202,122,44,58,45,54,202,122,44,-13,45,54,202,122,44,58,44,54,202,122,44,-13,44,54,202,122,44,58,43,54,202,122,44,-13,43,54,202,122,44,58,42,54,202,122,44,-13,42,54,202,122,44,58,41,54,202,122,44,-13,41,54,202,122,44,58,40,54,202,122,44,-13,40,54,202,122,44,58,39,54,202,122,44,-13,39,54,202,122,44,58,38,54,202,122,44,-13,38,54,202,122,44,58,37,54,202,122,44,-13,37,54,202,122,44,58,36,54,202,122,44,-13,36,54,202,122,44,58,35,54,202,122,44,-13,35,54,202,122,44,58,34,54,202,122,44,-13,34,54,202,122,44,58,33,54,202,122,44,-13,33,54,202,122,44,58,32,54,202,122,44,-13,32,54,202,122,44,58,31,54,202,122,44,-13,31,54,202,122,44,58,30,54,202,122,44,-13,30,54,202,122,44,58,29,54,202,122,44,-13,29,54,202,122,44,58,28,54,202,122,44,-13,28,54,202,122,44,58,27,54,202,122,44,-13,27,54,202,122,44,58,26,54,202,122,44,-13,26,54,202,122,44,58,25,54,202,122,44,-13,25,54,202,122,44,58,24,54,202,122,44,-13,24,54,202,122,44,58,23,54,202,122,44,-13,23,54,202,122,44,58,22,54,202,122,44,-13,22,54,202,122,44,58,21,54,202,122,44,-13,21,54,202,122,44,58,20,54,202,122,44,-13,20,54,202,122,44,58,19,54,202,122,44,-13,19,54,202,122,44,58,18,54,202,122,44,-13,18,54,202,122,44,58,17,54,202,122,44,-13,17,54,202,122,44,58,16,54,202,122,44,-13,16,54,202,122,44,58,15,54,202,122,44,-13,15,54,202,122,44,58,14,54,202,122,44,-13,14,54,202,122,44,58,13,54,202,122,44,-13,13,54,202,122,44,58,12,54,202,122,44,-13,12,54,202,122,44,58,11,54,202,122,44,-13,11,54,202,122,44,58,10,54,202,122,44,-13,10,54,202,122,44,58,9,54,202,122,44,-13,9,54,202,122,44,58,8,54,202,122,44,-13,8,54,202,122,44,58,7,54,202,122,44,-13,7,54,202,122,44,58,6,54,202,122,44,-13,6,54,202,122,44,58,5,54,202,122,44,-13,5,54,202,122,44,58,4,54,202,122,44,-13,4,54,202,122,44,58,3,54,202,122,44,-13,3,54,202,122,44,58,2,54,202,122,44,-13,2,54,202,122,44,58,1,54,202,122,44,-13,1,54,202,122,44,58,0,54,202,122,44,-13,0,54,202,122,44,58,-1,54,202,122,44,-13,-1,54,202,122,44,58,-2,54,202,122,44,-13,-2,54,202,122,44,58,-3,54,202,122,44,-13,-3,54,202,122,44,58,-4,54,202,122,44,-13,-4,54,202,122,44,58,-5,54,202,122,44,-13,-5,54,202,122,44,58,-6,54,202,122,44,-13,-6,54,202,122,44,58,-7,54,202,122,44,-13,-7,54,202,122,44,58,-8,54,202,122,44,-13,-8,54,202,122,44,84,43,1,202,122,44,-39,44,1,202,122,44,58,-9,54,202,122,44,-13,-9,54,202,122,44,58,-10,54,202,122,44,-13,-10,54,202,122,44,58,-11,54,202,122,44,-13,-11,54,202,122,44,58,-12,54,202,122,44,-13,-12,54,202,122,44,58,-13,54,202,122,44,57,-13,54,202,122,44,56,-13,54,202,122,44,55,-13,54,202,122,44,54,-13,54,202,122,44,53,-13,54,202,122,44,52,-13,54,202,122,44,51,-13,54,202,122,44,50,-13,54,202,122,44,49,-13,54,202,122,44,48,-13,54,202,122,44,47,-13,54,202,122,44,46,-13,54,202,122,44,45,-13,54,202,122,44,44,-13,54,202,122,44,43,-13,54,202,122,44,42,-13,54,202,122,44,41,-13,54,202,122,44,40,-13,54,202,122,44,39,-13,54,202,122,44,38,-13,54,202,122,44,37,-13,54,202,122,44,36,-13,54,202,122,44,35,-13,54,202,122,44,34,-13,54,202,122,44,33,-13,54,202,122,44,32,-13,54,202,122,44,31,-13,54,202,122,44,30,-13,54,202,122,44,29,-13,54,202,122,44,28,-13,54,202,122,44,27,-13,54,202,122,44,26,-13,54,202,122,44,25,-13,54,202,122,44,24,-13,54,202,122,44,23,-13,54,202,122,44,22,-13,54,202,122,44,21,-13,54,202,122,44,20,-13,54,202,122,44,19,-13,54,202,122,44,18,-13,54,202,122,44,17,-13,54,202,122,44,16,-13,54,202,122,44,15,-13,54,202,122,44,14,-13,54,202,122,44,13,-13,54,202,122,44,12,-13,54,202,122,44,11,-13,54,202,122,44,10,-13,54,202,122,44,9,-13,54,202,122,44,8,-13,54,202,122,44,7,-13,54,202,122,44,6,-13,54,202,122,44,5,-13,54,202,122,44,4,-13,54,202,122,44,3,-13,54,202,122,44,2,-13,54,202,122,44,1,-13,54,202,122,44,0,-13,54,202,122,44,-1,-13,54,202,122,44,-2,-13,54,202,122,44,-3,-13,54,202,122,44,-4,-13,54,202,122,44,-5,-13,54,202,122,44,-6,-13,54,202,122,44,-7,-13,54,202,122,44,-8,-13,54,202,122,44,-9,-13,54,202,122,44,-10,-13,54,202,122,44,-11,-13,54,202,122,44,-12,-13,54,202,122,44,-13,-13,54,202,122,44,58,58,53,202,122,44,57,58,53,202,122,44,56,58,53,202,122,44,55,58,53,202,122,44,54,58,53,202,122,44,53,58,53,202,122,44,52,58,53,202,122,44,51,58,53,202,122,44,50,58,53,202,122,44,49,58,53,202,122,44,48,58,53,202,122,44,47,58,53,202,122,44,46,58,53,202,122,44,45,58,53,202,122,44,44,58,53,202,122,44,43,58,53,202,122,44,42,58,53,202,122,44,41,58,53,202,122,44,40,58,53,202,122,44,39,58,53,202,122,44,38,58,53,202,122,44,37,58,53,202,122,44,36,58,53,202,122,44,35,58,53,202,122,44,34,58,53,202,122,44,33,58,53,202,122,44,32,58,53,202,122,44,31,58,53,202,122,44,30,58,53,202,122,44,29,58,53,202,122,44,28,58,53,202,122,44,27,58,53,202,122,44,26,58,53,202,122,44,25,58,53,202,122,44,24,58,53,202,122,44,23,58,53,202,122,44,22,58,53,202,122,44,21,58,53,202,122,44,20,58,53,202,122,44,19,58,53,202,122,44,18,58,53,202,122,44,17,58,53,202,122,44,84,44,1,202,122,44,-39,45,1,202,122,44,16,58,53,202,122,44,15,58,53,202,122,44,14,58,53,202,122,44,13,58,53,202,122,44,12,58,53,202,122,44,11,58,53,202,122,44,10,58,53,202,122,44,9,58,53,202,122,44,8,58,53,202,122,44,7,58,53,202,122,44,6,58,53,202,122,44,5,58,53,202,122,44,4,58,53,202,122,44,3,58,53,202,122,44,2,58,53,202,122,44,1,58,53,202,122,44,0,58,53,202,122,44,-1,58,53,202,122,44,-2,58,53,202,122,44,-3,58,53,202,122,44,-4,58,53,202,122,44,-5,58,53,202,122,44,-6,58,53,202,122,44,-7,58,53,202,122,44,-8,58,53,202,122,44,-9,58,53,202,122,44,-10,58,53,202,122,44,-11,58,53,202,122,44,-12,58,53,202,122,44,-13,58,53,202,122,44,58,57,53,202,122,44,-13,57,53,202,122,44,58,56,53,202,122,44,-13,56,53,202,122,44,58,55,53,202,122,44,-13,55,53,202,122,44,58,54,53,202,122,44,-13,54,53,202,122,44,58,53,53,202,122,44,-13,53,53,202,122,44,58,52,53,202,122,44,-13,52,53,202,122,44,58,51,53,202,122,44,-13,51,53,202,122,44,58,50,53,202,122,44,-13,50,53,202,122,44,58,49,53,202,122,44,-13,49,53,202,122,44,58,48,53,202,122,44,-13,48,53,202,122,44,58,47,53,202,122,44,-13,47,53,202,122,44,58,46,53,202,122,44,-13,46,53,202,122,44,58,45,53,202,122,44,-13,45,53,202,122,44,58,44,53,202,122,44,-13,44,53,202,122,44,58,43,53,202,122,44,-13,43,53,202,122,44,58,42,53,202,122,44,-13,42,53,202,122,44,58,41,53,202,122,44,-13,41,53,202,122,44,58,40,53,202,122,44,-13,40,53,202,122,44,58,39,53,202,122,44,-13,39,53,202,122,44,58,38,53,202,122,44,-13,38,53,202,122,44,58,37,53,202,122,44,-13,37,53,202,122,44,58,36,53,202,122,44,-13,36,53,202,122,44,58,35,53,202,122,44,-13,35,53,202,122,44,58,34,53,202,122,44,-13,34,53,202,122,44,58,33,53,202,122,44,-13,33,53,202,122,44,58,32,53,202,122,44,-13,32,53,202,122,44,58,31,53,202,122,44,-13,31,53,202,122,44,58,30,53,202,122,44,-13,30,53,202,122,44,58,29,53,202,122,44,-13,29,53,202,122,44,58,28,53,202,122,44,-13,28,53,202,122,44,58,27,53,202,122,44,-13,27,53,202,122,44,58,26,53,202,122,44,-13,26,53,202,122,44,58,25,53,202,122,44,-13,25,53,202,122,44,58,24,53,202,122,44,-13,24,53,202,122,44,58,23,53,202,122,44,-13,23,53,202,122,44,58,22,53,202,122,44,-13,22,53,202,122,44,58,21,53,202,122,44,-13,21,53,202,122,44,58,20,53,202,122,44,-13,20,53,202,122,44,58,19,53,202,122,44,-13,19,53,202,122,44,58,18,53,202,122,44,-13,18,53,202,122,44,58,17,53,202,122,44,-13,17,53,202,122,44,58,16,53,202,122,44,-13,16,53,202,122,44,58,15,53,202,122,44,-13,15,53,202,122,44,58,14,53,202,122,44,-13,14,53,202,122,44,58,13,53,202,122,44,-13,13,53,202,122,44,58,12,53,202,122,44,-13,12,53,202,122,44,84,45,1,202,122,44,-39,46,1,202,122,44,58,11,53,202,122,44,-13,11,53,202,122,44,58,10,53,202,122,44,-13,10,53,202,122,44,58,9,53,202,122,44,-13,9,53,202,122,44,58,8,53,202,122,44,-13,8,53,202,122,44,58,7,53,202,122,44,-13,7,53,202,122,44,58,6,53,202,122,44,-13,6,53,202,122,44,58,5,53,202,122,44,-13,5,53,202,122,44,58,4,53,202,122,44,-13,4,53,202,122,44,58,3,53,202,122,44,-13,3,53,202,122,44,58,2,53,202,122,44,-13,2,53,202,122,44,58,1,53,202,122,44,-13,1,53,202,122,44,58,0,53,202,122,44,-13,0,53,202,122,44,58,-1,53,202,122,44,-13,-1,53,202,122,44,58,-2,53,202,122,44,-13,-2,53,202,122,44,58,-3,53,202,122,44,-13,-3,53,202,122,44,58,-4,53,202,122,44,-13,-4,53,202,122,44,58,-5,53,202,122,44,-13,-5,53,202,122,44,58,-6,53,202,122,44,-13,-6,53,202,122,44,58,-7,53,202,122,44,-13,-7,53,202,122,44,58,-8,53,202,122,44,-13,-8,53,202,122,44,58,-9,53,202,122,44,-13,-9,53,202,122,44,58,-10,53,202,122,44,-13,-10,53,202,122,44,58,-11,53,202,122,44,-13,-11,53,202,122,44,58,-12,53,202,122,44,-13,-12,53,202,122,44,58,-13,53,202,122,44,57,-13,53,202,122,44,56,-13,53,202,122,44,55,-13,53,202,122,44,54,-13,53,202,122,44,53,-13,53,202,122,44,52,-13,53,202,122,44,51,-13,53,202,122,44,50,-13,53,202,122,44,49,-13,53,202,122,44,48,-13,53,202,122,44,47,-13,53,202,122,44,46,-13,53,202,122,44,45,-13,53,202,122,44,44,-13,53,202,122,44,43,-13,53,202,122,44,42,-13,53,202,122,44,41,-13,53,202,122,44,40,-13,53,202,122,44,39,-13,53,202,122,44,38,-13,53,202,122,44,37,-13,53,202,122,44,36,-13,53,202,122,44,35,-13,53,202,122,44,34,-13,53,202,122,44,33,-13,53,202,122,44,32,-13,53,202,122,44,31,-13,53,202,122,44,30,-13,53,202,122,44,29,-13,53,202,122,44,28,-13,53,202,122,44,27,-13,53,202,122,44,26,-13,53,202,122,44,25,-13,53,202,122,44,24,-13,53,202,122,44,23,-13,53,202,122,44,22,-13,53,202,122,44,21,-13,53,202,122,44,20,-13,53,202,122,44,19,-13,53,202,122,44,18,-13,53,202,122,44,17,-13,53,202,122,44,16,-13,53,202,122,44,15,-13,53,202,122,44,14,-13,53,202,122,44,13,-13,53,202,122,44,12,-13,53,202,122,44,11,-13,53,202,122,44,10,-13,53,202,122,44,9,-13,53,202,122,44,8,-13,53,202,122,44,7,-13,53,202,122,44,6,-13,53,202,122,44,5,-13,53,202,122,44,4,-13,53,202,122,44,3,-13,53,202,122,44,2,-13,53,202,122,44,1,-13,53,202,122,44,0,-13,53,202,122,44,-1,-13,53,202,122,44,-2,-13,53,202,122,44,-3,-13,53,202,122,44,-4,-13,53,202,122,44,-5,-13,53,202,122,44,-6,-13,53,202,122,44,-7,-13,53,202,122,44,-8,-13,53,202,122,44,-9,-13,53,202,122,44,-10,-13,53,202,122,44,-11,-13,53,202,122,44,-12,-13,53,202,122,44,-13,-13,53,202,122,44,59,59,52,202,122,44,58,59,52,202,122,44,84,46,1,202,122,44,-39,47,1,202,122,44,57,59,52,202,122,44,56,59,52,202,122,44,55,59,52,202,122,44,54,59,52,202,122,44,53,59,52,202,122,44,52,59,52,202,122,44,51,59,52,202,122,44,50,59,52,202,122,44,49,59,52,202,122,44,48,59,52,202,122,44,47,59,52,202,122,44,46,59,52,202,122,44,45,59,52,202,122,44,44,59,52,202,122,44,43,59,52,202,122,44,42,59,52,202,122,44,41,59,52,202,122,44,40,59,52,202,122,44,39,59,52,202,122,44,38,59,52,202,122,44,37,59,52,202,122,44,36,59,52,202,122,44,35,59,52,202,122,44,34,59,52,202,122,44,33,59,52,202,122,44,32,59,52,202,122,44,31,59,52,202,122,44,30,59,52,202,122,44,29,59,52,202,122,44,28,59,52,202,122,44,27,59,52,202,122,44,26,59,52,202,122,44,25,59,52,202,122,44,24,59,52,202,122,44,23,59,52,202,122,44,22,59,52,202,122,44,21,59,52,202,122,44,20,59,52,202,122,44,19,59,52,202,122,44,18,59,52,202,122,44,17,59,52,202,122,44,16,59,52,202,122,44,15,59,52,202,122,44,14,59,52,202,122,44,13,59,52,202,122,44,12,59,52,202,122,44,11,59,52,202,122,44,10,59,52,202,122,44,9,59,52,202,122,44,8,59,52,202,122,44,7,59,52,202,122,44,6,59,52,202,122,44,5,59,52,202,122,44,4,59,52,202,122,44,3,59,52,202,122,44,2,59,52,202,122,44,1,59,52,202,122,44,0,59,52,202,122,44,-1,59,52,202,122,44,-2,59,52,202,122,44,-3,59,52,202,122,44,-4,59,52,202,122,44,-5,59,52,202,122,44,-6,59,52,202,122,44,-7,59,52,202,122,44,-8,59,52,202,122,44,-9,59,52,202,122,44,-10,59,52,202,122,44,-11,59,52,202,122,44,-12,59,52,202,122,44,-13,59,52,202,122,44,-14,59,52,202,122,44,59,58,52,202,122,44,-14,58,52,202,122,44,59,57,52,202,122,44,-14,57,52,202,122,44,59,56,52,202,122,44,-14,56,52,202,122,44,59,55,52,202,122,44,-14,55,52,202,122,44,59,54,52,202,122,44,-14,54,52,202,122,44,59,53,52,202,122,44,-14,53,52,202,122,44,59,52,52,202,122,44,-14,52,52,202,122,44,59,51,52,202,122,44,-14,51,52,202,122,44,59,50,52,202,122,44,-14,50,52,202,122,44,59,49,52,202,122,44,-14,49,52,202,122,44,59,48,52,202,122,44,-14,48,52,202,122,44,59,47,52,202,122,44,-14,47,52,202,122,44,59,46,52,202,122,44,-14,46,52,202,122,44,59,45,52,202,122,44,-14,45,52,202,122,44,59,44,52,202,122,44,-14,44,52,202,122,44,59,43,52,202,122,44,-14,43,52,202,122,44,59,42,52,202,122,44,-14,42,52,202,122,44,59,41,52,202,122,44,-14,41,52,202,122,44,59,40,52,202,122,44,-14,40,52,202,122,44,59,39,52,202,122,44,-14,39,52,202,122,44,59,38,52,202,122,44,-14,38,52,202,122,44,59,37,52,202,122,44,-14,37,52,202,122,44,59,36,52,202,122,44,-14,36,52,202,122,44,59,35,52,202,122,44,-14,35,52,202,122,44,59,34,52,202,122,44,-14,34,52,202,122,44,84,47,1,202,122,44,-39,48,1,202,122,44,59,33,52,202,122,44,-14,33,52,202,122,44,59,32,52,202,122,44,-14,32,52,202,122,44,59,31,52,202,122,44,-14,31,52,202,122,44,59,30,52,202,122,44,-14,30,52,202,122,44,59,29,52,202,122,44,-14,29,52,202,122,44,59,28,52,202,122,44,-14,28,52,202,122,44,59,27,52,202,122,44,-14,27,52,202,122,44,59,26,52,202,122,44,-14,26,52,202,122,44,59,25,52,202,122,44,-14,25,52,202,122,44,59,24,52,202,122,44,-14,24,52,202,122,44,59,23,52,202,122,44,-14,23,52,202,122,44,59,22,52,202,122,44,-14,22,52,202,122,44,59,21,52,202,122,44,-14,21,52,202,122,44,59,20,52,202,122,44,-14,20,52,202,122,44,59,19,52,202,122,44,-14,19,52,202,122,44,59,18,52,202,122,44,-14,18,52,202,122,44,59,17,52,202,122,44,-14,17,52,202,122,44,59,16,52,202,122,44,-14,16,52,202,122,44,59,15,52,202,122,44,-14,15,52,202,122,44,59,14,52,202,122,44,-14,14,52,202,122,44,59,13,52,202,122,44,-14,13,52,202,122,44,59,12,52,202,122,44,-14,12,52,202,122,44,59,11,52,202,122,44,-14,11,52,202,122,44,59,10,52,202,122,44,-14,10,52,202,122,44,59,9,52,202,122,44,-14,9,52,202,122,44,59,8,52,202,122,44,-14,8,52,202,122,44,59,7,52,202,122,44,-14,7,52,202,122,44,59,6,52,202,122,44,-14,6,52,202,122,44,59,5,52,202,122,44,-14,5,52,202,122,44,59,4,52,202,122,44,-14,4,52,202,122,44,59,3,52,202,122,44,-14,3,52,202,122,44,59,2,52,202,122,44,-14,2,52,202,122,44,59,1,52,202,122,44,-14,1,52,202,122,44,59,0,52,202,122,44,-14,0,52,202,122,44,59,-1,52,202,122,44,-14,-1,52,202,122,44,59,-2,52,202,122,44,-14,-2,52,202,122,44,59,-3,52,202,122,44,-14,-3,52,202,122,44,59,-4,52,202,122,44,-14,-4,52,202,122,44,59,-5,52,202,122,44,-14,-5,52,202,122,44,59,-6,52,202,122,44,-14,-6,52,202,122,44,59,-7,52,202,122,44,-14,-7,52,202,122,44,59,-8,52,202,122,44,-14,-8,52,202,122,44,59,-9,52,202,122,44,-14,-9,52,202,122,44,59,-10,52,202,122,44,-14,-10,52,202,122,44,59,-11,52,202,122,44,-14,-11,52,202,122,44,59,-12,52,202,122,44,-14,-12,52,202,122,44,59,-13,52,202,122,44,-14,-13,52,202,122,44,59,-14,52,202,122,44,58,-14,52,202,122,44,57,-14,52,202,122,44,56,-14,52,202,122,44,55,-14,52,202,122,44,54,-14,52,202,122,44,53,-14,52,202,122,44,52,-14,52,202,122,44,51,-14,52,202,122,44,50,-14,52,202,122,44,49,-14,52,202,122,44,48,-14,52,202,122,44,47,-14,52,202,122,44,46,-14,52,202,122,44,45,-14,52,202,122,44,44,-14,52,202,122,44,43,-14,52,202,122,44,42,-14,52,202,122,44,41,-14,52,202,122,44,40,-14,52,202,122,44,39,-14,52,202,122,44,38,-14,52,202,122,44,37,-14,52,202,122,44,36,-14,52,202,122,44,35,-14,52,202,122,44,34,-14,52,202,122,44,33,-14,52,202,122,44,32,-14,52,202,122,44,84,48,1,202,122,44,-39,49,1,202,122,44,31,-14,52,202,122,44,30,-14,52,202,122,44,29,-14,52,202,122,44,28,-14,52,202,122,44,27,-14,52,202,122,44,26,-14,52,202,122,44,25,-14,52,202,122,44,24,-14,52,202,122,44,23,-14,52,202,122,44,22,-14,52,202,122,44,21,-14,52,202,122,44,20,-14,52,202,122,44,19,-14,52,202,122,44,18,-14,52,202,122,44,17,-14,52,202,122,44,16,-14,52,202,122,44,15,-14,52,202,122,44,14,-14,52,202,122,44,13,-14,52,202,122,44,12,-14,52,202,122,44,11,-14,52,202,122,44,10,-14,52,202,122,44,9,-14,52,202,122,44,8,-14,52,202,122,44,7,-14,52,202,122,44,6,-14,52,202,122,44,5,-14,52,202,122,44,4,-14,52,202,122,44,3,-14,52,202,122,44,2,-14,52,202,122,44,1,-14,52,202,122,44,0,-14,52,202,122,44,-1,-14,52,202,122,44,-2,-14,52,202,122,44,-3,-14,52,202,122,44,-4,-14,52,202,122,44,-5,-14,52,202,122,44,-6,-14,52,202,122,44,-7,-14,52,202,122,44,-8,-14,52,202,122,44,-9,-14,52,202,122,44,-10,-14,52,202,122,44,-11,-14,52,202,122,44,-12,-14,52,202,122,44,-13,-14,52,202,122,44,-14,-14,52,202,122,44,59,59,51,202,122,44,58,59,51,202,122,44,57,59,51,202,122,44,56,59,51,202,122,44,55,59,51,202,122,44,54,59,51,202,122,44,53,59,51,202,122,44,52,59,51,202,122,44,51,59,51,202,122,44,50,59,51,202,122,44,49,59,51,202,122,44,48,59,51,202,122,44,47,59,51,202,122,44,46,59,51,202,122,44,45,59,51,202,122,44,44,59,51,202,122,44,43,59,51,202,122,44,42,59,51,202,122,44,41,59,51,202,122,44,40,59,51,202,122,44,39,59,51,202,122,44,38,59,51,202,122,44,37,59,51,202,122,44,36,59,51,202,122,44,35,59,51,202,122,44,34,59,51,202,122,44,33,59,51,202,122,44,32,59,51,202,122,44,31,59,51,202,122,44,30,59,51,202,122,44,29,59,51,202,122,44,28,59,51,202,122,44,27,59,51,202,122,44,26,59,51,202,122,44,25,59,51,202,122,44,24,59,51,202,122,44,23,59,51,202,122,44,22,59,51,202,122,44,21,59,51,202,122,44,20,59,51,202,122,44,19,59,51,202,122,44,18,59,51,202,122,44,17,59,51,202,122,44,16,59,51,202,122,44,15,59,51,202,122,44,14,59,51,202,122,44,13,59,51,202,122,44,12,59,51,202,122,44,11,59,51,202,122,44,10,59,51,202,122,44,9,59,51,202,122,44,8,59,51,202,122,44,7,59,51,202,122,44,6,59,51,202,122,44,5,59,51,202,122,44,4,59,51,202,122,44,3,59,51,202,122,44,2,59,51,202,122,44,1,59,51,202,122,44,0,59,51,202,122,44,-1,59,51,202,122,44,-2,59,51,202,122,44,-3,59,51,202,122,44,-4,59,51,202,122,44,-5,59,51,202,122,44,-6,59,51,202,122,44,-7,59,51,202,122,44,-8,59,51,202,122,44,-9,59,51,202,122,44,-10,59,51,202,122,44,-11,59,51,202,122,44,-12,59,51,202,122,44,-13,59,51,202,122,44,-14,59,51,202,122,44,59,58,51,202,122,44,-14,58,51,202,122,44,84,49,1,202,122,44,-39,50,1,202,122,44,59,57,51,202,122,44,-14,57,51,202,122,44,59,56,51,202,122,44,-14,56,51,202,122,44,59,55,51,202,122,44,-14,55,51,202,122,44,59,54,51,202,122,44,-14,54,51,202,122,44,59,53,51,202,122,44,-14,53,51,202,122,44,59,52,51,202,122,44,-14,52,51,202,122,44,59,51,51,202,122,44,-14,51,51,202,122,44,59,50,51,202,122,44,-14,50,51,202,122,44,59,49,51,202,122,44,-14,49,51,202,122,44,59,48,51,202,122,44,-14,48,51,202,122,44,59,47,51,202,122,44,-14,47,51,202,122,44,59,46,51,202,122,44,-14,46,51,202,122,44,59,45,51,202,122,44,-14,45,51,202,122,44,59,44,51,202,122,44,-14,44,51,202,122,44,59,43,51,202,122,44,-14,43,51,202,122,44,59,42,51,202,122,44,-14,42,51,202,122,44,59,41,51,202,122,44,-14,41,51,202,122,44,59,40,51,202,122,44,-14,40,51,202,122,44,59,39,51,202,122,44,-14,39,51,202,122,44,59,38,51,202,122,44,-14,38,51,202,122,44,59,37,51,202,122,44,-14,37,51,202,122,44,59,36,51,202,122,44,-14,36,51,202,122,44,59,35,51,202,122,44,-14,35,51,202,122,44,59,34,51,202,122,44,-14,34,51,202,122,44,59,33,51,202,122,44,-14,33,51,202,122,44,59,32,51,202,122,44,-14,32,51,202,122,44,59,31,51,202,122,44,-14,31,51,202,122,44,59,30,51,202,122,44,-14,30,51,202,122,44,59,29,51,202,122,44,-14,29,51,202,122,44,59,28,51,202,122,44,-14,28,51,202,122,44,59,27,51,202,122,44,-14,27,51,202,122,44,59,26,51,202,122,44,-14,26,51,202,122,44,59,25,51,202,122,44,-14,25,51,202,122,44,59,24,51,202,122,44,-14,24,51,202,122,44,59,23,51,202,122,44,-14,23,51,202,122,44,59,22,51,202,122,44,-14,22,51,202,122,44,59,21,51,202,122,44,-14,21,51,202,122,44,59,20,51,202,122,44,-14,20,51,202,122,44,59,19,51,202,122,44,-14,19,51,202,122,44,59,18,51,202,122,44,-14,18,51,202,122,44,59,17,51,202,122,44,-14,17,51,202,122,44,59,16,51,202,122,44,-14,16,51,202,122,44,59,15,51,202,122,44,-14,15,51,202,122,44,59,14,51,202,122,44,-14,14,51,202,122,44,59,13,51,202,122,44,-14,13,51,202,122,44,59,12,51,202,122,44,-14,12,51,202,122,44,59,11,51,202,122,44,-14,11,51,202,122,44,59,10,51,202,122,44,-14,10,51,202,122,44,59,9,51,202,122,44,-14,9,51,202,122,44,59,8,51,202,122,44,-14,8,51,202,122,44,59,7,51,202,122,44,-14,7,51,202,122,44,59,6,51,202,122,44,-14,6,51,202,122,44,59,5,51,202,122,44,-14,5,51,202,122,44,59,4,51,202,122,44,-14,4,51,202,122,44,59,3,51,202,122,44,-14,3,51,202,122,44,59,2,51,202,122,44,-14,2,51,202,122,44,59,1,51,202,122,44,-14,1,51,202,122,44,59,0,51,202,122,44,-14,0,51,202,122,44,59,-1,51,202,122,44,-14,-1,51,202,122,44,59,-2,51,202,122,44,-14,-2,51,202,122,44,59,-3,51,202,122,44,-14,-3,51,202,122,44,84,50,1,202,122,44,-39,51,1,202,122,44,59,-4,51,202,122,44,-14,-4,51,202,122,44,59,-5,51,202,122,44,-14,-5,51,202,122,44,59,-6,51,202,122,44,-14,-6,51,202,122,44,59,-7,51,202,122,44,-14,-7,51,202,122,44,59,-8,51,202,122,44,-14,-8,51,202,122,44,59,-9,51,202,122,44,-14,-9,51,202,122,44,59,-10,51,202,122,44,-14,-10,51,202,122,44,59,-11,51,202,122,44,-14,-11,51,202,122,44,59,-12,51,202,122,44,-14,-12,51,202,122,44,59,-13,51,202,122,44,-14,-13,51,202,122,44,59,-14,51,202,122,44,58,-14,51,202,122,44,57,-14,51,202,122,44,56,-14,51,202,122,44,55,-14,51,202,122,44,54,-14,51,202,122,44,53,-14,51,202,122,44,52,-14,51,202,122,44,51,-14,51,202,122,44,50,-14,51,202,122,44,49,-14,51,202,122,44,48,-14,51,202,122,44,47,-14,51,202,122,44,46,-14,51,202,122,44,45,-14,51,202,122,44,44,-14,51,202,122,44,43,-14,51,202,122,44,42,-14,51,202,122,44,41,-14,51,202,122,44,40,-14,51,202,122,44,39,-14,51,202,122,44,38,-14,51,202,122,44,37,-14,51,202,122,44,36,-14,51,202,122,44,35,-14,51,202,122,44,34,-14,51,202,122,44,33,-14,51,202,122,44,32,-14,51,202,122,44,31,-14,51,202,122,44,30,-14,51,202,122,44,29,-14,51,202,122,44,28,-14,51,202,122,44,27,-14,51,202,122,44,26,-14,51,202,122,44,25,-14,51,202,122,44,24,-14,51,202,122,44,23,-14,51,202,122,44,22,-14,51,202,122,44,21,-14,51,202,122,44,20,-14,51,202,122,44,19,-14,51,202,122,44,18,-14,51,202,122,44,17,-14,51,202,122,44,16,-14,51,202,122,44,15,-14,51,202,122,44,14,-14,51,202,122,44,13,-14,51,202,122,44,12,-14,51,202,122,44,11,-14,51,202,122,44,10,-14,51,202,122,44,9,-14,51,202,122,44,8,-14,51,202,122,44,7,-14,51,202,122,44,6,-14,51,202,122,44,5,-14,51,202,122,44,4,-14,51,202,122,44,3,-14,51,202,122,44,2,-14,51,202,122,44,1,-14,51,202,122,44,0,-14,51,202,122,44,-1,-14,51,202,122,44,-2,-14,51,202,122,44,-3,-14,51,202,122,44,-4,-14,51,202,122,44,-5,-14,51,202,122,44,-6,-14,51,202,122,44,-7,-14,51,202,122,44,-8,-14,51,202,122,44,-9,-14,51,202,122,44,-10,-14,51,202,122,44,-11,-14,51,202,122,44,-12,-14,51,202,122,44,-13,-14,51,202,122,44,-14,-14,51,202,122,44,60,60,50,202,122,44,59,60,50,202,122,44,58,60,50,202,122,44,57,60,50,202,122,44,56,60,50,202,122,44,55,60,50,202,122,44,54,60,50,202,122,44,53,60,50,202,122,44,52,60,50,202,122,44,51,60,50,202,122,44,50,60,50,202,122,44,49,60,50,202,122,44,48,60,50,202,122,44,47,60,50,202,122,44,46,60,50,202,122,44,45,60,50,202,122,44,44,60,50,202,122,44,43,60,50,202,122,44,42,60,50,202,122,44,41,60,50,202,122,44,40,60,50,202,122,44,39,60,50,202,122,44,38,60,50,202,122,44,37,60,50,202,122,44,36,60,50,202,122,44,35,60,50,202,122,44,34,60,50,202,122,44,33,60,50,202,122,44,84,51,1,202,122,44,-39,52,1,202,122,44,32,60,50,202,122,44,31,60,50,202,122,44,30,60,50,202,122,44,29,60,50,202,122,44,28,60,50,202,122,44,27,60,50,202,122,44,26,60,50,202,122,44,25,60,50,202,122,44,24,60,50,202,122,44,23,60,50,202,122,44,22,60,50,202,122,44,21,60,50,202,122,44,20,60,50,202,122,44,19,60,50,202,122,44,18,60,50,202,122,44,17,60,50,202,122,44,16,60,50,202,122,44,15,60,50,202,122,44,14,60,50,202,122,44,13,60,50,202,122,44,12,60,50,202,122,44,11,60,50,202,122,44,10,60,50,202,122,44,9,60,50,202,122,44,8,60,50,202,122,44,7,60,50,202,122,44,6,60,50,202,122,44,5,60,50,202,122,44,4,60,50,202,122,44,3,60,50,202,122,44,2,60,50,202,122,44,1,60,50,202,122,44,0,60,50,202,122,44,-1,60,50,202,122,44,-2,60,50,202,122,44,-3,60,50,202,122,44,-4,60,50,202,122,44,-5,60,50,202,122,44,-6,60,50,202,122,44,-7,60,50,202,122,44,-8,60,50,202,122,44,-9,60,50,202,122,44,-10,60,50,202,122,44,-11,60,50,202,122,44,-12,60,50,202,122,44,-13,60,50,202,122,44,-14,60,50,202,122,44,-15,60,50,202,122,44,60,59,50,202,122,44,-15,59,50,202,122,44,60,58,50,202,122,44,-15,58,50,202,122,44,60,57,50,202,122,44,-15,57,50,202,122,44,60,56,50,202,122,44,-15,56,50,202,122,44,60,55,50,202,122,44,-15,55,50,202,122,44,60,54,50,202,122,44,-15,54,50,202,122,44,60,53,50,202,122,44,-15,53,50,202,122,44,60,52,50,202,122,44,-15,52,50,202,122,44,60,51,50,202,122,44,-15,51,50,202,122,44,60,50,50,202,122,44,-15,50,50,202,122,44,60,49,50,202,122,44,-15,49,50,202,122,44,60,48,50,202,122,44,-15,48,50,202,122,44,60,47,50,202,122,44,-15,47,50,202,122,44,60,46,50,202,122,44,-15,46,50,202,122,44,60,45,50,202,122,44,-15,45,50,202,122,44,60,44,50,202,122,44,-15,44,50,202,122,44,60,43,50,202,122,44,-15,43,50,202,122,44,60,42,50,202,122,44,-15,42,50,202,122,44,60,41,50,202,122,44,-15,41,50,202,122,44,60,40,50,202,122,44,-15,40,50,202,122,44,60,39,50,202,122,44,-15,39,50,202,122,44,60,38,50,202,122,44,-15,38,50,202,122,44,60,37,50,202,122,44,-15,37,50,202,122,44,60,36,50,202,122,44,-15,36,50,202,122,44,60,35,50,202,122,44,-15,35,50,202,122,44,60,34,50,202,122,44,-15,34,50,202,122,44,60,33,50,202,122,44,-15,33,50,202,122,44,60,32,50,202,122,44,-15,32,50,202,122,44,60,31,50,202,122,44,-15,31,50,202,122,44,60,30,50,202,122,44,-15,30,50,202,122,44,60,29,50,202,122,44,-15,29,50,202,122,44,60,28,50,202,122,44,-15,28,50,202,122,44,60,27,50,202,122,44,-15,27,50,202,122,44,60,26,50,202,122,44,-15,26,50,202,122,44,60,25,50,202,122,44,-15,25,50,202,122,44,60,24,50,202,122,44,-15,24,50,202,122,44,60,23,50,202,122,44,-15,23,50,202,122,44,84,52,1,202,122,44,-39,53,1,202,122,44,60,22,50,202,122,44,-15,22,50,202,122,44,60,21,50,202,122,44,-15,21,50,202,122,44,60,20,50,202,122,44,-15,20,50,202,122,44,60,19,50,202,122,44,-15,19,50,202,122,44,60,18,50,202,122,44,-15,18,50,202,122,44,60,17,50,202,122,44,-15,17,50,202,122,44,60,16,50,202,122,44,-15,16,50,202,122,44,60,15,50,202,122,44,-15,15,50,202,122,44,60,14,50,202,122,44,-15,14,50,202,122,44,60,13,50,202,122,44,-15,13,50,202,122,44,60,12,50,202,122,44,-15,12,50,202,122,44,60,11,50,202,122,44,-15,11,50,202,122,44,60,10,50,202,122,44,-15,10,50,202,122,44,60,9,50,202,122,44,-15,9,50,202,122,44,60,8,50,202,122,44,-15,8,50,202,122,44,60,7,50,202,122,44,-15,7,50,202,122,44,60,6,50,202,122,44,-15,6,50,202,122,44,60,5,50,202,122,44,-15,5,50,202,122,44,60,4,50,202,122,44,-15,4,50,202,122,44,60,3,50,202,122,44,-15,3,50,202,122,44,60,2,50,202,122,44,-15,2,50,202,122,44,60,1,50,202,122,44,-15,1,50,202,122,44,60,0,50,202,122,44,-15,0,50,202,122,44,60,-1,50,202,122,44,-15,-1,50,202,122,44,60,-2,50,202,122,44,-15,-2,50,202,122,44,60,-3,50,202,122,44,-15,-3,50,202,122,44,60,-4,50,202,122,44,-15,-4,50,202,122,44,60,-5,50,202,122,44,-15,-5,50,202,122,44,60,-6,50,202,122,44,-15,-6,50,202,122,44,60,-7,50,202,122,44,-15,-7,50,202,122,44,60,-8,50,202,122,44,-15,-8,50,202,122,44,60,-9,50,202,122,44,-15,-9,50,202,122,44,60,-10,50,202,122,44,-15,-10,50,202,122,44,60,-11,50,202,122,44,-15,-11,50,202,122,44,60,-12,50,202,122,44,-15,-12,50,202,122,44,60,-13,50,202,122,44,-15,-13,50,202,122,44,60,-14,50,202,122,44,-15,-14,50,202,122,44,60,-15,50,202,122,44,59,-15,50,202,122,44,58,-15,50,202,122,44,57,-15,50,202,122,44,56,-15,50,202,122,44,55,-15,50,202,122,44,54,-15,50,202,122,44,53,-15,50,202,122,44,52,-15,50,202,122,44,51,-15,50,202,122,44,50,-15,50,202,122,44,49,-15,50,202,122,44,48,-15,50,202,122,44,47,-15,50,202,122,44,46,-15,50,202,122,44,45,-15,50,202,122,44,44,-15,50,202,122,44,43,-15,50,202,122,44,42,-15,50,202,122,44,41,-15,50,202,122,44,40,-15,50,202,122,44,39,-15,50,202,122,44,38,-15,50,202,122,44,37,-15,50,202,122,44,36,-15,50,202,122,44,35,-15,50,202,122,44,34,-15,50,202,122,44,33,-15,50,202,122,44,32,-15,50,202,122,44,31,-15,50,202,122,44,30,-15,50,202,122,44,29,-15,50,202,122,44,28,-15,50,202,122,44,27,-15,50,202,122,44,26,-15,50,202,122,44,25,-15,50,202,122,44,24,-15,50,202,122,44,23,-15,50,202,122,44,22,-15,50,202,122,44,21,-15,50,202,122,44,20,-15,50,202,122,44,19,-15,50,202,122,44,18,-15,50,202,122,44,17,-15,50,202,122,44,16,-15,50,202,122,44,15,-15,50,202,122,44,14,-15,50,202,122,44,13,-15,50,202,122,44,84,53,1,202,122,44,-39,54,1,202,122,44,12,-15,50,202,122,44,11,-15,50,202,122,44,10,-15,50,202,122,44,9,-15,50,202,122,44,8,-15,50,202,122,44,7,-15,50,202,122,44,6,-15,50,202,122,44,5,-15,50,202,122,44,4,-15,50,202,122,44,3,-15,50,202,122,44,2,-15,50,202,122,44,1,-15,50,202,122,44,0,-15,50,202,122,44,-1,-15,50,202,122,44,-2,-15,50,202,122,44,-3,-15,50,202,122,44,-4,-15,50,202,122,44,-5,-15,50,202,122,44,-6,-15,50,202,122,44,-7,-15,50,202,122,44,-8,-15,50,202,122,44,-9,-15,50,202,122,44,-10,-15,50,202,122,44,-11,-15,50,202,122,44,-12,-15,50,202,122,44,-13,-15,50,202,122,44,-14,-15,50,202,122,44,-15,-15,50,202,122,44,60,60,49,202,122,44,59,60,49,202,122,44,58,60,49,202,122,44,57,60,49,202,122,44,56,60,49,202,122,44,55,60,49,202,122,44,54,60,49,202,122,44,53,60,49,202,122,44,52,60,49,202,122,44,51,60,49,202,122,44,50,60,49,202,122,44,49,60,49,202,122,44,48,60,49,202,122,44,47,60,49,202,122,44,46,60,49,202,122,44,45,60,49,202,122,44,44,60,49,202,122,44,43,60,49,202,122,44,42,60,49,202,122,44,41,60,49,202,122,44,40,60,49,202,122,44,39,60,49,202,122,44,38,60,49,202,122,44,37,60,49,202,122,44,36,60,49,202,122,44,35,60,49,202,122,44,34,60,49,202,122,44,33,60,49,202,122,44,32,60,49,202,122,44,31,60,49,202,122,44,30,60,49,202,122,44,29,60,49,202,122,44,28,60,49,202,122,44,27,60,49,202,122,44,26,60,49,202,122,44,25,60,49,202,122,44,24,60,49,202,122,44,23,60,49,202,122,44,22,60,49,202,122,44,21,60,49,202,122,44,20,60,49,202,122,44,19,60,49,202,122,44,18,60,49,202,122,44,17,60,49,202,122,44,16,60,49,202,122,44,15,60,49,202,122,44,14,60,49,202,122,44,13,60,49,202,122,44,12,60,49,202,122,44,11,60,49,202,122,44,10,60,49,202,122,44,9,60,49,202,122,44,8,60,49,202,122,44,7,60,49,202,122,44,6,60,49,202,122,44,5,60,49,202,122,44,4,60,49,202,122,44,3,60,49,202,122,44,2,60,49,202,122,44,1,60,49,202,122,44,0,60,49,202,122,44,-1,60,49,202,122,44,-2,60,49,202,122,44,-3,60,49,202,122,44,-4,60,49,202,122,44,-5,60,49,202,122,44,-6,60,49,202,122,44,-7,60,49,202,122,44,-8,60,49,202,122,44,-9,60,49,202,122,44,-10,60,49,202,122,44,-11,60,49,202,122,44,-12,60,49,202,122,44,-13,60,49,202,122,44,-14,60,49,202,122,44,-15,60,49,202,122,44,60,59,49,202,122,44,-15,59,49,202,122,44,60,58,49,202,122,44,-15,58,49,202,122,44,60,57,49,202,122,44,-15,57,49,202,122,44,60,56,49,202,122,44,-15,56,49,202,122,44,60,55,49,202,122,44,-15,55,49,202,122,44,60,54,49,202,122,44,-15,54,49,202,122,44,60,53,49,202,122,44,-15,53,49,202,122,44,60,52,49,202,122,44,-15,52,49,202,122,44,60,51,49,202,122,44,-15,51,49,202,122,44,84,54,1,202,122,44,-39,55,1,202,122,44,60,50,49,202,122,44,-15,50,49,202,122,44,60,49,49,202,122,44,-15,49,49,202,122,44,60,48,49,202,122,44,-15,48,49,202,122,44,60,47,49,202,122,44,-15,47,49,202,122,44,60,46,49,202,122,44,-15,46,49,202,122,44,60,45,49,202,122,44,-15,45,49,202,122,44,60,44,49,202,122,44,-15,44,49,202,122,44,60,43,49,202,122,44,-15,43,49,202,122,44,60,42,49,202,122,44,-15,42,49,202,122,44,60,41,49,202,122,44,-15,41,49,202,122,44,60,40,49,202,122,44,-15,40,49,202,122,44,60,39,49,202,122,44,-15,39,49,202,122,44,60,38,49,202,122,44,-15,38,49,202,122,44,60,37,49,202,122,44,-15,37,49,202,122,44,60,36,49,202,122,44,-15,36,49,202,122,44,60,35,49,202,122,44,-15,35,49,202,122,44,60,34,49,202,122,44,-15,34,49,202,122,44,60,33,49,202,122,44,-15,33,49,202,122,44,60,32,49,202,122,44,-15,32,49,202,122,44,60,31,49,202,122,44,-15,31,49,202,122,44,60,30,49,202,122,44,-15,30,49,202,122,44,60,29,49,202,122,44,-15,29,49,202,122,44,60,28,49,202,122,44,-15,28,49,202,122,44,60,27,49,202,122,44,-15,27,49,202,122,44,60,26,49,202,122,44,-15,26,49,202,122,44,60,25,49,202,122,44,-15,25,49,202,122,44,60,24,49,202,122,44,-15,24,49,202,122,44,60,23,49,202,122,44,-15,23,49,202,122,44,60,22,49,202,122,44,-15,22,49,202,122,44,60,21,49,202,122,44,-15,21,49,202,122,44,60,20,49,202,122,44,-15,20,49,202,122,44,60,19,49,202,122,44,-15,19,49,202,122,44,60,18,49,202,122,44,-15,18,49,202,122,44,60,17,49,202,122,44,-15,17,49,202,122,44,60,16,49,202,122,44,-15,16,49,202,122,44,60,15,49,202,122,44,-15,15,49,202,122,44,60,14,49,202,122,44,-15,14,49,202,122,44,60,13,49,202,122,44,-15,13,49,202,122,44,60,12,49,202,122,44,-15,12,49,202,122,44,60,11,49,202,122,44,-15,11,49,202,122,44,60,10,49,202,122,44,-15,10,49,202,122,44,60,9,49,202,122,44,-15,9,49,202,122,44,60,8,49,202,122,44,-15,8,49,202,122,44,60,7,49,202,122,44,-15,7,49,202,122,44,60,6,49,202,122,44,-15,6,49,202,122,44,60,5,49,202,122,44,-15,5,49,202,122,44,60,4,49,202,122,44,-15,4,49,202,122,44,60,3,49,202,122,44,-15,3,49,202,122,44,60,2,49,202,122,44,-15,2,49,202,122,44,60,1,49,202,122,44,-15,1,49,202,122,44,60,0,49,202,122,44,-15,0,49,202,122,44,60,-1,49,202,122,44,-15,-1,49,202,122,44,60,-2,49,202,122,44,-15,-2,49,202,122,44,60,-3,49,202,122,44,-15,-3,49,202,122,44,60,-4,49,202,122,44,-15,-4,49,202,122,44,60,-5,49,202,122,44,-15,-5,49,202,122,44,60,-6,49,202,122,44,-15,-6,49,202,122,44,60,-7,49,202,122,44,-15,-7,49,202,122,44,60,-8,49,202,122,44,-15,-8,49,202,122,44,60,-9,49,202,122,44,-15,-9,49,202,122,44,60,-10,49,202,122,44,-15,-10,49,202,122,44,84,55,1,202,122,44,-39,56,1,202,122,44,60,-11,49,202,122,44,-15,-11,49,202,122,44,60,-12,49,202,122,44,-15,-12,49,202,122,44,60,-13,49,202,122,44,-15,-13,49,202,122,44,60,-14,49,202,122,44,-15,-14,49,202,122,44,60,-15,49,202,122,44,59,-15,49,202,122,44,58,-15,49,202,122,44,57,-15,49,202,122,44,56,-15,49,202,122,44,55,-15,49,202,122,44,54,-15,49,202,122,44,53,-15,49,202,122,44,52,-15,49,202,122,44,51,-15,49,202,122,44,50,-15,49,202,122,44,49,-15,49,202,122,44,48,-15,49,202,122,44,47,-15,49,202,122,44,46,-15,49,202,122,44,45,-15,49,202,122,44,44,-15,49,202,122,44,43,-15,49,202,122,44,42,-15,49,202,122,44,41,-15,49,202,122,44,40,-15,49,202,122,44,39,-15,49,202,122,44,38,-15,49,202,122,44,37,-15,49,202,122,44,36,-15,49,202,122,44,35,-15,49,202,122,44,34,-15,49,202,122,44,33,-15,49,202,122,44,32,-15,49,202,122,44,31,-15,49,202,122,44,30,-15,49,202,122,44,29,-15,49,202,122,44,28,-15,49,202,122,44,27,-15,49,202,122,44,26,-15,49,202,122,44,25,-15,49,202,122,44,24,-15,49,202,122,44,23,-15,49,202,122,44,22,-15,49,202,122,44,21,-15,49,202,122,44,20,-15,49,202,122,44,19,-15,49,202,122,44,18,-15,49,202,122,44,17,-15,49,202,122,44,16,-15,49,202,122,44,15,-15,49,202,122,44,14,-15,49,202,122,44,13,-15,49,202,122,44,12,-15,49,202,122,44,11,-15,49,202,122,44,10,-15,49,202,122,44,9,-15,49,202,122,44,8,-15,49,202,122,44,7,-15,49,202,122,44,6,-15,49,202,122,44,5,-15,49,202,122,44,4,-15,49,202,122,44,3,-15,49,202,122,44,2,-15,49,202,122,44,1,-15,49,202,122,44,0,-15,49,202,122,44,-1,-15,49,202,122,44,-2,-15,49,202,122,44,-3,-15,49,202,122,44,-4,-15,49,202,122,44,-5,-15,49,202,122,44,-6,-15,49,202,122,44,-7,-15,49,202,122,44,-8,-15,49,202,122,44,-9,-15,49,202,122,44,-10,-15,49,202,122,44,-11,-15,49,202,122,44,-12,-15,49,202,122,44,-13,-15,49,202,122,44,-14,-15,49,202,122,44,-15,-15,49,202,122,44,61,61,48,202,122,44,60,61,48,202,122,44,59,61,48,202,122,44,58,61,48,202,122,44,57,61,48,202,122,44,56,61,48,202,122,44,55,61,48,202,122,44,54,61,48,202,122,44,53,61,48,202,122,44,52,61,48,202,122,44,51,61,48,202,122,44,50,61,48,202,122,44,49,61,48,202,122,44,48,61,48,202,122,44,47,61,48,202,122,44,46,61,48,202,122,44,45,61,48,202,122,44,44,61,48,202,122,44,43,61,48,202,122,44,42,61,48,202,122,44,41,61,48,202,122,44,40,61,48,202,122,44,39,61,48,202,122,44,38,61,48,202,122,44,37,61,48,202,122,44,36,61,48,202,122,44,35,61,48,202,122,44,34,61,48,202,122,44,33,61,48,202,122,44,32,61,48,202,122,44,31,61,48,202,122,44,30,61,48,202,122,44,29,61,48,202,122,44,28,61,48,202,122,44,27,61,48,202,122,44,26,61,48,202,122,44,25,61,48,202,122,44,24,61,48,202,122,44,84,56,1,202,122,44,-39,57,1,202,122,44,23,61,48,202,122,44,22,61,48,202,122,44,21,61,48,202,122,44,20,61,48,202,122,44,19,61,48,202,122,44,18,61,48,202,122,44,17,61,48,202,122,44,16,61,48,202,122,44,15,61,48,202,122,44,14,61,48,202,122,44,13,61,48,202,122,44,12,61,48,202,122,44,11,61,48,202,122,44,10,61,48,202,122,44,9,61,48,202,122,44,8,61,48,202,122,44,7,61,48,202,122,44,6,61,48,202,122,44,5,61,48,202,122,44,4,61,48,202,122,44,3,61,48,202,122,44,2,61,48,202,122,44,1,61,48,202,122,44,0,61,48,202,122,44,-1,61,48,202,122,44,-2,61,48,202,122,44,-3,61,48,202,122,44,-4,61,48,202,122,44,-5,61,48,202,122,44,-6,61,48,202,122,44,-7,61,48,202,122,44,-8,61,48,202,122,44,-9,61,48,202,122,44,-10,61,48,202,122,44,-11,61,48,202,122,44,-12,61,48,202,122,44,-13,61,48,202,122,44,-14,61,48,202,122,44,-15,61,48,202,122,44,-16,61,48,202,122,44,61,60,48,202,122,44,-16,60,48,202,122,44,61,59,48,202,122,44,-16,59,48,202,122,44,61,58,48,202,122,44,-16,58,48,202,122,44,61,57,48,202,122,44,-16,57,48,202,122,44,61,56,48,202,122,44,-16,56,48,202,122,44,61,55,48,202,122,44,-16,55,48,202,122,44,61,54,48,202,122,44,-16,54,48,202,122,44,61,53,48,202,122,44,-16,53,48,202,122,44,61,52,48,202,122,44,-16,52,48,202,122,44,61,51,48,202,122,44,-16,51,48,202,122,44,61,50,48,202,122,44,-16,50,48,202,122,44,61,49,48,202,122,44,-16,49,48,202,122,44,61,48,48,202,122,44,-16,48,48,202,122,44,61,47,48,202,122,44,-16,47,48,202,122,44,61,46,48,202,122,44,-16,46,48,202,122,44,61,45,48,202,122,44,-16,45,48,202,122,44,61,44,48,202,122,44,-16,44,48,202,122,44,61,43,48,202,122,44,-16,43,48,202,122,44,61,42,48,202,122,44,-16,42,48,202,122,44,61,41,48,202,122,44,-16,41,48,202,122,44,61,40,48,202,122,44,-16,40,48,202,122,44,61,39,48,202,122,44,-16,39,48,202,122,44,61,38,48,202,122,44,-16,38,48,202,122,44,61,37,48,202,122,44,-16,37,48,202,122,44,61,36,48,202,122,44,-16,36,48,202,122,44,61,35,48,202,122,44,-16,35,48,202,122,44,61,34,48,202,122,44,-16,34,48,202,122,44,61,33,48,202,122,44,-16,33,48,202,122,44,61,32,48,202,122,44,-16,32,48,202,122,44,61,31,48,202,122,44,-16,31,48,202,122,44,61,30,48,202,122,44,-16,30,48,202,122,44,61,29,48,202,122,44,-16,29,48,202,122,44,61,28,48,202,122,44,-16,28,48,202,122,44,61,27,48,202,122,44,-16,27,48,202,122,44,61,26,48,202,122,44,-16,26,48,202,122,44,61,25,48,202,122,44,-16,25,48,202,122,44,61,24,48,202,122,44,-16,24,48,202,122,44,61,23,48,202,122,44,-16,23,48,202,122,44,61,22,48,202,122,44,-16,22,48,202,122,44,61,21,48,202,122,44,-16,21,48,202,122,44,61,20,48,202,122,44,-16,20,48,202,122,44,84,57,1,202,122,44,-39,58,1,202,122,44,61,19,48,202,122,44,-16,19,48,202,122,44,61,18,48,202,122,44,-16,18,48,202,122,44,61,17,48,202,122,44,-16,17,48,202,122,44,61,16,48,202,122,44,-16,16,48,202,122,44,61,15,48,202,122,44,-16,15,48,202,122,44,61,14,48,202,122,44,-16,14,48,202,122,44,61,13,48,202,122,44,-16,13,48,202,122,44,61,12,48,202,122,44,-16,12,48,202,122,44,61,11,48,202,122,44,-16,11,48,202,122,44,61,10,48,202,122,44,-16,10,48,202,122,44,61,9,48,202,122,44,-16,9,48,202,122,44,61,8,48,202,122,44,-16,8,48,202,122,44,61,7,48,202,122,44,-16,7,48,202,122,44,61,6,48,202,122,44,-16,6,48,202,122,44,61,5,48,202,122,44,-16,5,48,202,122,44,61,4,48,202,122,44,-16,4,48,202,122,44,61,3,48,202,122,44,-16,3,48,202,122,44,61,2,48,202,122,44,-16,2,48,202,122,44,61,1,48,202,122,44,-16,1,48,202,122,44,61,0,48,202,122,44,-16,0,48,202,122,44,61,-1,48,202,122,44,-16,-1,48,202,122,44,61,-2,48,202,122,44,-16,-2,48,202,122,44,61,-3,48,202,122,44,-16,-3,48,202,122,44,61,-4,48,202,122,44,-16,-4,48,202,122,44,61,-5,48,202,122,44,-16,-5,48,202,122,44,61,-6,48,202,122,44,-16,-6,48,202,122,44,61,-7,48,202,122,44,-16,-7,48,202,122,44,61,-8,48,202,122,44,-16,-8,48,202,122,44,61,-9,48,202,122,44,-16,-9,48,202,122,44,61,-10,48,202,122,44,-16,-10,48,202,122,44,61,-11,48,202,122,44,-16,-11,48,202,122,44,61,-12,48,202,122,44,-16,-12,48,202,122,44,61,-13,48,202,122,44,-16,-13,48,202,122,44,61,-14,48,202,122,44,-16,-14,48,202,122,44,61,-15,48,202,122,44,-16,-15,48,202,122,44,61,-16,48,202,122,44,60,-16,48,202,122,44,59,-16,48,202,122,44,58,-16,48,202,122,44,57,-16,48,202,122,44,56,-16,48,202,122,44,55,-16,48,202,122,44,54,-16,48,202,122,44,53,-16,48,202,122,44,52,-16,48,202,122,44,51,-16,48,202,122,44,50,-16,48,202,122,44,49,-16,48,202,122,44,48,-16,48,202,122,44,47,-16,48,202,122,44,46,-16,48,202,122,44,45,-16,48,202,122,44,44,-16,48,202,122,44,43,-16,48,202,122,44,42,-16,48,202,122,44,41,-16,48,202,122,44,40,-16,48,202,122,44,39,-16,48,202,122,44,38,-16,48,202,122,44,37,-16,48,202,122,44,36,-16,48,202,122,44,35,-16,48,202,122,44,34,-16,48,202,122,44,33,-16,48,202,122,44,32,-16,48,202,122,44,31,-16,48,202,122,44,30,-16,48,202,122,44,29,-16,48,202,122,44,28,-16,48,202,122,44,27,-16,48,202,122,44,26,-16,48,202,122,44,25,-16,48,202,122,44,24,-16,48,202,122,44,23,-16,48,202,122,44,22,-16,48,202,122,44,21,-16,48,202,122,44,20,-16,48,202,122,44,19,-16,48,202,122,44,18,-16,48,202,122,44,17,-16,48,202,122,44,16,-16,48,202,122,44,15,-16,48,202,122,44,14,-16,48,202,122,44,13,-16,48,202,122,44,12,-16,48,202,122,44,11,-16,48,202,122,44,10,-16,48,202,122,44,84,58,1,202,122,44,-39,59,1,202,122,44,9,-16,48,202,122,44,8,-16,48,202,122,44,7,-16,48,202,122,44,6,-16,48,202,122,44,5,-16,48,202,122,44,4,-16,48,202,122,44,3,-16,48,202,122,44,2,-16,48,202,122,44,1,-16,48,202,122,44,0,-16,48,202,122,44,-1,-16,48,202,122,44,-2,-16,48,202,122,44,-3,-16,48,202,122,44,-4,-16,48,202,122,44,-5,-16,48,202,122,44,-6,-16,48,202,122,44,-7,-16,48,202,122,44,-8,-16,48,202,122,44,-9,-16,48,202,122,44,-10,-16,48,202,122,44,-11,-16,48,202,122,44,-12,-16,48,202,122,44,-13,-16,48,202,122,44,-14,-16,48,202,122,44,-15,-16,48,202,122,44,-16,-16,48,202,122,44,61,61,47,202,122,44,60,61,47,202,122,44,59,61,47,202,122,44,58,61,47,202,122,44,57,61,47,202,122,44,56,61,47,202,122,44,55,61,47,202,122,44,54,61,47,202,122,44,53,61,47,202,122,44,52,61,47,202,122,44,51,61,47,202,122,44,50,61,47,202,122,44,49,61,47,202,122,44,48,61,47,202,122,44,47,61,47,202,122,44,46,61,47,202,122,44,45,61,47,202,122,44,44,61,47,202,122,44,43,61,47,202,122,44,42,61,47,202,122,44,41,61,47,202,122,44,40,61,47,202,122,44,39,61,47,202,122,44,38,61,47,202,122,44,37,61,47,202,122,44,36,61,47,202,122,44,35,61,47,202,122,44,34,61,47,202,122,44,33,61,47,202,122,44,32,61,47,202,122,44,31,61,47,202,122,44,30,61,47,202,122,44,29,61,47,202,122,44,28,61,47,202,122,44,27,61,47,202,122,44,26,61,47,202,122,44,25,61,47,202,122,44,24,61,47,202,122,44,23,61,47,202,122,44,22,61,47,202,122,44,21,61,47,202,122,44,20,61,47,202,122,44,19,61,47,202,122,44,18,61,47,202,122,44,17,61,47,202,122,44,16,61,47,202,122,44,15,61,47,202,122,44,14,61,47,202,122,44,13,61,47,202,122,44,12,61,47,202,122,44,11,61,47,202,122,44,10,61,47,202,122,44,9,61,47,202,122,44,8,61,47,202,122,44,7,61,47,202,122,44,6,61,47,202,122,44,5,61,47,202,122,44,4,61,47,202,122,44,3,61,47,202,122,44,2,61,47,202,122,44,1,61,47,202,122,44,0,61,47,202,122,44,-1,61,47,202,122,44,-2,61,47,202,122,44,-3,61,47,202,122,44,-4,61,47,202,122,44,-5,61,47,202,122,44,-6,61,47,202,122,44,-7,61,47,202,122,44,-8,61,47,202,122,44,-9,61,47,202,122,44,-10,61,47,202,122,44,-11,61,47,202,122,44,-12,61,47,202,122,44,-13,61,47,202,122,44,-14,61,47,202,122,44,-15,61,47,202,122,44,-16,61,47,202,122,44,61,60,47,202,122,44,-16,60,47,202,122,44,61,59,47,202,122,44,-16,59,47,202,122,44,61,58,47,202,122,44,-16,58,47,202,122,44,61,57,47,202,122,44,-16,57,47,202,122,44,61,56,47,202,122,44,-16,56,47,202,122,44,61,55,47,202,122,44,-16,55,47,202,122,44,61,54,47,202,122,44,-16,54,47,202,122,44,61,53,47,202,122,44,-16,53,47,202,122,44,61,52,47,202,122,44,-16,52,47,202,122,44,84,59,1,202,122,44,-39,60,1,202,122,44,61,51,47,202,122,44,-16,51,47,202,122,44,61,50,47,202,122,44,-16,50,47,202,122,44,61,49,47,202,122,44,-16,49,47,202,122,44,61,48,47,202,122,44,-16,48,47,202,122,44,61,47,47,202,122,44,-16,47,47,202,122,44,61,46,47,202,122,44,-16,46,47,202,122,44,61,45,47,202,122,44,-16,45,47,202,122,44,61,44,47,202,122,44,-16,44,47,202,122,44,61,43,47,202,122,44,-16,43,47,202,122,44,61,42,47,202,122,44,-16,42,47,202,122,44,61,41,47,202,122,44,-16,41,47,202,122,44,61,40,47,202,122,44,-16,40,47,202,122,44,61,39,47,202,122,44,-16,39,47,202,122,44,61,38,47,202,122,44,-16,38,47,202,122,44,61,37,47,202,122,44,-16,37,47,202,122,44,61,36,47,202,122,44,-16,36,47,202,122,44,61,35,47,202,122,44,-16,35,47,202,122,44,61,34,47,202,122,44,-16,34,47,202,122,44,61,33,47,202,122,44,-16,33,47,202,122,44,61,32,47,202,122,44,-16,32,47,202,122,44,61,31,47,202,122,44,-16,31,47,202,122,44,61,30,47,202,122,44,-16,30,47,202,122,44,61,29,47,202,122,44,-16,29,47,202,122,44,61,28,47,202,122,44,-16,28,47,202,122,44,61,27,47,202,122,44,-16,27,47,202,122,44,61,26,47,202,122,44,-16,26,47,202,122,44,61,25,47,202,122,44,-16,25,47,202,122,44,61,24,47,202,122,44,-16,24,47,202,122,44,61,23,47,202,122,44,-16,23,47,202,122,44,61,22,47,202,122,44,-16,22,47,202,122,44,61,21,47,202,122,44,-16,21,47,202,122,44,61,20,47,202,122,44,-16,20,47,202,122,44,61,19,47,202,122,44,-16,19,47,202,122,44,61,18,47,202,122,44,-16,18,47,202,122,44,61,17,47,202,122,44,-16,17,47,202,122,44,61,16,47,202,122,44,-16,16,47,202,122,44,61,15,47,202,122,44,-16,15,47,202,122,44,61,14,47,202,122,44,-16,14,47,202,122,44,61,13,47,202,122,44,-16,13,47,202,122,44,61,12,47,202,122,44,-16,12,47,202,122,44,61,11,47,202,122,44,-16,11,47,202,122,44,61,10,47,202,122,44,-16,10,47,202,122,44,61,9,47,202,122,44,-16,9,47,202,122,44,61,8,47,202,122,44,-16,8,47,202,122,44,61,7,47,202,122,44,-16,7,47,202,122,44,61,6,47,202,122,44,-16,6,47,202,122,44,61,5,47,202,122,44,-16,5,47,202,122,44,61,4,47,202,122,44,-16,4,47,202,122,44,61,3,47,202,122,44,-16,3,47,202,122,44,61,2,47,202,122,44,-16,2,47,202,122,44,61,1,47,202,122,44,-16,1,47,202,122,44,61,0,47,202,122,44,-16,0,47,202,122,44,61,-1,47,202,122,44,-16,-1,47,202,122,44,61,-2,47,202,122,44,-16,-2,47,202,122,44,61,-3,47,202,122,44,-16,-3,47,202,122,44,61,-4,47,202,122,44,-16,-4,47,202,122,44,61,-5,47,202,122,44,-16,-5,47,202,122,44,61,-6,47,202,122,44,-16,-6,47,202,122,44,61,-7,47,202,122,44,-16,-7,47,202,122,44,61,-8,47,202,122,44,-16,-8,47,202,122,44,61,-9,47,202,122,44,-16,-9,47,202,122,44,84,60,1,202,122,44,-39,61,1,202,122,44,61,-10,47,202,122,44,-16,-10,47,202,122,44,61,-11,47,202,122,44,-16,-11,47,202,122,44,61,-12,47,202,122,44,-16,-12,47,202,122,44,61,-13,47,202,122,44,-16,-13,47,202,122,44,61,-14,47,202,122,44,-16,-14,47,202,122,44,61,-15,47,202,122,44,-16,-15,47,202,122,44,61,-16,47,202,122,44,60,-16,47,202,122,44,59,-16,47,202,122,44,58,-16,47,202,122,44,57,-16,47,202,122,44,56,-16,47,202,122,44,55,-16,47,202,122,44,54,-16,47,202,122,44,53,-16,47,202,122,44,52,-16,47,202,122,44,51,-16,47,202,122,44,50,-16,47,202,122,44,49,-16,47,202,122,44,48,-16,47,202,122,44,47,-16,47,202,122,44,46,-16,47,202,122,44,45,-16,47,202,122,44,44,-16,47,202,122,44,43,-16,47,202,122,44,42,-16,47,202,122,44,41,-16,47,202,122,44,40,-16,47,202,122,44,39,-16,47,202,122,44,38,-16,47,202,122,44,37,-16,47,202,122,44,36,-16,47,202,122,44,35,-16,47,202,122,44,34,-16,47,202,122,44,33,-16,47,202,122,44,32,-16,47,202,122,44,31,-16,47,202,122,44,30,-16,47,202,122,44,29,-16,47,202,122,44,28,-16,47,202,122,44,27,-16,47,202,122,44,26,-16,47,202,122,44,25,-16,47,202,122,44,24,-16,47,202,122,44,23,-16,47,202,122,44,22,-16,47,202,122,44,21,-16,47,202,122,44,20,-16,47,202,122,44,19,-16,47,202,122,44,18,-16,47,202,122,44,17,-16,47,202,122,44,16,-16,47,202,122,44,15,-16,47,202,122,44,14,-16,47,202,122,44,13,-16,47,202,122,44,12,-16,47,202,122,44,11,-16,47,202,122,44,10,-16,47,202,122,44,9,-16,47,202,122,44,8,-16,47,202,122,44,7,-16,47,202,122,44,6,-16,47,202,122,44,5,-16,47,202,122,44,4,-16,47,202,122,44,3,-16,47,202,122,44,2,-16,47,202,122,44,1,-16,47,202,122,44,0,-16,47,202,122,44,-1,-16,47,202,122,44,-2,-16,47,202,122,44,-3,-16,47,202,122,44,-4,-16,47,202,122,44,-5,-16,47,202,122,44,-6,-16,47,202,122,44,-7,-16,47,202,122,44,-8,-16,47,202,122,44,-9,-16,47,202,122,44,-10,-16,47,202,122,44,-11,-16,47,202,122,44,-12,-16,47,202,122,44,-13,-16,47,202,122,44,-14,-16,47,202,122,44,-15,-16,47,202,122,44,-16,-16,47,202,122,44,62,62,46,202,122,44,61,62,46,202,122,44,60,62,46,202,122,44,59,62,46,202,122,44,58,62,46,202,122,44,57,62,46,202,122,44,56,62,46,202,122,44,55,62,46,202,122,44,54,62,46,202,122,44,53,62,46,202,122,44,52,62,46,202,122,44,51,62,46,202,122,44,50,62,46,202,122,44,49,62,46,202,122,44,48,62,46,202,122,44,47,62,46,202,122,44,46,62,46,202,122,44,45,62,46,202,122,44,44,62,46,202,122,44,43,62,46,202,122,44,42,62,46,202,122,44,41,62,46,202,122,44,40,62,46,202,122,44,39,62,46,202,122,44,38,62,46,202,122,44,37,62,46,202,122,44,36,62,46,202,122,44,35,62,46,202,122,44,34,62,46,202,122,44,33,62,46,202,122,44,32,62,46,202,122,44,31,62,46,202,122,44,84,61,1,202,122,44,-39,62,1,202,122,44,30,62,46,202,122,44,29,62,46,202,122,44,28,62,46,202,122,44,27,62,46,202,122,44,26,62,46,202,122,44,25,62,46,202,122,44,24,62,46,202,122,44,23,62,46,202,122,44,22,62,46,202,122,44,21,62,46,202,122,44,20,62,46,202,122,44,19,62,46,202,122,44,18,62,46,202,122,44,17,62,46,202,122,44,16,62,46,202,122,44,15,62,46,202,122,44,14,62,46,202,122,44,13,62,46,202,122,44,12,62,46,202,122,44,11,62,46,202,122,44,10,62,46,202,122,44,9,62,46,202,122,44,8,62,46,202,122,44,7,62,46,202,122,44,6,62,46,202,122,44,5,62,46,202,122,44,4,62,46,202,122,44,3,62,46,202,122,44,2,62,46,202,122,44,1,62,46,202,122,44,0,62,46,202,122,44,-1,62,46,202,122,44,-2,62,46,202,122,44,-3,62,46,202,122,44,-4,62,46,202,122,44,-5,62,46,202,122,44,-6,62,46,202,122,44,-7,62,46,202,122,44,-8,62,46,202,122,44,-9,62,46,202,122,44,-10,62,46,202,122,44,-11,62,46,202,122,44,-12,62,46,202,122,44,-13,62,46,202,122,44,-14,62,46,202,122,44,-15,62,46,202,122,44,-16,62,46,202,122,44,-17,62,46,202,122,44,62,61,46,202,122,44,-17,61,46,202,122,44,62,60,46,202,122,44,-17,60,46,202,122,44,62,59,46,202,122,44,-17,59,46,202,122,44,62,58,46,202,122,44,-17,58,46,202,122,44,62,57,46,202,122,44,-17,57,46,202,122,44,62,56,46,202,122,44,-17,56,46,202,122,44,62,55,46,202,122,44,-17,55,46,202,122,44,62,54,46,202,122,44,-17,54,46,202,122,44,62,53,46,202,122,44,-17,53,46,202,122,44,62,52,46,202,122,44,-17,52,46,202,122,44,62,51,46,202,122,44,-17,51,46,202,122,44,62,50,46,202,122,44,-17,50,46,202,122,44,62,49,46,202,122,44,-17,49,46,202,122,44,62,48,46,202,122,44,-17,48,46,202,122,44,62,47,46,202,122,44,-17,47,46,202,122,44,62,46,46,202,122,44,-17,46,46,202,122,44,62,45,46,202,122,44,-17,45,46,202,122,44,62,44,46,202,122,44,-17,44,46,202,122,44,62,43,46,202,122,44,-17,43,46,202,122,44,62,42,46,202,122,44,-17,42,46,202,122,44,62,41,46,202,122,44,-17,41,46,202,122,44,62,40,46,202,122,44,-17,40,46,202,122,44,62,39,46,202,122,44,-17,39,46,202,122,44,62,38,46,202,122,44,-17,38,46,202,122,44,62,37,46,202,122,44,-17,37,46,202,122,44,62,36,46,202,122,44,-17,36,46,202,122,44,62,35,46,202,122,44,-17,35,46,202,122,44,62,34,46,202,122,44,-17,34,46,202,122,44,62,33,46,202,122,44,-17,33,46,202,122,44,62,32,46,202,122,44,-17,32,46,202,122,44,62,31,46,202,122,44,-17,31,46,202,122,44,62,30,46,202,122,44,-17,30,46,202,122,44,62,29,46,202,122,44,-17,29,46,202,122,44,62,28,46,202,122,44,-17,28,46,202,122,44,62,27,46,202,122,44,-17,27,46,202,122,44,62,26,46,202,122,44,-17,26,46,202,122,44,62,25,46,202,122,44,-17,25,46,202,122,44,84,62,1,202,122,44,-39,63,1,202,122,44,62,24,46,202,122,44,-17,24,46,202,122,44,62,23,46,202,122,44,-17,23,46,202,122,44,62,22,46,202,122,44,-17,22,46,202,122,44,62,21,46,202,122,44,-17,21,46,202,122,44,62,20,46,202,122,44,-17,20,46,202,122,44,62,19,46,202,122,44,-17,19,46,202,122,44,62,18,46,202,122,44,-17,18,46,202,122,44,62,17,46,202,122,44,-17,17,46,202,122,44,62,16,46,202,122,44,-17,16,46,202,122,44,62,15,46,202,122,44,-17,15,46,202,122,44,62,14,46,202,122,44,-17,14,46,202,122,44,62,13,46,202,122,44,-17,13,46,202,122,44,62,12,46,202,122,44,-17,12,46,202,122,44,62,11,46,202,122,44,-17,11,46,202,122,44,62,10,46,202,122,44,-17,10,46,202,122,44,62,9,46,202,122,44,-17,9,46,202,122,44,62,8,46,202,122,44,-17,8,46,202,122,44,62,7,46,202,122,44,-17,7,46,202,122,44,62,6,46,202,122,44,-17,6,46,202,122,44,62,5,46,202,122,44,-17,5,46,202,122,44,62,4,46,202,122,44,-17,4,46,202,122,44,62,3,46,202,122,44,-17,3,46,202,122,44,62,2,46,202,122,44,-17,2,46,202,122,44,62,1,46,202,122,44,-17,1,46,202,122,44,62,0,46,202,122,44,-17,0,46,202,122,44,62,-1,46,202,122,44,-17,-1,46,202,122,44,62,-2,46,202,122,44,-17,-2,46,202,122,44,62,-3,46,202,122,44,-17,-3,46,202,122,44,62,-4,46,202,122,44,-17,-4,46,202,122,44,62,-5,46,202,122,44,-17,-5,46,202,122,44,62,-6,46,202,122,44,-17,-6,46,202,122,44,62,-7,46,202,122,44,-17,-7,46,202,122,44,62,-8,46,202,122,44,-17,-8,46,202,122,44,62,-9,46,202,122,44,-17,-9,46,202,122,44,62,-10,46,202,122,44,-17,-10,46,202,122,44,62,-11,46,202,122,44,-17,-11,46,202,122,44,62,-12,46,202,122,44,-17,-12,46,202,122,44,62,-13,46,202,122,44,-17,-13,46,202,122,44,62,-14,46,202,122,44,-17,-14,46,202,122,44,62,-15,46,202,122,44,-17,-15,46,202,122,44,62,-16,46,202,122,44,-17,-16,46,202,122,44,62,-17,46,202,122,44,61,-17,46,202,122,44,60,-17,46,202,122,44,59,-17,46,202,122,44,58,-17,46,202,122,44,57,-17,46,202,122,44,56,-17,46,202,122,44,55,-17,46,202,122,44,54,-17,46,202,122,44,53,-17,46,202,122,44,52,-17,46,202,122,44,51,-17,46,202,122,44,50,-17,46,202,122,44,49,-17,46,202,122,44,48,-17,46,202,122,44,47,-17,46,202,122,44,46,-17,46,202,122,44,45,-17,46,202,122,44,44,-17,46,202,122,44,43,-17,46,202,122,44,42,-17,46,202,122,44,41,-17,46,202,122,44,40,-17,46,202,122,44,39,-17,46,202,122,44,38,-17,46,202,122,44,37,-17,46,202,122,44,36,-17,46,202,122,44,35,-17,46,202,122,44,34,-17,46,202,122,44,33,-17,46,202,122,44,32,-17,46,202,122,44,31,-17,46,202,122,44,30,-17,46,202,122,44,29,-17,46,202,122,44,28,-17,46,202,122,44,27,-17,46,202,122,44,26,-17,46,202,122,44,25,-17,46,202,122,44,24,-17,46,202,122,44,23,-17,46,202,122,44,84,63,1,202,122,44,-39,64,1,202,122,44,22,-17,46,202,122,44,21,-17,46,202,122,44,20,-17,46,202,122,44,19,-17,46,202,122,44,18,-17,46,202,122,44,17,-17,46,202,122,44,16,-17,46,202,122,44,15,-17,46,202,122,44,14,-17,46,202,122,44,13,-17,46,202,122,44,12,-17,46,202,122,44,11,-17,46,202,122,44,10,-17,46,202,122,44,9,-17,46,202,122,44,8,-17,46,202,122,44,7,-17,46,202,122,44,6,-17,46,202,122,44,5,-17,46,202,122,44,4,-17,46,202,122,44,3,-17,46,202,122,44,2,-17,46,202,122,44,1,-17,46,202,122,44,0,-17,46,202,122,44,-1,-17,46,202,122,44,-2,-17,46,202,122,44,-3,-17,46,202,122,44,-4,-17,46,202,122,44,-5,-17,46,202,122,44,-6,-17,46,202,122,44,-7,-17,46,202,122,44,-8,-17,46,202,122,44,-9,-17,46,202,122,44,-10,-17,46,202,122,44,-11,-17,46,202,122,44,-12,-17,46,202,122,44,-13,-17,46,202,122,44,-14,-17,46,202,122,44,-15,-17,46,202,122,44,-16,-17,46,202,122,44,-17,-17,46,202,122,44,62,62,45,202,122,44,61,62,45,202,122,44,60,62,45,202,122,44,59,62,45,202,122,44,58,62,45,202,122,44,57,62,45,202,122,44,56,62,45,202,122,44,55,62,45,202,122,44,54,62,45,202,122,44,53,62,45,202,122,44,52,62,45,202,122,44,51,62,45,202,122,44,50,62,45,202,122,44,49,62,45,202,122,44,48,62,45,202,122,44,47,62,45,202,122,44,46,62,45,202,122,44,45,62,45,202,122,44,44,62,45,202,122,44,43,62,45,202,122,44,42,62,45,202,122,44,41,62,45,202,122,44,40,62,45,202,122,44,39,62,45,202,122,44,38,62,45,202,122,44,37,62,45,202,122,44,36,62,45,202,122,44,35,62,45,202,122,44,34,62,45,202,122,44,33,62,45,202,122,44,32,62,45,202,122,44,31,62,45,202,122,44,30,62,45,202,122,44,29,62,45,202,122,44,28,62,45,202,122,44,27,62,45,202,122,44,26,62,45,202,122,44,25,62,45,202,122,44,24,62,45,202,122,44,23,62,45,202,122,44,22,62,45,202,122,44,21,62,45,202,122,44,20,62,45,202,122,44,19,62,45,202,122,44,18,62,45,202,122,44,17,62,45,202,122,44,16,62,45,202,122,44,15,62,45,202,122,44,14,62,45,202,122,44,13,62,45,202,122,44,12,62,45,202,122,44,11,62,45,202,122,44,10,62,45,202,122,44,9,62,45,202,122,44,8,62,45,202,122,44,7,62,45,202,122,44,6,62,45,202,122,44,5,62,45,202,122,44,4,62,45,202,122,44,3,62,45,202,122,44,2,62,45,202,122,44,1,62,45,202,122,44,0,62,45,202,122,44,-1,62,45,202,122,44,-2,62,45,202,122,44,-3,62,45,202,122,44,-4,62,45,202,122,44,-5,62,45,202,122,44,-6,62,45,202,122,44,-7,62,45,202,122,44,-8,62,45,202,122,44,-9,62,45,202,122,44,-10,62,45,202,122,44,-11,62,45,202,122,44,-12,62,45,202,122,44,-13,62,45,202,122,44,-14,62,45,202,122,44,-15,62,45,202,122,44,-16,62,45,202,122,44,-17,62,45,202,122,44,62,61,45,202,122,44,-17,61,45,202,122,44,84,64,1,202,122,44,-39,65,1,202,122,44,62,60,45,202,122,44,-17,60,45,202,122,44,62,59,45,202,122,44,-17,59,45,202,122,44,62,58,45,202,122,44,-17,58,45,202,122,44,62,57,45,202,122,44,-17,57,45,202,122,44,62,56,45,202,122,44,-17,56,45,202,122,44,62,55,45,202,122,44,-17,55,45,202,122,44,62,54,45,202,122,44,-17,54,45,202,122,44,62,53,45,202,122,44,-17,53,45,202,122,44,62,52,45,202,122,44,-17,52,45,202,122,44,62,51,45,202,122,44,-17,51,45,202,122,44,62,50,45,202,122,44,-17,50,45,202,122,44,62,49,45,202,122,44,-17,49,45,202,122,44,62,48,45,202,122,44,-17,48,45,202,122,44,62,47,45,202,122,44,-17,47,45,202,122,44,62,46,45,202,122,44,-17,46,45,202,122,44,62,45,45,202,122,44,-17,45,45,202,122,44,62,44,45,202,122,44,-17,44,45,202,122,44,62,43,45,202,122,44,-17,43,45,202,122,44,62,42,45,202,122,44,-17,42,45,202,122,44,62,41,45,202,122,44,-17,41,45,202,122,44,62,40,45,202,122,44,-17,40,45,202,122,44,62,39,45,202,122,44,-17,39,45,202,122,44,62,38,45,202,122,44,-17,38,45,202,122,44,62,37,45,202,122,44,-17,37,45,202,122,44,62,36,45,202,122,44,-17,36,45,202,122,44,62,35,45,202,122,44,-17,35,45,202,122,44,62,34,45,202,122,44,-17,34,45,202,122,44,62,33,45,202,122,44,-17,33,45,202,122,44,62,32,45,202,122,44,-17,32,45,202,122,44,62,31,45,202,122,44,-17,31,45,202,122,44,62,30,45,202,122,44,-17,30,45,202,122,44,62,29,45,202,122,44,-17,29,45,202,122,44,62,28,45,202,122,44,-17,28,45,202,122,44,62,27,45,202,122,44,-17,27,45,202,122,44,62,26,45,202,122,44,-17,26,45,202,122,44,62,25,45,202,122,44,-17,25,45,202,122,44,62,24,45,202,122,44,-17,24,45,202,122,44,62,23,45,202,122,44,-17,23,45,202,122,44,62,22,45,202,122,44,-17,22,45,202,122,44,62,21,45,202,122,44,-17,21,45,202,122,44,62,20,45,202,122,44,-17,20,45,202,122,44,62,19,45,202,122,44,-17,19,45,202,122,44,62,18,45,202,122,44,-17,18,45,202,122,44,62,17,45,202,122,44,-17,17,45,202,122,44,62,16,45,202,122,44,-17,16,45,202,122,44,62,15,45,202,122,44,-17,15,45,202,122,44,62,14,45,202,122,44,-17,14,45,202,122,44,62,13,45,202,122,44,-17,13,45,202,122,44,62,12,45,202,122,44,-17,12,45,202,122,44,62,11,45,202,122,44,-17,11,45,202,122,44,62,10,45,202,122,44,-17,10,45,202,122,44,62,9,45,202,122,44,-17,9,45,202,122,44,62,8,45,202,122,44,-17,8,45,202,122,44,62,7,45,202,122,44,-17,7,45,202,122,44,62,6,45,202,122,44,-17,6,45,202,122,44,62,5,45,202,122,44,-17,5,45,202,122,44,62,4,45,202,122,44,-17,4,45,202,122,44,62,3,45,202,122,44,-17,3,45,202,122,44,62,2,45,202,122,44,-17,2,45,202,122,44,62,1,45,202,122,44,-17,1,45,202,122,44,62,0,45,202,122,44,-17,0,45,202,122,44,84,65,1,202,122,44,-39,66,1,202,122,44,62,-1,45,202,122,44,-17,-1,45,202,122,44,62,-2,45,202,122,44,-17,-2,45,202,122,44,62,-3,45,202,122,44,-17,-3,45,202,122,44,62,-4,45,202,122,44,-17,-4,45,202,122,44,62,-5,45,202,122,44,-17,-5,45,202,122,44,62,-6,45,202,122,44,-17,-6,45,202,122,44,62,-7,45,202,122,44,-17,-7,45,202,122,44,62,-8,45,202,122,44,-17,-8,45,202,122,44,62,-9,45,202,122,44,-17,-9,45,202,122,44,62,-10,45,202,122,44,-17,-10,45,202,122,44,62,-11,45,202,122,44,-17,-11,45,202,122,44,62,-12,45,202,122,44,-17,-12,45,202,122,44,62,-13,45,202,122,44,-17,-13,45,202,122,44,62,-14,45,202,122,44,-17,-14,45,202,122,44,62,-15,45,202,122,44,-17,-15,45,202,122,44,62,-16,45,202,122,44,-17,-16,45,202,122,44,62,-17,45,202,122,44,61,-17,45,202,122,44,60,-17,45,202,122,44,59,-17,45,202,122,44,58,-17,45,202,122,44,57,-17,45,202,122,44,56,-17,45,202,122,44,55,-17,45,202,122,44,54,-17,45,202,122,44,53,-17,45,202,122,44,52,-17,45,202,122,44,51,-17,45,202,122,44,50,-17,45,202,122,44,49,-17,45,202,122,44,48,-17,45,202,122,44,47,-17,45,202,122,44,46,-17,45,202,122,44,45,-17,45,202,122,44,44,-17,45,202,122,44,43,-17,45,202,122,44,42,-17,45,202,122,44,41,-17,45,202,122,44,40,-17,45,202,122,44,39,-17,45,202,122,44,38,-17,45,202,122,44,37,-17,45,202,122,44,36,-17,45,202,122,44,35,-17,45,202,122,44,34,-17,45,202,122,44,33,-17,45,202,122,44,32,-17,45,202,122,44,31,-17,45,202,122,44,30,-17,45,202,122,44,29,-17,45,202,122,44,28,-17,45,202,122,44,27,-17,45,202,122,44,26,-17,45,202,122,44,25,-17,45,202,122,44,24,-17,45,202,122,44,23,-17,45,202,122,44,22,-17,45,202,122,44,21,-17,45,202,122,44,20,-17,45,202,122,44,19,-17,45,202,122,44,18,-17,45,202,122,44,17,-17,45,202,122,44,16,-17,45,202,122,44,15,-17,45,202,122,44,14,-17,45,202,122,44,13,-17,45,202,122,44,12,-17,45,202,122,44,11,-17,45,202,122,44,10,-17,45,202,122,44,9,-17,45,202,122,44,8,-17,45,202,122,44,7,-17,45,202,122,44,6,-17,45,202,122,44,5,-17,45,202,122,44,4,-17,45,202,122,44,3,-17,45,202,122,44,2,-17,45,202,122,44,1,-17,45,202,122,44,0,-17,45,202,122,44,-1,-17,45,202,122,44,-2,-17,45,202,122,44,-3,-17,45,202,122,44,-4,-17,45,202,122,44,-5,-17,45,202,122,44,-6,-17,45,202,122,44,-7,-17,45,202,122,44,-8,-17,45,202,122,44,-9,-17,45,202,122,44,-10,-17,45,202,122,44,-11,-17,45,202,122,44,-12,-17,45,202,122,44,-13,-17,45,202,122,44,-14,-17,45,202,122,44,-15,-17,45,202,122,44,-16,-17,45,202,122,44,-17,-17,45,202,122,44,63,63,44,202,122,44,62,63,44,202,122,44,61,63,44,202,122,44,60,63,44,202,122,44,59,63,44,202,122,44,58,63,44,202,122,44,57,63,44,202,122,44,56,63,44,202,122,44,55,63,44,202,122,44,54,63,44,202,122,44,84,66,1,202,122,44,-39,67,1,202,122,44,53,63,44,202,122,44,52,63,44,202,122,44,51,63,44,202,122,44,50,63,44,202,122,44,49,63,44,202,122,44,48,63,44,202,122,44,47,63,44,202,122,44,46,63,44,202,122,44,45,63,44,202,122,44,44,63,44,202,122,44,43,63,44,202,122,44,42,63,44,202,122,44,41,63,44,202,122,44,40,63,44,202,122,44,39,63,44,202,122,44,38,63,44,202,122,44,37,63,44,202,122,44,36,63,44,202,122,44,35,63,44,202,122,44,34,63,44,202,122,44,33,63,44,202,122,44,32,63,44,202,122,44,31,63,44,202,122,44,30,63,44,202,122,44,29,63,44,202,122,44,28,63,44,202,122,44,27,63,44,202,122,44,26,63,44,202,122,44,25,63,44,202,122,44,24,63,44,202,122,44,23,63,44,202,122,44,22,63,44,202,122,44,21,63,44,202,122,44,20,63,44,202,122,44,19,63,44,202,122,44,18,63,44,202,122,44,17,63,44,202,122,44,16,63,44,202,122,44,15,63,44,202,122,44,14,63,44,202,122,44,13,63,44,202,122,44,12,63,44,202,122,44,11,63,44,202,122,44,10,63,44,202,122,44,9,63,44,202,122,44,8,63,44,202,122,44,7,63,44,202,122,44,6,63,44,202,122,44,5,63,44,202,122,44,4,63,44,202,122,44,3,63,44,202,122,44,2,63,44,202,122,44,1,63,44,202,122,44,0,63,44,202,122,44,-1,63,44,202,122,44,-2,63,44,202,122,44,-3,63,44,202,122,44,-4,63,44,202,122,44,-5,63,44,202,122,44,-6,63,44,202,122,44,-7,63,44,202,122,44,-8,63,44,202,122,44,-9,63,44,202,122,44,-10,63,44,202,122,44,-11,63,44,202,122,44,-12,63,44,202,122,44,-13,63,44,202,122,44,-14,63,44,202,122,44,-15,63,44,202,122,44,-16,63,44,202,122,44,-17,63,44,202,122,44,-18,63,44,202,122,44,63,62,44,202,122,44,-18,62,44,202,122,44,63,61,44,202,122,44,-18,61,44,202,122,44,63,60,44,202,122,44,-18,60,44,202,122,44,63,59,44,202,122,44,-18,59,44,202,122,44,63,58,44,202,122,44,-18,58,44,202,122,44,63,57,44,202,122,44,-18,57,44,202,122,44,63,56,44,202,122,44,-18,56,44,202,122,44,63,55,44,202,122,44,-18,55,44,202,122,44,63,54,44,202,122,44,-18,54,44,202,122,44,63,53,44,202,122,44,-18,53,44,202,122,44,63,52,44,202,122,44,-18,52,44,202,122,44,63,51,44,202,122,44,-18,51,44,202,122,44,63,50,44,202,122,44,-18,50,44,202,122,44,63,49,44,202,122,44,-18,49,44,202,122,44,63,48,44,202,122,44,-18,48,44,202,122,44,63,47,44,202,122,44,-18,47,44,202,122,44,63,46,44,202,122,44,-18,46,44,202,122,44,63,45,44,202,122,44,-18,45,44,202,122,44,63,44,44,202,122,44,-18,44,44,202,122,44,63,43,44,202,122,44,-18,43,44,202,122,44,63,42,44,202,122,44,-18,42,44,202,122,44,63,41,44,202,122,44,-18,41,44,202,122,44,63,40,44,202,122,44,-18,40,44,202,122,44,63,39,44,202,122,44,-18,39,44,202,122,44,63,38,44,202,122,44,-18,38,44,202,122,44,84,67,1,202,122,44,-39,68,1,202,122,44,63,37,44,202,122,44,-18,37,44,202,122,44,63,36,44,202,122,44,-18,36,44,202,122,44,63,35,44,202,122,44,-18,35,44,202,122,44,63,34,44,202,122,44,-18,34,44,202,122,44,63,33,44,202,122,44,-18,33,44,202,122,44,63,32,44,202,122,44,-18,32,44,202,122,44,63,31,44,202,122,44,-18,31,44,202,122,44,63,30,44,202,122,44,-18,30,44,202,122,44,63,29,44,202,122,44,-18,29,44,202,122,44,63,28,44,202,122,44,-18,28,44,202,122,44,63,27,44,202,122,44,-18,27,44,202,122,44,63,26,44,202,122,44,-18,26,44,202,122,44,63,25,44,202,122,44,-18,25,44,202,122,44,63,24,44,202,122,44,-18,24,44,202,122,44,63,23,44,202,122,44,-18,23,44,202,122,44,63,22,44,202,122,44,-18,22,44,202,122,44,63,21,44,202,122,44,-18,21,44,202,122,44,63,20,44,202,122,44,-18,20,44,202,122,44,63,19,44,202,122,44,-18,19,44,202,122,44,63,18,44,202,122,44,-18,18,44,202,122,44,63,17,44,202,122,44,-18,17,44,202,122,44,63,16,44,202,122,44,-18,16,44,202,122,44,63,15,44,202,122,44,-18,15,44,202,122,44,63,14,44,202,122,44,-18,14,44,202,122,44,63,13,44,202,122,44,-18,13,44,202,122,44,63,12,44,202,122,44,-18,12,44,202,122,44,63,11,44,202,122,44,-18,11,44,202,122,44,63,10,44,202,122,44,-18,10,44,202,122,44,63,9,44,202,122,44,-18,9,44,202,122,44,63,8,44,202,122,44,-18,8,44,202,122,44,63,7,44,202,122,44,-18,7,44,202,122,44,63,6,44,202,122,44,-18,6,44,202,122,44,63,5,44,202,122,44,-18,5,44,202,122,44,63,4,44,202,122,44,-18,4,44,202,122,44,63,3,44,202,122,44,-18,3,44,202,122,44,63,2,44,202,122,44,-18,2,44,202,122,44,63,1,44,202,122,44,-18,1,44,202,122,44,63,0,44,202,122,44,-18,0,44,202,122,44,63,-1,44,202,122,44,-18,-1,44,202,122,44,63,-2,44,202,122,44,-18,-2,44,202,122,44,63,-3,44,202,122,44,-18,-3,44,202,122,44,63,-4,44,202,122,44,-18,-4,44,202,122,44,63,-5,44,202,122,44,-18,-5,44,202,122,44,63,-6,44,202,122,44,-18,-6,44,202,122,44,63,-7,44,202,122,44,-18,-7,44,202,122,44,63,-8,44,202,122,44,-18,-8,44,202,122,44,63,-9,44,202,122,44,-18,-9,44,202,122,44,63,-10,44,202,122,44,-18,-10,44,202,122,44,63,-11,44,202,122,44,-18,-11,44,202,122,44,63,-12,44,202,122,44,-18,-12,44,202,122,44,63,-13,44,202,122,44,-18,-13,44,202,122,44,63,-14,44,202,122,44,-18,-14,44,202,122,44,63,-15,44,202,122,44,-18,-15,44,202,122,44,63,-16,44,202,122,44,-18,-16,44,202,122,44,63,-17,44,202,122,44,-18,-17,44,202,122,44,63,-18,44,202,122,44,62,-18,44,202,122,44,61,-18,44,202,122,44,60,-18,44,202,122,44,59,-18,44,202,122,44,58,-18,44,202,122,44,57,-18,44,202,122,44,56,-18,44,202,122,44,55,-18,44,202,122,44,54,-18,44,202,122,44,53,-18,44,202,122,44,52,-18,44,202,122,44,84,68,1,202,122,44,-39,69,1,202,122,44,51,-18,44,202,122,44,50,-18,44,202,122,44,49,-18,44,202,122,44,48,-18,44,202,122,44,47,-18,44,202,122,44,46,-18,44,202,122,44,45,-18,44,202,122,44,44,-18,44,202,122,44,43,-18,44,202,122,44,42,-18,44,202,122,44,41,-18,44,202,122,44,40,-18,44,202,122,44,39,-18,44,202,122,44,38,-18,44,202,122,44,37,-18,44,202,122,44,36,-18,44,202,122,44,35,-18,44,202,122,44,34,-18,44,202,122,44,33,-18,44,202,122,44,32,-18,44,202,122,44,31,-18,44,202,122,44,30,-18,44,202,122,44,29,-18,44,202,122,44,28,-18,44,202,122,44,27,-18,44,202,122,44,26,-18,44,202,122,44,25,-18,44,202,122,44,24,-18,44,202,122,44,23,-18,44,202,122,44,22,-18,44,202,122,44,21,-18,44,202,122,44,20,-18,44,202,122,44,19,-18,44,202,122,44,18,-18,44,202,122,44,17,-18,44,202,122,44,16,-18,44,202,122,44,15,-18,44,202,122,44,14,-18,44,202,122,44,13,-18,44,202,122,44,12,-18,44,202,122,44,11,-18,44,202,122,44,10,-18,44,202,122,44,9,-18,44,202,122,44,8,-18,44,202,122,44,7,-18,44,202,122,44,6,-18,44,202,122,44,5,-18,44,202,122,44,4,-18,44,202,122,44,3,-18,44,202,122,44,2,-18,44,202,122,44,1,-18,44,202,122,44,0,-18,44,202,122,44,-1,-18,44,202,122,44,-2,-18,44,202,122,44,-3,-18,44,202,122,44,-4,-18,44,202,122,44,-5,-18,44,202,122,44,-6,-18,44,202,122,44,-7,-18,44,202,122,44,-8,-18,44,202,122,44,-9,-18,44,202,122,44,-10,-18,44,202,122,44,-11,-18,44,202,122,44,-12,-18,44,202,122,44,-13,-18,44,202,122,44,-14,-18,44,202,122,44,-15,-18,44,202,122,44,-16,-18,44,202,122,44,-17,-18,44,202,122,44,-18,-18,44,202,122,44,63,63,43,202,122,44,62,63,43,202,122,44,61,63,43,202,122,44,60,63,43,202,122,44,59,63,43,202,122,44,58,63,43,202,122,44,57,63,43,202,122,44,56,63,43,202,122,44,55,63,43,202,122,44,54,63,43,202,122,44,53,63,43,202,122,44,52,63,43,202,122,44,51,63,43,202,122,44,50,63,43,202,122,44,49,63,43,202,122,44,48,63,43,202,122,44,47,63,43,202,122,44,46,63,43,202,122,44,45,63,43,202,122,44,44,63,43,202,122,44,43,63,43,202,122,44,42,63,43,202,122,44,41,63,43,202,122,44,40,63,43,202,122,44,39,63,43,202,122,44,38,63,43,202,122,44,37,63,43,202,122,44,36,63,43,202,122,44,35,63,43,202,122,44,34,63,43,202,122,44,33,63,43,202,122,44,32,63,43,202,122,44,31,63,43,202,122,44,30,63,43,202,122,44,29,63,43,202,122,44,28,63,43,202,122,44,27,63,43,202,122,44,26,63,43,202,122,44,25,63,43,202,122,44,24,63,43,202,122,44,23,63,43,202,122,44,22,63,43,202,122,44,21,63,43,202,122,44,20,63,43,202,122,44,19,63,43,202,122,44,18,63,43,202,122,44,17,63,43,202,122,44,16,63,43,202,122,44,15,63,43,202,122,44,14,63,43,202,122,44,13,63,43,202,122,44,12,63,43,202,122,44,84,69,1,202,122,44,-39,70,1,202,122,44,11,63,43,202,122,44,10,63,43,202,122,44,9,63,43,202,122,44,8,63,43,202,122,44,7,63,43,202,122,44,6,63,43,202,122,44,5,63,43,202,122,44,4,63,43,202,122,44,3,63,43,202,122,44,2,63,43,202,122,44,1,63,43,202,122,44,0,63,43,202,122,44,-1,63,43,202,122,44,-2,63,43,202,122,44,-3,63,43,202,122,44,-4,63,43,202,122,44,-5,63,43,202,122,44,-6,63,43,202,122,44,-7,63,43,202,122,44,-8,63,43,202,122,44,-9,63,43,202,122,44,-10,63,43,202,122,44,-11,63,43,202,122,44,-12,63,43,202,122,44,-13,63,43,202,122,44,-14,63,43,202,122,44,-15,63,43,202,122,44,-16,63,43,202,122,44,-17,63,43,202,122,44,-18,63,43,202,122,44,63,62,43,202,122,44,-18,62,43,202,122,44,63,61,43,202,122,44,-18,61,43,202,122,44,63,60,43,202,122,44,-18,60,43,202,122,44,63,59,43,202,122,44,-18,59,43,202,122,44,63,58,43,202,122,44,-18,58,43,202,122,44,63,57,43,202,122,44,-18,57,43,202,122,44,63,56,43,202,122,44,-18,56,43,202,122,44,63,55,43,202,122,44,-18,55,43,202,122,44,63,54,43,202,122,44,-18,54,43,202,122,44,63,53,43,202,122,44,-18,53,43,202,122,44,63,52,43,202,122,44,-18,52,43,202,122,44,63,51,43,202,122,44,-18,51,43,202,122,44,63,50,43,202,122,44,-18,50,43,202,122,44,63,49,43,202,122,44,-18,49,43,202,122,44,63,48,43,202,122,44,-18,48,43,202,122,44,63,47,43,202,122,44,-18,47,43,202,122,44,63,46,43,202,122,44,-18,46,43,202,122,44,63,45,43,202,122,44,-18,45,43,202,122,44,63,44,43,202,122,44,-18,44,43,202,122,44,63,43,43,202,122,44,-18,43,43,202,122,44,63,42,43,202,122,44,-18,42,43,202,122,44,63,41,43,202,122,44,-18,41,43,202,122,44,63,40,43,202,122,44,-18,40,43,202,122,44,63,39,43,202,122,44,-18,39,43,202,122,44,63,38,43,202,122,44,-18,38,43,202,122,44,63,37,43,202,122,44,-18,37,43,202,122,44,63,36,43,202,122,44,-18,36,43,202,122,44,63,35,43,202,122,44,-18,35,43,202,122,44,63,34,43,202,122,44,-18,34,43,202,122,44,63,33,43,202,122,44,-18,33,43,202,122,44,63,32,43,202,122,44,-18,32,43,202,122,44,63,31,43,202,122,44,-18,31,43,202,122,44,63,30,43,202,122,44,-18,30,43,202,122,44,63,29,43,202,122,44,-18,29,43,202,122,44,63,28,43,202,122,44,-18,28,43,202,122,44,63,27,43,202,122,44,-18,27,43,202,122,44,63,26,43,202,122,44,-18,26,43,202,122,44,63,25,43,202,122,44,-18,25,43,202,122,44,63,24,43,202,122,44,-18,24,43,202,122,44,63,23,43,202,122,44,-18,23,43,202,122,44,63,22,43,202,122,44,-18,22,43,202,122,44,63,21,43,202,122,44,-18,21,43,202,122,44,63,20,43,202,122,44,-18,20,43,202,122,44,63,19,43,202,122,44,-18,19,43,202,122,44,63,18,43,202,122,44,-18,18,43,202,122,44,63,17,43,202,122,44,-18,17,43,202,122,44,84,70,1,202,122,44,-39,71,1,202,122,44,63,16,43,202,122,44,-18,16,43,202,122,44,63,15,43,202,122,44,-18,15,43,202,122,44,63,14,43,202,122,44,-18,14,43,202,122,44,63,13,43,202,122,44,-18,13,43,202,122,44,63,12,43,202,122,44,-18,12,43,202,122,44,63,11,43,202,122,44,-18,11,43,202,122,44,63,10,43,202,122,44,-18,10,43,202,122,44,63,9,43,202,122,44,-18,9,43,202,122,44,63,8,43,202,122,44,-18,8,43,202,122,44,63,7,43,202,122,44,-18,7,43,202,122,44,63,6,43,202,122,44,-18,6,43,202,122,44,63,5,43,202,122,44,-18,5,43,202,122,44,63,4,43,202,122,44,-18,4,43,202,122,44,63,3,43,202,122,44,-18,3,43,202,122,44,63,2,43,202,122,44,-18,2,43,202,122,44,63,1,43,202,122,44,-18,1,43,202,122,44,63,0,43,202,122,44,-18,0,43,202,122,44,63,-1,43,202,122,44,-18,-1,43,202,122,44,63,-2,43,202,122,44,-18,-2,43,202,122,44,63,-3,43,202,122,44,-18,-3,43,202,122,44,63,-4,43,202,122,44,-18,-4,43,202,122,44,63,-5,43,202,122,44,-18,-5,43,202,122,44,63,-6,43,202,122,44,-18,-6,43,202,122,44,63,-7,43,202,122,44,-18,-7,43,202,122,44,63,-8,43,202,122,44,-18,-8,43,202,122,44,63,-9,43,202,122,44,-18,-9,43,202,122,44,63,-10,43,202,122,44,-18,-10,43,202,122,44,63,-11,43,202,122,44,-18,-11,43,202,122,44,63,-12,43,202,122,44,-18,-12,43,202,122,44,63,-13,43,202,122,44,-18,-13,43,202,122,44,63,-14,43,202,122,44,-18,-14,43,202,122,44,63,-15,43,202,122,44,-18,-15,43,202,122,44,63,-16,43,202,122,44,-18,-16,43,202,122,44,63,-17,43,202,122,44,-18,-17,43,202,122,44,63,-18,43,202,122,44,62,-18,43,202,122,44,61,-18,43,202,122,44,60,-18,43,202,122,44,59,-18,43,202,122,44,58,-18,43,202,122,44,57,-18,43,202,122,44,56,-18,43,202,122,44,55,-18,43,202,122,44,54,-18,43,202,122,44,53,-18,43,202,122,44,52,-18,43,202,122,44,51,-18,43,202,122,44,50,-18,43,202,122,44,49,-18,43,202,122,44,48,-18,43,202,122,44,47,-18,43,202,122,44,46,-18,43,202,122,44,45,-18,43,202,122,44,44,-18,43,202,122,44,43,-18,43,202,122,44,42,-18,43,202,122,44,41,-18,43,202,122,44,40,-18,43,202,122,44,39,-18,43,202,122,44,38,-18,43,202,122,44,37,-18,43,202,122,44,36,-18,43,202,122,44,35,-18,43,202,122,44,34,-18,43,202,122,44,33,-18,43,202,122,44,32,-18,43,202,122,44,31,-18,43,202,122,44,30,-18,43,202,122,44,29,-18,43,202,122,44,28,-18,43,202,122,44,27,-18,43,202,122,44,26,-18,43,202,122,44,25,-18,43,202,122,44,24,-18,43,202,122,44,23,-18,43,202,122,44,22,-18,43,202,122,44,21,-18,43,202,122,44,20,-18,43,202,122,44,19,-18,43,202,122,44,18,-18,43,202,122,44,17,-18,43,202,122,44,16,-18,43,202,122,44,15,-18,43,202,122,44,14,-18,43,202,122,44,13,-18,43,202,122,44,12,-18,43,202,122,44,11,-18,43,202,122,44,10,-18,43,202,122,44,84,71,1,202,122,44,-39,72,1,202,122,44,9,-18,43,202,122,44,8,-18,43,202,122,44,7,-18,43,202,122,44,6,-18,43,202,122,44,5,-18,43,202,122,44,4,-18,43,202,122,44,3,-18,43,202,122,44,2,-18,43,202,122,44,1,-18,43,202,122,44,0,-18,43,202,122,44,-1,-18,43,202,122,44,-2,-18,43,202,122,44,-3,-18,43,202,122,44,-4,-18,43,202,122,44,-5,-18,43,202,122,44,-6,-18,43,202,122,44,-7,-18,43,202,122,44,-8,-18,43,202,122,44,-9,-18,43,202,122,44,-10,-18,43,202,122,44,-11,-18,43,202,122,44,-12,-18,43,202,122,44,-13,-18,43,202,122,44,-14,-18,43,202,122,44,-15,-18,43,202,122,44,-16,-18,43,202,122,44,-17,-18,43,202,122,44,-18,-18,43,202,122,44,64,64,42,202,122,44,63,64,42,202,122,44,62,64,42,202,122,44,61,64,42,202,122,44,60,64,42,202,122,44,59,64,42,202,122,44,58,64,42,202,122,44,57,64,42,202,122,44,56,64,42,202,122,44,55,64,42,202,122,44,54,64,42,202,122,44,53,64,42,202,122,44,52,64,42,202,122,44,51,64,42,202,122,44,50,64,42,202,122,44,49,64,42,202,122,44,48,64,42,202,122,44,47,64,42,202,122,44,46,64,42,202,122,44,45,64,42,202,122,44,44,64,42,202,122,44,43,64,42,202,122,44,42,64,42,202,122,44,41,64,42,202,122,44,40,64,42,202,122,44,39,64,42,202,122,44,38,64,42,202,122,44,37,64,42,202,122,44,36,64,42,202,122,44,35,64,42,202,122,44,34,64,42,202,122,44,33,64,42,202,122,44,32,64,42,202,122,44,31,64,42,202,122,44,30,64,42,202,122,44,29,64,42,202,122,44,28,64,42,202,122,44,27,64,42,202,122,44,26,64,42,202,122,44,25,64,42,202,122,44,24,64,42,202,122,44,23,64,42,202,122,44,22,64,42,202,122,44,21,64,42,202,122,44,20,64,42,202,122,44,19,64,42,202,122,44,18,64,42,202,122,44,17,64,42,202,122,44,16,64,42,202,122,44,15,64,42,202,122,44,14,64,42,202,122,44,13,64,42,202,122,44,12,64,42,202,122,44,11,64,42,202,122,44,10,64,42,202,122,44,9,64,42,202,122,44,8,64,42,202,122,44,7,64,42,202,122,44,6,64,42,202,122,44,5,64,42,202,122,44,4,64,42,202,122,44,3,64,42,202,122,44,2,64,42,202,122,44,1,64,42,202,122,44,0,64,42,202,122,44,-1,64,42,202,122,44,-2,64,42,202,122,44,-3,64,42,202,122,44,-4,64,42,202,122,44,-5,64,42,202,122,44,-6,64,42,202,122,44,-7,64,42,202,122,44,-8,64,42,202,122,44,-9,64,42,202,122,44,-10,64,42,202,122,44,-11,64,42,202,122,44,-12,64,42,202,122,44,-13,64,42,202,122,44,-14,64,42,202,122,44,-15,64,42,202,122,44,-16,64,42,202,122,44,-17,64,42,202,122,44,-18,64,42,202,122,44,-19,64,42,202,122,44,64,63,42,202,122,44,-19,63,42,202,122,44,64,62,42,202,122,44,-19,62,42,202,122,44,64,61,42,202,122,44,-19,61,42,202,122,44,64,60,42,202,122,44,-19,60,42,202,122,44,64,59,42,202,122,44,-19,59,42,202,122,44,84,72,1,202,122,44,-39,73,1,202,122,44,64,58,42,202,122,44,-19,58,42,202,122,44,64,57,42,202,122,44,-19,57,42,202,122,44,64,56,42,202,122,44,-19,56,42,202,122,44,64,55,42,202,122,44,-19,55,42,202,122,44,64,54,42,202,122,44,-19,54,42,202,122,44,64,53,42,202,122,44,-19,53,42,202,122,44,64,52,42,202,122,44,-19,52,42,202,122,44,64,51,42,202,122,44,-19,51,42,202,122,44,64,50,42,202,122,44,-19,50,42,202,122,44,64,49,42,202,122,44,-19,49,42,202,122,44,64,48,42,202,122,44,-19,48,42,202,122,44,64,47,42,202,122,44,-19,47,42,202,122,44,64,46,42,202,122,44,-19,46,42,202,122,44,64,45,42,202,122,44,-19,45,42,202,122,44,64,44,42,202,122,44,-19,44,42,202,122,44,64,43,42,202,122,44,-19,43,42,202,122,44,64,42,42,202,122,44,-19,42,42,202,122,44,64,41,42,202,122,44,-19,41,42,202,122,44,64,40,42,202,122,44,-19,40,42,202,122,44,64,39,42,202,122,44,-19,39,42,202,122,44,64,38,42,202,122,44,-19,38,42,202,122,44,64,37,42,202,122,44,-19,37,42,202,122,44,64,36,42,202,122,44,-19,36,42,202,122,44,64,35,42,202,122,44,-19,35,42,202,122,44,64,34,42,202,122,44,-19,34,42,202,122,44,64,33,42,202,122,44,-19,33,42,202,122,44,64,32,42,202,122,44,-19,32,42,202,122,44,64,31,42,202,122,44,-19,31,42,202,122,44,64,30,42,202,122,44,-19,30,42,202,122,44,64,29,42,202,122,44,-19,29,42,202,122,44,64,28,42,202,122,44,-19,28,42,202,122,44,64,27,42,202,122,44,-19,27,42,202,122,44,64,26,42,202,122,44,-19,26,42,202,122,44,64,25,42,202,122,44,-19,25,42,202,122,44,64,24,42,202,122,44,-19,24,42,202,122,44,64,23,42,202,122,44,-19,23,42,202,122,44,64,22,42,202,122,44,-19,22,42,202,122,44,64,21,42,202,122,44,-19,21,42,202,122,44,64,20,42,202,122,44,-19,20,42,202,122,44,64,19,42,202,122,44,-19,19,42,202,122,44,64,18,42,202,122,44,-19,18,42,202,122,44,64,17,42,202,122,44,-19,17,42,202,122,44,64,16,42,202,122,44,-19,16,42,202,122,44,64,15,42,202,122,44,-19,15,42,202,122,44,64,14,42,202,122,44,-19,14,42,202,122,44,64,13,42,202,122,44,-19,13,42,202,122,44,64,12,42,202,122,44,-19,12,42,202,122,44,64,11,42,202,122,44,-19,11,42,202,122,44,64,10,42,202,122,44,-19,10,42,202,122,44,64,9,42,202,122,44,-19,9,42,202,122,44,64,8,42,202,122,44,-19,8,42,202,122,44,64,7,42,202,122,44,-19,7,42,202,122,44,64,6,42,202,122,44,-19,6,42,202,122,44,64,5,42,202,122,44,-19,5,42,202,122,44,64,4,42,202,122,44,-19,4,42,202,122,44,64,3,42,202,122,44,-19,3,42,202,122,44,64,2,42,202,122,44,-19,2,42,202,122,44,64,1,42,202,122,44,-19,1,42,202,122,44,64,0,42,202,122,44,-19,0,42,202,122,44,64,-1,42,202,122,44,-19,-1,42,202,122,44,64,-2,42,202,122,44,-19,-2,42,202,122,44,84,73,1,202,122,44,-39,74,1,202,122,44,64,-3,42,202,122,44,-19,-3,42,202,122,44,64,-4,42,202,122,44,-19,-4,42,202,122,44,64,-5,42,202,122,44,-19,-5,42,202,122,44,64,-6,42,202,122,44,-19,-6,42,202,122,44,64,-7,42,202,122,44,-19,-7,42,202,122,44,64,-8,42,202,122,44,-19,-8,42,202,122,44,64,-9,42,202,122,44,-19,-9,42,202,122,44,64,-10,42,202,122,44,-19,-10,42,202,122,44,64,-11,42,202,122,44,-19,-11,42,202,122,44,64,-12,42,202,122,44,-19,-12,42,202,122,44,64,-13,42,202,122,44,-19,-13,42,202,122,44,64,-14,42,202,122,44,-19,-14,42,202,122,44,64,-15,42,202,122,44,-19,-15,42,202,122,44,64,-16,42,202,122,44,-19,-16,42,202,122,44,64,-17,42,202,122,44,-19,-17,42,202,122,44,64,-18,42,202,122,44,-19,-18,42,202,122,44,64,-19,42,202,122,44,63,-19,42,202,122,44,62,-19,42,202,122,44,61,-19,42,202,122,44,60,-19,42,202,122,44,59,-19,42,202,122,44,58,-19,42,202,122,44,57,-19,42,202,122,44,56,-19,42,202,122,44,55,-19,42,202,122,44,54,-19,42,202,122,44,53,-19,42,202,122,44,52,-19,42,202,122,44,51,-19,42,202,122,44,50,-19,42,202,122,44,49,-19,42,202,122,44,48,-19,42,202,122,44,47,-19,42,202,122,44,46,-19,42,202,122,44,45,-19,42,202,122,44,44,-19,42,202,122,44,43,-19,42,202,122,44,42,-19,42,202,122,44,41,-19,42,202,122,44,40,-19,42,202,122,44,39,-19,42,202,122,44,38,-19,42,202,122,44,37,-19,42,202,122,44,36,-19,42,202,122,44,35,-19,42,202,122,44,34,-19,42,202,122,44,33,-19,42,202,122,44,32,-19,42,202,122,44,31,-19,42,202,122,44,30,-19,42,202,122,44,29,-19,42,202,122,44,28,-19,42,202,122,44,27,-19,42,202,122,44,26,-19,42,202,122,44,25,-19,42,202,122,44,24,-19,42,202,122,44,23,-19,42,202,122,44,22,-19,42,202,122,44,21,-19,42,202,122,44,20,-19,42,202,122,44,19,-19,42,202,122,44,18,-19,42,202,122,44,17,-19,42,202,122,44,16,-19,42,202,122,44,15,-19,42,202,122,44,14,-19,42,202,122,44,13,-19,42,202,122,44,12,-19,42,202,122,44,11,-19,42,202,122,44,10,-19,42,202,122,44,9,-19,42,202,122,44,8,-19,42,202,122,44,7,-19,42,202,122,44,6,-19,42,202,122,44,5,-19,42,202,122,44,4,-19,42,202,122,44,3,-19,42,202,122,44,2,-19,42,202,122,44,1,-19,42,202,122,44,0,-19,42,202,122,44,-1,-19,42,202,122,44,-2,-19,42,202,122,44,-3,-19,42,202,122,44,-4,-19,42,202,122,44,-5,-19,42,202,122,44,-6,-19,42,202,122,44,-7,-19,42,202,122,44,-8,-19,42,202,122,44,-9,-19,42,202,122,44,-10,-19,42,202,122,44,-11,-19,42,202,122,44,-12,-19,42,202,122,44,-13,-19,42,202,122,44,-14,-19,42,202,122,44,-15,-19,42,202,122,44,-16,-19,42,202,122,44,-17,-19,42,202,122,44,-18,-19,42,202,122,44,-19,-19,42,202,122,44,64,64,41,202,122,44,63,64,41,202,122,44,62,64,41,202,122,44,61,64,41,202,122,44,60,64,41,202,122,44,59,64,41,202,122,44,84,74,1,202,122,44,-39,75,1,202,122,44,58,64,41,202,122,44,57,64,41,202,122,44,56,64,41,202,122,44,55,64,41,202,122,44,54,64,41,202,122,44,53,64,41,202,122,44,52,64,41,202,122,44,51,64,41,202,122,44,50,64,41,202,122,44,49,64,41,202,122,44,48,64,41,202,122,44,47,64,41,202,122,44,46,64,41,202,122,44,45,64,41,202,122,44,44,64,41,202,122,44,43,64,41,202,122,44,42,64,41,202,122,44,41,64,41,202,122,44,40,64,41,202,122,44,39,64,41,202,122,44,38,64,41,202,122,44,37,64,41,202,122,44,36,64,41,202,122,44,35,64,41,202,122,44,34,64,41,202,122,44,33,64,41,202,122,44,32,64,41,202,122,44,31,64,41,202,122,44,30,64,41,202,122,44,29,64,41,202,122,44,28,64,41,202,122,44,27,64,41,202,122,44,26,64,41,202,122,44,25,64,41,202,122,44,24,64,41,202,122,44,23,64,41,202,122,44,22,64,41,202,122,44,21,64,41,202,122,44,20,64,41,202,122,44,19,64,41,202,122,44,18,64,41,202,122,44,17,64,41,202,122,44,16,64,41,202,122,44,15,64,41,202,122,44,14,64,41,202,122,44,13,64,41,202,122,44,12,64,41,202,122,44,11,64,41,202,122,44,10,64,41,202,122,44,9,64,41,202,122,44,8,64,41,202,122,44,7,64,41,202,122,44,6,64,41,202,122,44,5,64,41,202,122,44,4,64,41,202,122,44,3,64,41,202,122,44,2,64,41,202,122,44,1,64,41,202,122,44,0,64,41,202,122,44,-1,64,41,202,122,44,-2,64,41,202,122,44,-3,64,41,202,122,44,-4,64,41,202,122,44,-5,64,41,202,122,44,-6,64,41,202,122,44,-7,64,41,202,122,44,-8,64,41,202,122,44,-9,64,41,202,122,44,-10,64,41,202,122,44,-11,64,41,202,122,44,-12,64,41,202,122,44,-13,64,41,202,122,44,-14,64,41,202,122,44,-15,64,41,202,122,44,-16,64,41,202,122,44,-17,64,41,202,122,44,-18,64,41,202,122,44,-19,64,41,202,122,44,64,63,41,202,122,44,-19,63,41,202,122,44,64,62,41,202,122,44,-19,62,41,202,122,44,64,61,41,202,122,44,-19,61,41,202,122,44,64,60,41,202,122,44,-19,60,41,202,122,44,64,59,41,202,122,44,-19,59,41,202,122,44,64,58,41,202,122,44,-19,58,41,202,122,44,64,57,41,202,122,44,-19,57,41,202,122,44,64,56,41,202,122,44,-19,56,41,202,122,44,64,55,41,202,122,44,-19,55,41,202,122,44,64,54,41,202,122,44,-19,54,41,202,122,44,64,53,41,202,122,44,-19,53,41,202,122,44,64,52,41,202,122,44,-19,52,41,202,122,44,64,51,41,202,122,44,-19,51,41,202,122,44,64,50,41,202,122,44,-19,50,41,202,122,44,64,49,41,202,122,44,-19,49,41,202,122,44,64,48,41,202,122,44,-19,48,41,202,122,44,64,47,41,202,122,44,-19,47,41,202,122,44,64,46,41,202,122,44,-19,46,41,202,122,44,64,45,41,202,122,44,-19,45,41,202,122,44,64,44,41,202,122,44,-19,44,41,202,122,44,64,43,41,202,122,44,-19,43,41,202,122,44,64,42,41,202,122,44,-19,42,41,202,122,44,84,75,1,202,122,44,-39,76,1,202,122,44,64,41,41,202,122,44,-19,41,41,202,122,44,64,40,41,202,122,44,-19,40,41,202,122,44,64,39,41,202,122,44,-19,39,41,202,122,44,64,38,41,202,122,44,-19,38,41,202,122,44,64,37,41,202,122,44,-19,37,41,202,122,44,64,36,41,202,122,44,-19,36,41,202,122,44,64,35,41,202,122,44,-19,35,41,202,122,44,64,34,41,202,122,44,-19,34,41,202,122,44,64,33,41,202,122,44,-19,33,41,202,122,44,64,32,41,202,122,44,-19,32,41,202,122,44,64,31,41,202,122,44,-19,31,41,202,122,44,64,30,41,202,122,44,-19,30,41,202,122,44,64,29,41,202,122,44,-19,29,41,202,122,44,64,28,41,202,122,44,-19,28,41,202,122,44,64,27,41,202,122,44,-19,27,41,202,122,44,64,26,41,202,122,44,-19,26,41,202,122,44,64,25,41,202,122,44,-19,25,41,202,122,44,64,24,41,202,122,44,-19,24,41,202,122,44,64,23,41,202,122,44,-19,23,41,202,122,44,64,22,41,202,122,44,-19,22,41,202,122,44,64,21,41,202,122,44,-19,21,41,202,122,44,64,20,41,202,122,44,-19,20,41,202,122,44,64,19,41,202,122,44,-19,19,41,202,122,44,64,18,41,202,122,44,-19,18,41,202,122,44,64,17,41,202,122,44,-19,17,41,202,122,44,64,16,41,202,122,44,-19,16,41,202,122,44,64,15,41,202,122,44,-19,15,41,202,122,44,64,14,41,202,122,44,-19,14,41,202,122,44,64,13,41,202,122,44,-19,13,41,202,122,44,64,12,41,202,122,44,-19,12,41,202,122,44,64,11,41,202,122,44,-19,11,41,202,122,44,64,10,41,202,122,44,-19,10,41,202,122,44,64,9,41,202,122,44,-19,9,41,202,122,44,64,8,41,202,122,44,-19,8,41,202,122,44,64,7,41,202,122,44,-19,7,41,202,122,44,64,6,41,202,122,44,-19,6,41,202,122,44,64,5,41,202,122,44,-19,5,41,202,122,44,64,4,41,202,122,44,-19,4,41,202,122,44,64,3,41,202,122,44,-19,3,41,202,122,44,64,2,41,202,122,44,-19,2,41,202,122,44,64,1,41,202,122,44,-19,1,41,202,122,44,64,0,41,202,122,44,-19,0,41,202,122,44,64,-1,41,202,122,44,-19,-1,41,202,122,44,64,-2,41,202,122,44,-19,-2,41,202,122,44,64,-3,41,202,122,44,-19,-3,41,202,122,44,64,-4,41,202,122,44,-19,-4,41,202,122,44,64,-5,41,202,122,44,-19,-5,41,202,122,44,64,-6,41,202,122,44,-19,-6,41,202,122,44,64,-7,41,202,122,44,-19,-7,41,202,122,44,64,-8,41,202,122,44,-19,-8,41,202,122,44,64,-9,41,202,122,44,-19,-9,41,202,122,44,64,-10,41,202,122,44,-19,-10,41,202,122,44,64,-11,41,202,122,44,-19,-11,41,202,122,44,64,-12,41,202,122,44,-19,-12,41,202,122,44,64,-13,41,202,122,44,-19,-13,41,202,122,44,64,-14,41,202,122,44,-19,-14,41,202,122,44,64,-15,41,202,122,44,-19,-15,41,202,122,44,64,-16,41,202,122,44,-19,-16,41,202,122,44,64,-17,41,202,122,44,-19,-17,41,202,122,44,64,-18,41,202,122,44,-19,-18,41,202,122,44,64,-19,41,202,122,44,63,-19,41,202,122,44,84,76,1,202,122,44,-39,77,1,202,122,44,62,-19,41,202,122,44,61,-19,41,202,122,44,60,-19,41,202,122,44,59,-19,41,202,122,44,58,-19,41,202,122,44,57,-19,41,202,122,44,56,-19,41,202,122,44,55,-19,41,202,122,44,54,-19,41,202,122,44,53,-19,41,202,122,44,52,-19,41,202,122,44,51,-19,41,202,122,44,50,-19,41,202,122,44,49,-19,41,202,122,44,48,-19,41,202,122,44,47,-19,41,202,122,44,46,-19,41,202,122,44,45,-19,41,202,122,44,44,-19,41,202,122,44,43,-19,41,202,122,44,42,-19,41,202,122,44,41,-19,41,202,122,44,40,-19,41,202,122,44,39,-19,41,202,122,44,38,-19,41,202,122,44,37,-19,41,202,122,44,36,-19,41,202,122,44,35,-19,41,202,122,44,34,-19,41,202,122,44,33,-19,41,202,122,44,32,-19,41,202,122,44,31,-19,41,202,122,44,30,-19,41,202,122,44,29,-19,41,202,122,44,28,-19,41,202,122,44,27,-19,41,202,122,44,26,-19,41,202,122,44,25,-19,41,202,122,44,24,-19,41,202,122,44,23,-19,41,202,122,44,22,-19,41,202,122,44,21,-19,41,202,122,44,20,-19,41,202,122,44,19,-19,41,202,122,44,18,-19,41,202,122,44,17,-19,41,202,122,44,16,-19,41,202,122,44,15,-19,41,202,122,44,14,-19,41,202,122,44,13,-19,41,202,122,44,12,-19,41,202,122,44,11,-19,41,202,122,44,10,-19,41,202,122,44,9,-19,41,202,122,44,8,-19,41,202,122,44,7,-19,41,202,122,44,6,-19,41,202,122,44,5,-19,41,202,122,44,4,-19,41,202,122,44,3,-19,41,202,122,44,2,-19,41,202,122,44,1,-19,41,202,122,44,0,-19,41,202,122,44,-1,-19,41,202,122,44,-2,-19,41,202,122,44,-3,-19,41,202,122,44,-4,-19,41,202,122,44,-5,-19,41,202,122,44,-6,-19,41,202,122,44,-7,-19,41,202,122,44,-8,-19,41,202,122,44,-9,-19,41,202,122,44,-10,-19,41,202,122,44,-11,-19,41,202,122,44,-12,-19,41,202,122,44,-13,-19,41,202,122,44,-14,-19,41,202,122,44,-15,-19,41,202,122,44,-16,-19,41,202,122,44,-17,-19,41,202,122,44,-18,-19,41,202,122,44,-19,-19,41,202,122,44,65,65,40,202,122,44,64,65,40,202,122,44,63,65,40,202,122,44,62,65,40,202,122,44,61,65,40,202,122,44,60,65,40,202,122,44,59,65,40,202,122,44,58,65,40,202,122,44,57,65,40,202,122,44,56,65,40,202,122,44,55,65,40,202,122,44,54,65,40,202,122,44,53,65,40,202,122,44,52,65,40,202,122,44,51,65,40,202,122,44,50,65,40,202,122,44,49,65,40,202,122,44,48,65,40,202,122,44,47,65,40,202,122,44,46,65,40,202,122,44,45,65,40,202,122,44,44,65,40,202,122,44,43,65,40,202,122,44,42,65,40,202,122,44,41,65,40,202,122,44,40,65,40,202,122,44,39,65,40,202,122,44,38,65,40,202,122,44,37,65,40,202,122,44,36,65,40,202,122,44,35,65,40,202,122,44,34,65,40,202,122,44,33,65,40,202,122,44,32,65,40,202,122,44,31,65,40,202,122,44,30,65,40,202,122,44,29,65,40,202,122,44,28,65,40,202,122,44,27,65,40,202,122,44,26,65,40,202,122,44,84,77,1,202,122,44,-39,78,1,202,122,44,25,65,40,202,122,44,24,65,40,202,122,44,23,65,40,202,122,44,22,65,40,202,122,44,21,65,40,202,122,44,20,65,40,202,122,44,19,65,40,202,122,44,18,65,40,202,122,44,17,65,40,202,122,44,16,65,40,202,122,44,15,65,40,202,122,44,14,65,40,202,122,44,13,65,40,202,122,44,12,65,40,202,122,44,11,65,40,202,122,44,10,65,40,202,122,44,9,65,40,202,122,44,8,65,40,202,122,44,7,65,40,202,122,44,6,65,40,202,122,44,5,65,40,202,122,44,4,65,40,202,122,44,3,65,40,202,122,44,2,65,40,202,122,44,1,65,40,202,122,44,0,65,40,202,122,44,-1,65,40,202,122,44,-2,65,40,202,122,44,-3,65,40,202,122,44,-4,65,40,202,122,44,-5,65,40,202,122,44,-6,65,40,202,122,44,-7,65,40,202,122,44,-8,65,40,202,122,44,-9,65,40,202,122,44,-10,65,40,202,122,44,-11,65,40,202,122,44,-12,65,40,202,122,44,-13,65,40,202,122,44,-14,65,40,202,122,44,-15,65,40,202,122,44,-16,65,40,202,122,44,-17,65,40,202,122,44,-18,65,40,202,122,44,-19,65,40,202,122,44,-20,65,40,202,122,44,65,64,40,202,122,44,-20,64,40,202,122,44,65,63,40,202,122,44,-20,63,40,202,122,44,65,62,40,202,122,44,-20,62,40,202,122,44,65,61,40,202,122,44,-20,61,40,202,122,44,65,60,40,202,122,44,-20,60,40,202,122,44,65,59,40,202,122,44,-20,59,40,202,122,44,65,58,40,202,122,44,-20,58,40,202,122,44,65,57,40,202,122,44,-20,57,40,202,122,44,65,56,40,202,122,44,-20,56,40,202,122,44,65,55,40,202,122,44,-20,55,40,202,122,44,65,54,40,202,122,44,-20,54,40,202,122,44,65,53,40,202,122,44,-20,53,40,202,122,44,65,52,40,202,122,44,-20,52,40,202,122,44,65,51,40,202,122,44,-20,51,40,202,122,44,65,50,40,202,122,44,-20,50,40,202,122,44,65,49,40,202,122,44,-20,49,40,202,122,44,65,48,40,202,122,44,-20,48,40,202,122,44,65,47,40,202,122,44,-20,47,40,202,122,44,65,46,40,202,122,44,-20,46,40,202,122,44,65,45,40,202,122,44,-20,45,40,202,122,44,65,44,40,202,122,44,-20,44,40,202,122,44,65,43,40,202,122,44,-20,43,40,202,122,44,65,42,40,202,122,44,-20,42,40,202,122,44,65,41,40,202,122,44,-20,41,40,202,122,44,65,40,40,202,122,44,-20,40,40,202,122,44,65,39,40,202,122,44,-20,39,40,202,122,44,65,38,40,202,122,44,-20,38,40,202,122,44,65,37,40,202,122,44,-20,37,40,202,122,44,65,36,40,202,122,44,-20,36,40,202,122,44,65,35,40,202,122,44,-20,35,40,202,122,44,65,34,40,202,122,44,-20,34,40,202,122,44,65,33,40,202,122,44,-20,33,40,202,122,44,65,32,40,202,122,44,-20,32,40,202,122,44,65,31,40,202,122,44,-20,31,40,202,122,44,65,30,40,202,122,44,-20,30,40,202,122,44,65,29,40,202,122,44,-20,29,40,202,122,44,65,28,40,202,122,44,-20,28,40,202,122,44,65,27,40,202,122,44,-20,27,40,202,122,44,84,78,1,202,122,44,-39,79,1,202,122,44,65,26,40,202,122,44,-20,26,40,202,122,44,65,25,40,202,122,44,-20,25,40,202,122,44,65,24,40,202,122,44,-20,24,40,202,122,44,65,23,40,202,122,44,-20,23,40,202,122,44,65,22,40,202,122,44,-20,22,40,202,122,44,65,21,40,202,122,44,-20,21,40,202,122,44,65,20,40,202,122,44,-20,20,40,202,122,44,65,19,40,202,122,44,-20,19,40,202,122,44,65,18,40,202,122,44,-20,18,40,202,122,44,65,17,40,202,122,44,-20,17,40,202,122,44,65,16,40,202,122,44,-20,16,40,202,122,44,65,15,40,202,122,44,-20,15,40,202,122,44,65,14,40,202,122,44,-20,14,40,202,122,44,65,13,40,202,122,44,-20,13,40,202,122,44,65,12,40,202,122,44,-20,12,40,202,122,44,65,11,40,202,122,44,-20,11,40,202,122,44,65,10,40,202,122,44,-20,10,40,202,122,44,65,9,40,202,122,44,-20,9,40,202,122,44,65,8,40,202,122,44,-20,8,40,202,122,44,65,7,40,202,122,44,-20,7,40,202,122,44,65,6,40,202,122,44,-20,6,40,202,122,44,65,5,40,202,122,44,-20,5,40,202,122,44,65,4,40,202,122,44,-20,4,40,202,122,44,65,3,40,202,122,44,-20,3,40,202,122,44,65,2,40,202,122,44,-20,2,40,202,122,44,65,1,40,202,122,44,-20,1,40,202,122,44,65,0,40,202,122,44,-20,0,40,202,122,44,65,-1,40,202,122,44,-20,-1,40,202,122,44,65,-2,40,202,122,44,-20,-2,40,202,122,44,65,-3,40,202,122,44,-20,-3,40,202,122,44,65,-4,40,202,122,44,-20,-4,40,202,122,44,65,-5,40,202,122,44,-20,-5,40,202,122,44,65,-6,40,202,122,44,-20,-6,40,202,122,44,65,-7,40,202,122,44,-20,-7,40,202,122,44,65,-8,40,202,122,44,-20,-8,40,202,122,44,65,-9,40,202,122,44,-20,-9,40,202,122,44,65,-10,40,202,122,44,-20,-10,40,202,122,44,65,-11,40,202,122,44,-20,-11,40,202,122,44,65,-12,40,202,122,44,-20,-12,40,202,122,44,65,-13,40,202,122,44,-20,-13,40,202,122,44,65,-14,40,202,122,44,-20,-14,40,202,122,44,65,-15,40,202,122,44,-20,-15,40,202,122,44,65,-16,40,202,122,44,-20,-16,40,202,122,44,65,-17,40,202,122,44,-20,-17,40,202,122,44,65,-18,40,202,122,44,-20,-18,40,202,122,44,65,-19,40,202,122,44,-20,-19,40,202,122,44,65,-20,40,202,122,44,64,-20,40,202,122,44,63,-20,40,202,122,44,62,-20,40,202,122,44,61,-20,40,202,122,44,60,-20,40,202,122,44,59,-20,40,202,122,44,58,-20,40,202,122,44,57,-20,40,202,122,44,56,-20,40,202,122,44,55,-20,40,202,122,44,54,-20,40,202,122,44,53,-20,40,202,122,44,52,-20,40,202,122,44,51,-20,40,202,122,44,50,-20,40,202,122,44,49,-20,40,202,122,44,48,-20,40,202,122,44,47,-20,40,202,122,44,46,-20,40,202,122,44,45,-20,40,202,122,44,44,-20,40,202,122,44,43,-20,40,202,122,44,42,-20,40,202,122,44,41,-20,40,202,122,44,40,-20,40,202,122,44,39,-20,40,202,122,44,38,-20,40,202,122,44,37,-20,40,202,122,44,36,-20,40,202,122,44,84,79,1,202,122,44,-39,80,1,202,122,44,35,-20,40,202,122,44,34,-20,40,202,122,44,33,-20,40,202,122,44,32,-20,40,202,122,44,31,-20,40,202,122,44,30,-20,40,202,122,44,29,-20,40,202,122,44,28,-20,40,202,122,44,27,-20,40,202,122,44,26,-20,40,202,122,44,25,-20,40,202,122,44,24,-20,40,202,122,44,23,-20,40,202,122,44,22,-20,40,202,122,44,21,-20,40,202,122,44,20,-20,40,202,122,44,19,-20,40,202,122,44,18,-20,40,202,122,44,17,-20,40,202,122,44,16,-20,40,202,122,44,15,-20,40,202,122,44,14,-20,40,202,122,44,13,-20,40,202,122,44,12,-20,40,202,122,44,11,-20,40,202,122,44,10,-20,40,202,122,44,9,-20,40,202,122,44,8,-20,40,202,122,44,7,-20,40,202,122,44,6,-20,40,202,122,44,5,-20,40,202,122,44,4,-20,40,202,122,44,3,-20,40,202,122,44,2,-20,40,202,122,44,1,-20,40,202,122,44,0,-20,40,202,122,44,-1,-20,40,202,122,44,-2,-20,40,202,122,44,-3,-20,40,202,122,44,-4,-20,40,202,122,44,-5,-20,40,202,122,44,-6,-20,40,202,122,44,-7,-20,40,202,122,44,-8,-20,40,202,122,44,-9,-20,40,202,122,44,-10,-20,40,202,122,44,-11,-20,40,202,122,44,-12,-20,40,202,122,44,-13,-20,40,202,122,44,-14,-20,40,202,122,44,-15,-20,40,202,122,44,-16,-20,40,202,122,44,-17,-20,40,202,122,44,-18,-20,40,202,122,44,-19,-20,40,202,122,44,-20,-20,40,202,122,44,65,65,39,202,122,44,64,65,39,202,122,44,63,65,39,202,122,44,62,65,39,202,122,44,61,65,39,202,122,44,60,65,39,202,122,44,59,65,39,202,122,44,58,65,39,202,122,44,57,65,39,202,122,44,56,65,39,202,122,44,55,65,39,202,122,44,54,65,39,202,122,44,53,65,39,202,122,44,52,65,39,202,122,44,51,65,39,202,122,44,50,65,39,202,122,44,49,65,39,202,122,44,48,65,39,202,122,44,47,65,39,202,122,44,46,65,39,202,122,44,45,65,39,202,122,44,44,65,39,202,122,44,43,65,39,202,122,44,42,65,39,202,122,44,41,65,39,202,122,44,40,65,39,202,122,44,39,65,39,202,122,44,38,65,39,202,122,44,37,65,39,202,122,44,36,65,39,202,122,44,35,65,39,202,122,44,34,65,39,202,122,44,33,65,39,202,122,44,32,65,39,202,122,44,31,65,39,202,122,44,30,65,39,202,122,44,29,65,39,202,122,44,28,65,39,202,122,44,27,65,39,202,122,44,26,65,39,202,122,44,25,65,39,202,122,44,24,65,39,202,122,44,23,65,39,202,122,44,22,65,39,202,122,44,21,65,39,202,122,44,20,65,39,202,122,44,19,65,39,202,122,44,18,65,39,202,122,44,17,65,39,202,122,44,16,65,39,202,122,44,15,65,39,202,122,44,14,65,39,202,122,44,13,65,39,202,122,44,12,65,39,202,122,44,11,65,39,202,122,44,10,65,39,202,122,44,9,65,39,202,122,44,8,65,39,202,122,44,7,65,39,202,122,44,6,65,39,202,122,44,5,65,39,202,122,44,4,65,39,202,122,44,3,65,39,202,122,44,2,65,39,202,122,44,1,65,39,202,122,44,0,65,39,202,122,44,84,80,1,202,122,44,-39,81,1,202,122,44,-1,65,39,202,122,44,-2,65,39,202,122,44,-3,65,39,202,122,44,-4,65,39,202,122,44,-5,65,39,202,122,44,-6,65,39,202,122,44,-7,65,39,202,122,44,-8,65,39,202,122,44,-9,65,39,202,122,44,-10,65,39,202,122,44,-11,65,39,202,122,44,-12,65,39,202,122,44,-13,65,39,202,122,44,-14,65,39,202,122,44,-15,65,39,202,122,44,-16,65,39,202,122,44,-17,65,39,202,122,44,-18,65,39,202,122,44,-19,65,39,202,122,44,-20,65,39,202,122,44,65,64,39,202,122,44,-20,64,39,202,122,44,65,63,39,202,122,44,-20,63,39,202,122,44,65,62,39,202,122,44,-20,62,39,202,122,44,65,61,39,202,122,44,-20,61,39,202,122,44,65,60,39,202,122,44,-20,60,39,202,122,44,65,59,39,202,122,44,-20,59,39,202,122,44,65,58,39,202,122,44,-20,58,39,202,122,44,65,57,39,202,122,44,-20,57,39,202,122,44,65,56,39,202,122,44,-20,56,39,202,122,44,65,55,39,202,122,44,-20,55,39,202,122,44,65,54,39,202,122,44,-20,54,39,202,122,44,65,53,39,202,122,44,-20,53,39,202,122,44,65,52,39,202,122,44,-20,52,39,202,122,44,65,51,39,202,122,44,-20,51,39,202,122,44,65,50,39,202,122,44,-20,50,39,202,122,44,65,49,39,202,122,44,-20,49,39,202,122,44,65,48,39,202,122,44,-20,48,39,202,122,44,65,47,39,202,122,44,-20,47,39,202,122,44,65,46,39,202,122,44,-20,46,39,202,122,44,65,45,39,202,122,44,-20,45,39,202,122,44,65,44,39,202,122,44,-20,44,39,202,122,44,65,43,39,202,122,44,-20,43,39,202,122,44,65,42,39,202,122,44,-20,42,39,202,122,44,65,41,39,202,122,44,-20,41,39,202,122,44,65,40,39,202,122,44,-20,40,39,202,122,44,65,39,39,202,122,44,-20,39,39,202,122,44,65,38,39,202,122,44,-20,38,39,202,122,44,65,37,39,202,122,44,-20,37,39,202,122,44,65,36,39,202,122,44,-20,36,39,202,122,44,65,35,39,202,122,44,-20,35,39,202,122,44,65,34,39,202,122,44,-20,34,39,202,122,44,65,33,39,202,122,44,-20,33,39,202,122,44,65,32,39,202,122,44,-20,32,39,202,122,44,65,31,39,202,122,44,-20,31,39,202,122,44,65,30,39,202,122,44,-20,30,39,202,122,44,65,29,39,202,122,44,-20,29,39,202,122,44,65,28,39,202,122,44,-20,28,39,202,122,44,65,27,39,202,122,44,-20,27,39,202,122,44,65,26,39,202,122,44,-20,26,39,202,122,44,65,25,39,202,122,44,-20,25,39,202,122,44,65,24,39,202,122,44,-20,24,39,202,122,44,65,23,39,202,122,44,-20,23,39,202,122,44,65,22,39,202,122,44,-20,22,39,202,122,44,65,21,39,202,122,44,-20,21,39,202,122,44,65,20,39,202,122,44,-20,20,39,202,122,44,65,19,39,202,122,44,-20,19,39,202,122,44,65,18,39,202,122,44,-20,18,39,202,122,44,65,17,39,202,122,44,-20,17,39,202,122,44,65,16,39,202,122,44,-20,16,39,202,122,44,65,15,39,202,122,44,-20,15,39,202,122,44,65,14,39,202,122,44,-20,14,39,202,122,44,84,81,1,202,122,44,-39,82,1,202,122,44,65,13,39,202,122,44,-20,13,39,202,122,44,65,12,39,202,122,44,-20,12,39,202,122,44,65,11,39,202,122,44,-20,11,39,202,122,44,65,10,39,202,122,44,-20,10,39,202,122,44,65,9,39,202,122,44,-20,9,39,202,122,44,65,8,39,202,122,44,-20,8,39,202,122,44,65,7,39,202,122,44,-20,7,39,202,122,44,65,6,39,202,122,44,-20,6,39,202,122,44,65,5,39,202,122,44,-20,5,39,202,122,44,65,4,39,202,122,44,-20,4,39,202,122,44,65,3,39,202,122,44,-20,3,39,202,122,44,65,2,39,202,122,44,-20,2,39,202,122,44,65,1,39,202,122,44,-20,1,39,202,122,44,65,0,39,202,122,44,-20,0,39,202,122,44,65,-1,39,202,122,44,-20,-1,39,202,122,44,65,-2,39,202,122,44,-20,-2,39,202,122,44,65,-3,39,202,122,44,-20,-3,39,202,122,44,65,-4,39,202,122,44,-20,-4,39,202,122,44,65,-5,39,202,122,44,-20,-5,39,202,122,44,65,-6,39,202,122,44,-20,-6,39,202,122,44,65,-7,39,202,122,44,-20,-7,39,202,122,44,65,-8,39,202,122,44,-20,-8,39,202,122,44,65,-9,39,202,122,44,-20,-9,39,202,122,44,65,-10,39,202,122,44,-20,-10,39,202,122,44,65,-11,39,202,122,44,-20,-11,39,202,122,44,65,-12,39,202,122,44,-20,-12,39,202,122,44,65,-13,39,202,122,44,-20,-13,39,202,122,44,65,-14,39,202,122,44,-20,-14,39,202,122,44,65,-15,39,202,122,44,-20,-15,39,202,122,44,65,-16,39,202,122,44,-20,-16,39,202,122,44,65,-17,39,202,122,44,-20,-17,39,202,122,44,65,-18,39,202,122,44,-20,-18,39,202,122,44,65,-19,39,202,122,44,-20,-19,39,202,122,44,65,-20,39,202,122,44,64,-20,39,202,122,44,63,-20,39,202,122,44,62,-20,39,202,122,44,61,-20,39,202,122,44,60,-20,39,202,122,44,59,-20,39,202,122,44,58,-20,39,202,122,44,57,-20,39,202,122,44,56,-20,39,202,122,44,55,-20,39,202,122,44,54,-20,39,202,122,44,53,-20,39,202,122,44,52,-20,39,202,122,44,51,-20,39,202,122,44,50,-20,39,202,122,44,49,-20,39,202,122,44,48,-20,39,202,122,44,47,-20,39,202,122,44,46,-20,39,202,122,44,45,-20,39,202,122,44,44,-20,39,202,122,44,43,-20,39,202,122,44,42,-20,39,202,122,44,41,-20,39,202,122,44,40,-20,39,202,122,44,39,-20,39,202,122,44,38,-20,39,202,122,44,37,-20,39,202,122,44,36,-20,39,202,122,44,35,-20,39,202,122,44,34,-20,39,202,122,44,33,-20,39,202,122,44,32,-20,39,202,122,44,31,-20,39,202,122,44,30,-20,39,202,122,44,29,-20,39,202,122,44,28,-20,39,202,122,44,27,-20,39,202,122,44,26,-20,39,202,122,44,25,-20,39,202,122,44,24,-20,39,202,122,44,23,-20,39,202,122,44,22,-20,39,202,122,44,21,-20,39,202,122,44,20,-20,39,202,122,44,19,-20,39,202,122,44,18,-20,39,202,122,44,17,-20,39,202,122,44,16,-20,39,202,122,44,15,-20,39,202,122,44,14,-20,39,202,122,44,13,-20,39,202,122,44,12,-20,39,202,122,44,11,-20,39,202,122,44,10,-20,39,202,122,44,84,82,1,202,122,44,-39,83,1,202,122,44,9,-20,39,202,122,44,8,-20,39,202,122,44,7,-20,39,202,122,44,6,-20,39,202,122,44,5,-20,39,202,122,44,4,-20,39,202,122,44,3,-20,39,202,122,44,2,-20,39,202,122,44,1,-20,39,202,122,44,0,-20,39,202,122,44,-1,-20,39,202,122,44,-2,-20,39,202,122,44,-3,-20,39,202,122,44,-4,-20,39,202,122,44,-5,-20,39,202,122,44,-6,-20,39,202,122,44,-7,-20,39,202,122,44,-8,-20,39,202,122,44,-9,-20,39,202,122,44,-10,-20,39,202,122,44,-11,-20,39,202,122,44,-12,-20,39,202,122,44,-13,-20,39,202,122,44,-14,-20,39,202,122,44,-15,-20,39,202,122,44,-16,-20,39,202,122,44,-17,-20,39,202,122,44,-18,-20,39,202,122,44,-19,-20,39,202,122,44,-20,-20,39,202,122,44,66,66,38,202,122,44,65,66,38,202,122,44,64,66,38,202,122,44,63,66,38,202,122,44,62,66,38,202,122,44,61,66,38,202,122,44,60,66,38,202,122,44,59,66,38,202,122,44,58,66,38,202,122,44,57,66,38,202,122,44,56,66,38,202,122,44,55,66,38,202,122,44,54,66,38,202,122,44,53,66,38,202,122,44,52,66,38,202,122,44,51,66,38,202,122,44,50,66,38,202,122,44,49,66,38,202,122,44,48,66,38,202,122,44,47,66,38,202,122,44,46,66,38,202,122,44,45,66,38,202,122,44,44,66,38,202,122,44,43,66,38,202,122,44,42,66,38,202,122,44,41,66,38,202,122,44,40,66,38,202,122,44,39,66,38,202,122,44,38,66,38,202,122,44,37,66,38,202,122,44,36,66,38,202,122,44,35,66,38,202,122,44,34,66,38,202,122,44,33,66,38,202,122,44,32,66,38,202,122,44,31,66,38,202,122,44,30,66,38,202,122,44,29,66,38,202,122,44,28,66,38,202,122,44,27,66,38,202,122,44,26,66,38,202,122,44,25,66,38,202,122,44,24,66,38,202,122,44,23,66,38,202,122,44,22,66,38,202,122,44,21,66,38,202,122,44,20,66,38,202,122,44,19,66,38,202,122,44,18,66,38,202,122,44,17,66,38,202,122,44,16,66,38,202,122,44,15,66,38,202,122,44,14,66,38,202,122,44,13,66,38,202,122,44,12,66,38,202,122,44,11,66,38,202,122,44,10,66,38,202,122,44,9,66,38,202,122,44,8,66,38,202,122,44,7,66,38,202,122,44,6,66,38,202,122,44,5,66,38,202,122,44,4,66,38,202,122,44,3,66,38,202,122,44,2,66,38,202,122,44,1,66,38,202,122,44,0,66,38,202,122,44,-1,66,38,202,122,44,-2,66,38,202,122,44,-3,66,38,202,122,44,-4,66,38,202,122,44,-5,66,38,202,122,44,-6,66,38,202,122,44,-7,66,38,202,122,44,-8,66,38,202,122,44,-9,66,38,202,122,44,-10,66,38,202,122,44,-11,66,38,202,122,44,-12,66,38,202,122,44,-13,66,38,202,122,44,-14,66,38,202,122,44,-15,66,38,202,122,44,-16,66,38,202,122,44,-17,66,38,202,122,44,-18,66,38,202,122,44,-19,66,38,202,122,44,-20,66,38,202,122,44,-21,66,38,202,122,44,66,65,38,202,122,44,-21,65,38,202,122,44,66,64,38,202,122,44,-21,64,38,202,122,44,84,83,1,202,122,44,-39,84,1,202,122,44,-38,84,1,202,122,44,-37,84,1,202,122,44,-36,84,1,202,122,44,-35,84,1,202,122,44,-34,84,1,202,122,44,-33,84,1,202,122,44,-32,84,1,202,122,44,-31,84,1,202,122,44,-30,84,1,202,122,44,-29,84,1,202,122,44,-28,84,1,202,122,44,-27,84,1,202,122,44,-26,84,1,202,122,44,-25,84,1,202,122,44,-24,84,1,202,122,44,-23,84,1,202,122,44,-22,84,1,202,122,44,-21,84,1,202,122,44,-20,84,1,202,122,44,-19,84,1,202,122,44,-18,84,1,202,122,44,-17,84,1,202,122,44,-16,84,1,202,122,44,-15,84,1,202,122,44,-14,84,1,202,122,44,-13,84,1,202,122,44,-12,84,1,202,122,44,-11,84,1,202,122,44,-10,84,1,202,122,44,-9,84,1,202,122,44,-8,84,1,202,122,44,-7,84,1,202,122,44,-6,84,1,202,122,44,-5,84,1,202,122,44,-4,84,1,202,122,44,-3,84,1,202,122,44,-2,84,1,202,122,44,-1,84,1,202,122,44,0,84,1,202,122,44,1,84,1,202,122,44,2,84,1,202,122,44,3,84,1,202,122,44,4,84,1,202,122,44,5,84,1,202,122,44,6,84,1,202,122,44,7,84,1,202,122,44,8,84,1,202,122,44,9,84,1,202,122,44,10,84,1,202,122,44,11,84,1,202,122,44,12,84,1,202,122,44,13,84,1,202,122,44,14,84,1,202,122,44,15,84,1,202,122,44,16,84,1,202,122,44,17,84,1,202,122,44,18,84,1,202,122,44,19,84,1,202,122,44,20,84,1,202,122,44,21,84,1,202,122,44,22,84,1,202,122,44,23,84,1,202,122,44,24,84,1,202,122,44,25,84,1,202,122,44,26,84,1,202,122,44,27,84,1,202,122,44,28,84,1,202,122,44,29,84,1,202,122,44,30,84,1,202,122,44,31,84,1,202,122,44,32,84,1,202,122,44,33,84,1,202,122,44,34,84,1,202,122,44,35,84,1,202,122,44,36,84,1,202,122,44,37,84,1,202,122,44,38,84,1,202,122,44,39,84,1,202,122,44,40,84,1,202,122,44,41,84,1,202,122,44,42,84,1,202,122,44,43,84,1,202,122,44,44,84,1,202,122,44,45,84,1,202,122,44,46,84,1,202,122,44,47,84,1,202,122,44,48,84,1,202,122,44,49,84,1,202,122,44,50,84,1,202,122,44,51,84,1,202,122,44,52,84,1,202,122,44,53,84,1,202,122,44,54,84,1,202,122,44,55,84,1,202,122,44,56,84,1,202,122,44,57,84,1,202,122,44,58,84,1,202,122,44,59,84,1,202,122,44,60,84,1,202,122,44,61,84,1,202,122,44,62,84,1,202,122,44,63,84,1,202,122,44,64,84,1,202,122,44,65,84,1,202,122,44,66,84,1,202,122,44,67,84,1,202,122,44,68,84,1,202,122,44,69,84,1,202,122,44,70,84,1,202,122,44,71,84,1,202,122,44,72,84,1,202,122,44,73,84,1,202,122,44,74,84,1,202,122,44,75,84,1,202,122,44,76,84,1,202,122,44,77,84,1,202,122,44,78,84,1,202,122,44,79,84,1,202,122,44,80,84,1,202,122,44,81,84,1,202,122,44,82,84,1,202,122,44,83,84,1,202,122,44,84,84,1,202,122,44,-39,-39,2,202,122,44,-38,-39,2,202,122,44,-37,-39,2,202,122,44,-36,-39,2,202,122,44,-35,-39,2,202,122,44,-34,-39,2,202,122,44,-33,-39,2,202,122,44,-32,-39,2,202,122,44,-31,-39,2,202,122,44,-30,-39,2,202,122,44,-29,-39,2,202,122,44,-28,-39,2,202,122,44,-27,-39,2,202,122,44,-26,-39,2,202,122,44,-25,-39,2,202,122,44,-24,-39,2,202,122,44,-23,-39,2,202,122,44,-22,-39,2,202,122,44,-21,-39,2,202,122,44,-20,-39,2,202,122,44,-19,-39,2,202,122,44,-18,-39,2,202,122,44,-17,-39,2,202,122,44,-16,-39,2,202,122,44,-15,-39,2,202,122,44,-14,-39,2,202,122,44,-13,-39,2,202,122,44,-12,-39,2,202,122,44,-11,-39,2,202,122,44,-10,-39,2,202,122,44,-9,-39,2,202,122,44,-8,-39,2,202,122,44,-7,-39,2,202,122,44,-6,-39,2,202,122,44,-5,-39,2,202,122,44,-4,-39,2,202,122,44,-3,-39,2,202,122,44,-2,-39,2,202,122,44,-1,-39,2,202,122,44,0,-39,2,202,122,44,1,-39,2,202,122,44,2,-39,2,202,122,44,3,-39,2,202,122,44,4,-39,2,202,122,44,5,-39,2,202,122,44,6,-39,2,202,122,44,7,-39,2,202,122,44,8,-39,2,202,122,44,9,-39,2,202,122,44,10,-39,2,202,122,44,11,-39,2,202,122,44,12,-39,2,202,122,44,13,-39,2,202,122,44,14,-39,2,202,122,44,15,-39,2,202,122,44,16,-39,2,202,122,44,17,-39,2,202,122,44,18,-39,2,202,122,44,19,-39,2,202,122,44,20,-39,2,202,122,44,21,-39,2,202,122,44,22,-39,2,202,122,44,23,-39,2,202,122,44,24,-39,2,202,122,44,25,-39,2,202,122,44,26,-39,2,202,122,44,27,-39,2,202,122,44,28,-39,2,202,122,44,29,-39,2,202,122,44,30,-39,2,202,122,44,31,-39,2,202,122,44,32,-39,2,202,122,44,33,-39,2,202,122,44,34,-39,2,202,122,44,35,-39,2,202,122,44,36,-39,2,202,122,44,37,-39,2,202,122,44,38,-39,2,202,122,44,39,-39,2,202,122,44,40,-39,2,202,122,44,41,-39,2,202,122,44,42,-39,2,202,122,44,43,-39,2,202,122,44,44,-39,2,202,122,44,45,-39,2,202,122,44,46,-39,2,202,122,44,47,-39,2,202,122,44,48,-39,2,202,122,44,49,-39,2,202,122,44,50,-39,2,202,122,44,51,-39,2,202,122,44,52,-39,2,202,122,44,53,-39,2,202,122,44,54,-39,2,202,122,44,55,-39,2,202,122,44,56,-39,2,202,122,44,57,-39,2,202,122,44,58,-39,2,202,122,44,59,-39,2,202,122,44,60,-39,2,202,122,44,61,-39,2,202,122,44,62,-39,2,202,122,44,63,-39,2,202,122,44,64,-39,2,202,122,44,65,-39,2,202,122,44,66,-39,2,202,122,44,67,-39,2,202,122,44,68,-39,2,202,122,44,69,-39,2,202,122,44,70,-39,2,202,122,44,71,-39,2,202,122,44,72,-39,2,202,122,44,73,-39,2,202,122,44,74,-39,2,202,122,44,75,-39,2,202,122,44,76,-39,2,202,122,44,77,-39,2,202,122,44,78,-39,2,202,122,44,79,-39,2,202,122,44,80,-39,2,202,122,44,81,-39,2,202,122,44,82,-39,2,202,122,44,83,-39,2,202,122,44,84,-39,2,202,122,44,-39,-38,2,202,122,44,66,63,38,202,122,44,-21,63,38,202,122,44,66,62,38,202,122,44,-21,62,38,202,122,44,66,61,38,202,122,44,-21,61,38,202,122,44,66,60,38,202,122,44,-21,60,38,202,122,44,66,59,38,202,122,44,-21,59,38,202,122,44,66,58,38,202,122,44,-21,58,38,202,122,44,66,57,38,202,122,44,-21,57,38,202,122,44,66,56,38,202,122,44,-21,56,38,202,122,44,66,55,38,202,122,44,-21,55,38,202,122,44,66,54,38,202,122,44,-21,54,38,202,122,44,66,53,38,202,122,44,-21,53,38,202,122,44,66,52,38,202,122,44,-21,52,38,202,122,44,66,51,38,202,122,44,-21,51,38,202,122,44,66,50,38,202,122,44,-21,50,38,202,122,44,66,49,38,202,122,44,-21,49,38,202,122,44,66,48,38,202,122,44,-21,48,38,202,122,44,66,47,38,202,122,44,-21,47,38,202,122,44,66,46,38,202,122,44,-21,46,38,202,122,44,66,45,38,202,122,44,-21,45,38,202,122,44,66,44,38,202,122,44,-21,44,38,202,122,44,66,43,38,202,122,44,-21,43,38,202,122,44,66,42,38,202,122,44,-21,42,38,202,122,44,66,41,38,202,122,44,-21,41,38,202,122,44,66,40,38,202,122,44,-21,40,38,202,122,44,66,39,38,202,122,44,-21,39,38,202,122,44,66,38,38,202,122,44,-21,38,38,202,122,44,66,37,38,202,122,44,-21,37,38,202,122,44,66,36,38,202,122,44,-21,36,38,202,122,44,66,35,38,202,122,44,-21,35,38,202,122,44,66,34,38,202,122,44,-21,34,38,202,122,44,66,33,38,202,122,44,-21,33,38,202,122,44,66,32,38,202,122,44,-21,32,38,202,122,44,66,31,38,202,122,44,-21,31,38,202,122,44,66,30,38,202,122,44,-21,30,38,202,122,44,66,29,38,202,122,44,-21,29,38,202,122,44,66,28,38,202,122,44,-21,28,38,202,122,44,66,27,38,202,122,44,-21,27,38,202,122,44,66,26,38,202,122,44,-21,26,38,202,122,44,66,25,38,202,122,44,-21,25,38,202,122,44,66,24,38,202,122,44,-21,24,38,202,122,44,66,23,38,202,122,44,-21,23,38,202,122,44,66,22,38,202,122,44,-21,22,38,202,122,44,66,21,38,202,122,44,-21,21,38,202,122,44,66,20,38,202,122,44,-21,20,38,202,122,44,66,19,38,202,122,44,-21,19,38,202,122,44,66,18,38,202,122,44,-21,18,38,202,122,44,66,17,38,202,122,44,-21,17,38,202,122,44,66,16,38,202,122,44,-21,16,38,202,122,44,66,15,38,202,122,44,-21,15,38,202,122,44,66,14,38,202,122,44,-21,14,38,202,122,44,66,13,38,202,122,44,-21,13,38,202,122,44,66,12,38,202,122,44,-21,12,38,202,122,44,66,11,38,202,122,44,-21,11,38,202,122,44,66,10,38,202,122,44,-21,10,38,202,122,44,66,9,38,202,122,44,-21,9,38,202,122,44,66,8,38,202,122,44,-21,8,38,202,122,44,66,7,38,202,122,44,-21,7,38,202,122,44,66,6,38,202,122,44,-21,6,38,202,122,44,66,5,38,202,122,44,-21,5,38,202,122,44,66,4,38,202,122,44,-21,4,38,202,122,44,66,3,38,202,122,44,-21,3,38,202,122,44,84,-38,2,202,122,44,-39,-37,2,202,122,44,66,2,38,202,122,44,-21,2,38,202,122,44,66,1,38,202,122,44,-21,1,38,202,122,44,66,0,38,202,122,44,-21,0,38,202,122,44,66,-1,38,202,122,44,-21,-1,38,202,122,44,66,-2,38,202,122,44,-21,-2,38,202,122,44,66,-3,38,202,122,44,-21,-3,38,202,122,44,66,-4,38,202,122,44,-21,-4,38,202,122,44,66,-5,38,202,122,44,-21,-5,38,202,122,44,66,-6,38,202,122,44,-21,-6,38,202,122,44,66,-7,38,202,122,44,-21,-7,38,202,122,44,66,-8,38,202,122,44,-21,-8,38,202,122,44,66,-9,38,202,122,44,-21,-9,38,202,122,44,66,-10,38,202,122,44,-21,-10,38,202,122,44,66,-11,38,202,122,44,-21,-11,38,202,122,44,66,-12,38,202,122,44,-21,-12,38,202,122,44,66,-13,38,202,122,44,-21,-13,38,202,122,44,66,-14,38,202,122,44,-21,-14,38,202,122,44,66,-15,38,202,122,44,-21,-15,38,202,122,44,66,-16,38,202,122,44,-21,-16,38,202,122,44,66,-17,38,202,122,44,-21,-17,38,202,122,44,66,-18,38,202,122,44,-21,-18,38,202,122,44,66,-19,38,202,122,44,-21,-19,38,202,122,44,66,-20,38,202,122,44,-21,-20,38,202,122,44,66,-21,38,202,122,44,65,-21,38,202,122,44,64,-21,38,202,122,44,63,-21,38,202,122,44,62,-21,38,202,122,44,61,-21,38,202,122,44,60,-21,38,202,122,44,59,-21,38,202,122,44,58,-21,38,202,122,44,57,-21,38,202,122,44,56,-21,38,202,122,44,55,-21,38,202,122,44,54,-21,38,202,122,44,53,-21,38,202,122,44,52,-21,38,202,122,44,51,-21,38,202,122,44,50,-21,38,202,122,44,49,-21,38,202,122,44,48,-21,38,202,122,44,47,-21,38,202,122,44,46,-21,38,202,122,44,45,-21,38,202,122,44,44,-21,38,202,122,44,43,-21,38,202,122,44,42,-21,38,202,122,44,41,-21,38,202,122,44,40,-21,38,202,122,44,39,-21,38,202,122,44,38,-21,38,202,122,44,37,-21,38,202,122,44,36,-21,38,202,122,44,35,-21,38,202,122,44,34,-21,38,202,122,44,33,-21,38,202,122,44,32,-21,38,202,122,44,31,-21,38,202,122,44,30,-21,38,202,122,44,29,-21,38,202,122,44,28,-21,38,202,122,44,27,-21,38,202,122,44,26,-21,38,202,122,44,25,-21,38,202,122,44,24,-21,38,202,122,44,23,-21,38,202,122,44,22,-21,38,202,122,44,21,-21,38,202,122,44,20,-21,38,202,122,44,19,-21,38,202,122,44,18,-21,38,202,122,44,17,-21,38,202,122,44,16,-21,38,202,122,44,15,-21,38,202,122,44,14,-21,38,202,122,44,13,-21,38,202,122,44,12,-21,38,202,122,44,11,-21,38,202,122,44,10,-21,38,202,122,44,9,-21,38,202,122,44,8,-21,38,202,122,44,7,-21,38,202,122,44,6,-21,38,202,122,44,5,-21,38,202,122,44,4,-21,38,202,122,44,3,-21,38,202,122,44,2,-21,38,202,122,44,1,-21,38,202,122,44,0,-21,38,202,122,44,-1,-21,38,202,122,44,-2,-21,38,202,122,44,-3,-21,38,202,122,44,-4,-21,38,202,122,44,-5,-21,38,202,122,44,-6,-21,38,202,122,44,-7,-21,38,202,122,44,-8,-21,38,202,122,44,-9,-21,38,202,122,44,84,-37,2,202,122,44,-39,-36,2,202,122,44,-10,-21,38,202,122,44,-11,-21,38,202,122,44,-12,-21,38,202,122,44,-13,-21,38,202,122,44,-14,-21,38,202,122,44,-15,-21,38,202,122,44,-16,-21,38,202,122,44,-17,-21,38,202,122,44,-18,-21,38,202,122,44,-19,-21,38,202,122,44,-20,-21,38,202,122,44,-21,-21,38,202,122,44,66,66,37,202,122,44,65,66,37,202,122,44,64,66,37,202,122,44,63,66,37,202,122,44,62,66,37,202,122,44,61,66,37,202,122,44,60,66,37,202,122,44,59,66,37,202,122,44,58,66,37,202,122,44,57,66,37,202,122,44,56,66,37,202,122,44,55,66,37,202,122,44,54,66,37,202,122,44,53,66,37,202,122,44,52,66,37,202,122,44,51,66,37,202,122,44,50,66,37,202,122,44,49,66,37,202,122,44,48,66,37,202,122,44,47,66,37,202,122,44,46,66,37,202,122,44,45,66,37,202,122,44,44,66,37,202,122,44,43,66,37,202,122,44,42,66,37,202,122,44,41,66,37,202,122,44,40,66,37,202,122,44,39,66,37,202,122,44,38,66,37,202,122,44,37,66,37,202,122,44,36,66,37,202,122,44,35,66,37,202,122,44,34,66,37,202,122,44,33,66,37,202,122,44,32,66,37,202,122,44,31,66,37,202,122,44,30,66,37,202,122,44,29,66,37,202,122,44,28,66,37,202,122,44,27,66,37,202,122,44,26,66,37,202,122,44,25,66,37,202,122,44,24,66,37,202,122,44,23,66,37,202,122,44,22,66,37,202,122,44,21,66,37,202,122,44,20,66,37,202,122,44,19,66,37,202,122,44,18,66,37,202,122,44,17,66,37,202,122,44,16,66,37,202,122,44,15,66,37,202,122,44,14,66,37,202,122,44,13,66,37,202,122,44,12,66,37,202,122,44,11,66,37,202,122,44,10,66,37,202,122,44,9,66,37,202,122,44,8,66,37,202,122,44,7,66,37,202,122,44,6,66,37,202,122,44,5,66,37,202,122,44,4,66,37,202,122,44,3,66,37,202,122,44,2,66,37,202,122,44,1,66,37,202,122,44,0,66,37,202,122,44,-1,66,37,202,122,44,-2,66,37,202,122,44,-3,66,37,202,122,44,-4,66,37,202,122,44,-5,66,37,202,122,44,-6,66,37,202,122,44,-7,66,37,202,122,44,-8,66,37,202,122,44,-9,66,37,202,122,44,-10,66,37,202,122,44,-11,66,37,202,122,44,-12,66,37,202,122,44,-13,66,37,202,122,44,-14,66,37,202,122,44,-15,66,37,202,122,44,-16,66,37,202,122,44,-17,66,37,202,122,44,-18,66,37,202,122,44,-19,66,37,202,122,44,-20,66,37,202,122,44,-21,66,37,202,122,44,66,65,37,202,122,44,-21,65,37,202,122,44,66,64,37,202,122,44,-21,64,37,202,122,44,66,63,37,202,122,44,-21,63,37,202,122,44,66,62,37,202,122,44,-21,62,37,202,122,44,66,61,37,202,122,44,-21,61,37,202,122,44,66,60,37,202,122,44,-21,60,37,202,122,44,66,59,37,202,122,44,-21,59,37,202,122,44,66,58,37,202,122,44,-21,58,37,202,122,44,66,57,37,202,122,44,-21,57,37,202,122,44,66,56,37,202,122,44,-21,56,37,202,122,44,66,55,37,202,122,44,-21,55,37,202,122,44,84,-36,2,202,122,44,-39,-35,2,202,122,44,66,54,37,202,122,44,-21,54,37,202,122,44,66,53,37,202,122,44,-21,53,37,202,122,44,66,52,37,202,122,44,-21,52,37,202,122,44,66,51,37,202,122,44,-21,51,37,202,122,44,66,50,37,202,122,44,-21,50,37,202,122,44,66,49,37,202,122,44,-21,49,37,202,122,44,66,48,37,202,122,44,-21,48,37,202,122,44,66,47,37,202,122,44,-21,47,37,202,122,44,66,46,37,202,122,44,-21,46,37,202,122,44,66,45,37,202,122,44,-21,45,37,202,122,44,66,44,37,202,122,44,-21,44,37,202,122,44,66,43,37,202,122,44,-21,43,37,202,122,44,66,42,37,202,122,44,-21,42,37,202,122,44,66,41,37,202,122,44,-21,41,37,202,122,44,66,40,37,202,122,44,-21,40,37,202,122,44,66,39,37,202,122,44,-21,39,37,202,122,44,66,38,37,202,122,44,-21,38,37,202,122,44,66,37,37,202,122,44,-21,37,37,202,122,44,66,36,37,202,122,44,-21,36,37,202,122,44,66,35,37,202,122,44,-21,35,37,202,122,44,66,34,37,202,122,44,-21,34,37,202,122,44,66,33,37,202,122,44,-21,33,37,202,122,44,66,32,37,202,122,44,-21,32,37,202,122,44,66,31,37,202,122,44,-21,31,37,202,122,44,66,30,37,202,122,44,-21,30,37,202,122,44,66,29,37,202,122,44,-21,29,37,202,122,44,66,28,37,202,122,44,-21,28,37,202,122,44,66,27,37,202,122,44,-21,27,37,202,122,44,66,26,37,202,122,44,-21,26,37,202,122,44,66,25,37,202,122,44,-21,25,37,202,122,44,66,24,37,202,122,44,-21,24,37,202,122,44,66,23,37,202,122,44,-21,23,37,202,122,44,66,22,37,202,122,44,-21,22,37,202,122,44,66,21,37,202,122,44,-21,21,37,202,122,44,66,20,37,202,122,44,-21,20,37,202,122,44,66,19,37,202,122,44,-21,19,37,202,122,44,66,18,37,202,122,44,-21,18,37,202,122,44,66,17,37,202,122,44,-21,17,37,202,122,44,66,16,37,202,122,44,-21,16,37,202,122,44,66,15,37,202,122,44,-21,15,37,202,122,44,66,14,37,202,122,44,-21,14,37,202,122,44,66,13,37,202,122,44,-21,13,37,202,122,44,66,12,37,202,122,44,-21,12,37,202,122,44,66,11,37,202,122,44,-21,11,37,202,122,44,66,10,37,202,122,44,-21,10,37,202,122,44,66,9,37,202,122,44,-21,9,37,202,122,44,66,8,37,202,122,44,-21,8,37,202,122,44,66,7,37,202,122,44,-21,7,37,202,122,44,66,6,37,202,122,44,-21,6,37,202,122,44,66,5,37,202,122,44,-21,5,37,202,122,44,66,4,37,202,122,44,-21,4,37,202,122,44,66,3,37,202,122,44,-21,3,37,202,122,44,66,2,37,202,122,44,-21,2,37,202,122,44,66,1,37,202,122,44,-21,1,37,202,122,44,66,0,37,202,122,44,-21,0,37,202,122,44,66,-1,37,202,122,44,-21,-1,37,202,122,44,66,-2,37,202,122,44,-21,-2,37,202,122,44,66,-3,37,202,122,44,-21,-3,37,202,122,44,66,-4,37,202,122,44,-21,-4,37,202,122,44,66,-5,37,202,122,44,-21,-5,37,202,122,44,66,-6,37,202,122,44,-21,-6,37,202,122,44,84,-35,2,202,122,44,-39,-34,2,202,122,44,66,-7,37,202,122,44,-21,-7,37,202,122,44,66,-8,37,202,122,44,-21,-8,37,202,122,44,66,-9,37,202,122,44,-21,-9,37,202,122,44,66,-10,37,202,122,44,-21,-10,37,202,122,44,66,-11,37,202,122,44,-21,-11,37,202,122,44,66,-12,37,202,122,44,-21,-12,37,202,122,44,66,-13,37,202,122,44,-21,-13,37,202,122,44,66,-14,37,202,122,44,-21,-14,37,202,122,44,66,-15,37,202,122,44,-21,-15,37,202,122,44,66,-16,37,202,122,44,-21,-16,37,202,122,44,66,-17,37,202,122,44,-21,-17,37,202,122,44,66,-18,37,202,122,44,-21,-18,37,202,122,44,66,-19,37,202,122,44,-21,-19,37,202,122,44,66,-20,37,202,122,44,-21,-20,37,202,122,44,66,-21,37,202,122,44,65,-21,37,202,122,44,64,-21,37,202,122,44,63,-21,37,202,122,44,62,-21,37,202,122,44,61,-21,37,202,122,44,60,-21,37,202,122,44,59,-21,37,202,122,44,58,-21,37,202,122,44,57,-21,37,202,122,44,56,-21,37,202,122,44,55,-21,37,202,122,44,54,-21,37,202,122,44,53,-21,37,202,122,44,52,-21,37,202,122,44,51,-21,37,202,122,44,50,-21,37,202,122,44,49,-21,37,202,122,44,48,-21,37,202,122,44,47,-21,37,202,122,44,46,-21,37,202,122,44,45,-21,37,202,122,44,44,-21,37,202,122,44,43,-21,37,202,122,44,42,-21,37,202,122,44,41,-21,37,202,122,44,40,-21,37,202,122,44,39,-21,37,202,122,44,38,-21,37,202,122,44,37,-21,37,202,122,44,36,-21,37,202,122,44,35,-21,37,202,122,44,34,-21,37,202,122,44,33,-21,37,202,122,44,32,-21,37,202,122,44,31,-21,37,202,122,44,30,-21,37,202,122,44,29,-21,37,202,122,44,28,-21,37,202,122,44,27,-21,37,202,122,44,26,-21,37,202,122,44,25,-21,37,202,122,44,24,-21,37,202,122,44,23,-21,37,202,122,44,22,-21,37,202,122,44,21,-21,37,202,122,44,20,-21,37,202,122,44,19,-21,37,202,122,44,18,-21,37,202,122,44,17,-21,37,202,122,44,16,-21,37,202,122,44,15,-21,37,202,122,44,14,-21,37,202,122,44,13,-21,37,202,122,44,12,-21,37,202,122,44,11,-21,37,202,122,44,10,-21,37,202,122,44,9,-21,37,202,122,44,8,-21,37,202,122,44,7,-21,37,202,122,44,6,-21,37,202,122,44,5,-21,37,202,122,44,4,-21,37,202,122,44,3,-21,37,202,122,44,2,-21,37,202,122,44,1,-21,37,202,122,44,0,-21,37,202,122,44,-1,-21,37,202,122,44,-2,-21,37,202,122,44,-3,-21,37,202,122,44,-4,-21,37,202,122,44,-5,-21,37,202,122,44,-6,-21,37,202,122,44,-7,-21,37,202,122,44,-8,-21,37,202,122,44,-9,-21,37,202,122,44,-10,-21,37,202,122,44,-11,-21,37,202,122,44,-12,-21,37,202,122,44,-13,-21,37,202,122,44,-14,-21,37,202,122,44,-15,-21,37,202,122,44,-16,-21,37,202,122,44,-17,-21,37,202,122,44,-18,-21,37,202,122,44,-19,-21,37,202,122,44,-20,-21,37,202,122,44,-21,-21,37,202,122,44,67,67,36,202,122,44,66,67,36,202,122,44,65,67,36,202,122,44,64,67,36,202,122,44,63,67,36,202,122,44,62,67,36,202,122,44,84,-34,2,202,122,44,-39,-33,2,202,122,44,61,67,36,202,122,44,60,67,36,202,122,44,59,67,36,202,122,44,58,67,36,202,122,44,57,67,36,202,122,44,56,67,36,202,122,44,55,67,36,202,122,44,54,67,36,202,122,44,53,67,36,202,122,44,52,67,36,202,122,44,51,67,36,202,122,44,50,67,36,202,122,44,49,67,36,202,122,44,48,67,36,202,122,44,47,67,36,202,122,44,46,67,36,202,122,44,45,67,36,202,122,44,44,67,36,202,122,44,43,67,36,202,122,44,42,67,36,202,122,44,41,67,36,202,122,44,40,67,36,202,122,44,39,67,36,202,122,44,38,67,36,202,122,44,37,67,36,202,122,44,36,67,36,202,122,44,35,67,36,202,122,44,34,67,36,202,122,44,33,67,36,202,122,44,32,67,36,202,122,44,31,67,36,202,122,44,30,67,36,202,122,44,29,67,36,202,122,44,28,67,36,202,122,44,27,67,36,202,122,44,26,67,36,202,122,44,25,67,36,202,122,44,24,67,36,202,122,44,23,67,36,202,122,44,22,67,36,202,122,44,21,67,36,202,122,44,20,67,36,202,122,44,19,67,36,202,122,44,18,67,36,202,122,44,17,67,36,202,122,44,16,67,36,202,122,44,15,67,36,202,122,44,14,67,36,202,122,44,13,67,36,202,122,44,12,67,36,202,122,44,11,67,36,202,122,44,10,67,36,202,122,44,9,67,36,202,122,44,8,67,36,202,122,44,7,67,36,202,122,44,6,67,36,202,122,44,5,67,36,202,122,44,4,67,36,202,122,44,3,67,36,202,122,44,2,67,36,202,122,44,1,67,36,202,122,44,0,67,36,202,122,44,-1,67,36,202,122,44,-2,67,36,202,122,44,-3,67,36,202,122,44,-4,67,36,202,122,44,-5,67,36,202,122,44,-6,67,36,202,122,44,-7,67,36,202,122,44,-8,67,36,202,122,44,-9,67,36,202,122,44,-10,67,36,202,122,44,-11,67,36,202,122,44,-12,67,36,202,122,44,-13,67,36,202,122,44,-14,67,36,202,122,44,-15,67,36,202,122,44,-16,67,36,202,122,44,-17,67,36,202,122,44,-18,67,36,202,122,44,-19,67,36,202,122,44,-20,67,36,202,122,44,-21,67,36,202,122,44,-22,67,36,202,122,44,67,66,36,202,122,44,-22,66,36,202,122,44,67,65,36,202,122,44,-22,65,36,202,122,44,67,64,36,202,122,44,-22,64,36,202,122,44,67,63,36,202,122,44,-22,63,36,202,122,44,67,62,36,202,122,44,-22,62,36,202,122,44,67,61,36,202,122,44,-22,61,36,202,122,44,67,60,36,202,122,44,-22,60,36,202,122,44,67,59,36,202,122,44,-22,59,36,202,122,44,67,58,36,202,122,44,-22,58,36,202,122,44,67,57,36,202,122,44,-22,57,36,202,122,44,67,56,36,202,122,44,-22,56,36,202,122,44,67,55,36,202,122,44,-22,55,36,202,122,44,67,54,36,202,122,44,-22,54,36,202,122,44,67,53,36,202,122,44,-22,53,36,202,122,44,67,52,36,202,122,44,-22,52,36,202,122,44,67,51,36,202,122,44,-22,51,36,202,122,44,67,50,36,202,122,44,-22,50,36,202,122,44,67,49,36,202,122,44,-22,49,36,202,122,44,67,48,36,202,122,44,-22,48,36,202,122,44,84,-33,2,202,122,44,-39,-32,2,202,122,44,67,47,36,202,122,44,-22,47,36,202,122,44,67,46,36,202,122,44,-22,46,36,202,122,44,67,45,36,202,122,44,-22,45,36,202,122,44,67,44,36,202,122,44,-22,44,36,202,122,44,67,43,36,202,122,44,-22,43,36,202,122,44,67,42,36,202,122,44,-22,42,36,202,122,44,67,41,36,202,122,44,-22,41,36,202,122,44,67,40,36,202,122,44,-22,40,36,202,122,44,67,39,36,202,122,44,-22,39,36,202,122,44,67,38,36,202,122,44,-22,38,36,202,122,44,67,37,36,202,122,44,-22,37,36,202,122,44,67,36,36,202,122,44,-22,36,36,202,122,44,67,35,36,202,122,44,-22,35,36,202,122,44,67,34,36,202,122,44,-22,34,36,202,122,44,67,33,36,202,122,44,-22,33,36,202,122,44,67,32,36,202,122,44,-22,32,36,202,122,44,67,31,36,202,122,44,-22,31,36,202,122,44,67,30,36,202,122,44,-22,30,36,202,122,44,67,29,36,202,122,44,-22,29,36,202,122,44,67,28,36,202,122,44,-22,28,36,202,122,44,67,27,36,202,122,44,-22,27,36,202,122,44,67,26,36,202,122,44,-22,26,36,202,122,44,67,25,36,202,122,44,-22,25,36,202,122,44,67,24,36,202,122,44,-22,24,36,202,122,44,67,23,36,202,122,44,-22,23,36,202,122,44,67,22,36,202,122,44,-22,22,36,202,122,44,67,21,36,202,122,44,-22,21,36,202,122,44,67,20,36,202,122,44,-22,20,36,202,122,44,67,19,36,202,122,44,-22,19,36,202,122,44,67,18,36,202,122,44,-22,18,36,202,122,44,67,17,36,202,122,44,-22,17,36,202,122,44,67,16,36,202,122,44,-22,16,36,202,122,44,67,15,36,202,122,44,-22,15,36,202,122,44,67,14,36,202,122,44,-22,14,36,202,122,44,67,13,36,202,122,44,-22,13,36,202,122,44,67,12,36,202,122,44,-22,12,36,202,122,44,67,11,36,202,122,44,-22,11,36,202,122,44,67,10,36,202,122,44,-22,10,36,202,122,44,67,9,36,202,122,44,-22,9,36,202,122,44,67,8,36,202,122,44,-22,8,36,202,122,44,67,7,36,202,122,44,-22,7,36,202,122,44,67,6,36,202,122,44,-22,6,36,202,122,44,67,5,36,202,122,44,-22,5,36,202,122,44,67,4,36,202,122,44,-22,4,36,202,122,44,67,3,36,202,122,44,-22,3,36,202,122,44,67,2,36,202,122,44,-22,2,36,202,122,44,67,1,36,202,122,44,-22,1,36,202,122,44,67,0,36,202,122,44,-22,0,36,202,122,44,67,-1,36,202,122,44,-22,-1,36,202,122,44,67,-2,36,202,122,44,-22,-2,36,202,122,44,67,-3,36,202,122,44,-22,-3,36,202,122,44,67,-4,36,202,122,44,-22,-4,36,202,122,44,67,-5,36,202,122,44,-22,-5,36,202,122,44,67,-6,36,202,122,44,-22,-6,36,202,122,44,67,-7,36,202,122,44,-22,-7,36,202,122,44,67,-8,36,202,122,44,-22,-8,36,202,122,44,67,-9,36,202,122,44,-22,-9,36,202,122,44,67,-10,36,202,122,44,-22,-10,36,202,122,44,67,-11,36,202,122,44,-22,-11,36,202,122,44,67,-12,36,202,122,44,-22,-12,36,202,122,44,67,-13,36,202,122,44,-22,-13,36,202,122,44,84,-32,2,202,122,44,-39,-31,2,202,122,44,67,-14,36,202,122,44,-22,-14,36,202,122,44,67,-15,36,202,122,44,-22,-15,36,202,122,44,67,-16,36,202,122,44,-22,-16,36,202,122,44,67,-17,36,202,122,44,-22,-17,36,202,122,44,67,-18,36,202,122,44,-22,-18,36,202,122,44,67,-19,36,202,122,44,-22,-19,36,202,122,44,67,-20,36,202,122,44,-22,-20,36,202,122,44,67,-21,36,202,122,44,-22,-21,36,202,122,44,67,-22,36,202,122,44,66,-22,36,202,122,44,65,-22,36,202,122,44,64,-22,36,202,122,44,63,-22,36,202,122,44,62,-22,36,202,122,44,61,-22,36,202,122,44,60,-22,36,202,122,44,59,-22,36,202,122,44,58,-22,36,202,122,44,57,-22,36,202,122,44,56,-22,36,202,122,44,55,-22,36,202,122,44,54,-22,36,202,122,44,53,-22,36,202,122,44,52,-22,36,202,122,44,51,-22,36,202,122,44,50,-22,36,202,122,44,49,-22,36,202,122,44,48,-22,36,202,122,44,47,-22,36,202,122,44,46,-22,36,202,122,44,45,-22,36,202,122,44,44,-22,36,202,122,44,43,-22,36,202,122,44,42,-22,36,202,122,44,41,-22,36,202,122,44,40,-22,36,202,122,44,39,-22,36,202,122,44,38,-22,36,202,122,44,37,-22,36,202,122,44,36,-22,36,202,122,44,35,-22,36,202,122,44,34,-22,36,202,122,44,33,-22,36,202,122,44,32,-22,36,202,122,44,31,-22,36,202,122,44,30,-22,36,202,122,44,29,-22,36,202,122,44,28,-22,36,202,122,44,27,-22,36,202,122,44,26,-22,36,202,122,44,25,-22,36,202,122,44,24,-22,36,202,122,44,23,-22,36,202,122,44,22,-22,36,202,122,44,21,-22,36,202,122,44,20,-22,36,202,122,44,19,-22,36,202,122,44,18,-22,36,202,122,44,17,-22,36,202,122,44,16,-22,36,202,122,44,15,-22,36,202,122,44,14,-22,36,202,122,44,13,-22,36,202,122,44,12,-22,36,202,122,44,11,-22,36,202,122,44,10,-22,36,202,122,44,9,-22,36,202,122,44,8,-22,36,202,122,44,7,-22,36,202,122,44,6,-22,36,202,122,44,5,-22,36,202,122,44,4,-22,36,202,122,44,3,-22,36,202,122,44,2,-22,36,202,122,44,1,-22,36,202,122,44,0,-22,36,202,122,44,-1,-22,36,202,122,44,-2,-22,36,202,122,44,-3,-22,36,202,122,44,-4,-22,36,202,122,44,-5,-22,36,202,122,44,-6,-22,36,202,122,44,-7,-22,36,202,122,44,-8,-22,36,202,122,44,-9,-22,36,202,122,44,-10,-22,36,202,122,44,-11,-22,36,202,122,44,-12,-22,36,202,122,44,-13,-22,36,202,122,44,-14,-22,36,202,122,44,-15,-22,36,202,122,44,-16,-22,36,202,122,44,-17,-22,36,202,122,44,-18,-22,36,202,122,44,-19,-22,36,202,122,44,-20,-22,36,202,122,44,-21,-22,36,202,122,44,-22,-22,36,202,122,44,67,67,35,202,122,44,66,67,35,202,122,44,65,67,35,202,122,44,64,67,35,202,122,44,63,67,35,202,122,44,62,67,35,202,122,44,61,67,35,202,122,44,60,67,35,202,122,44,59,67,35,202,122,44,58,67,35,202,122,44,57,67,35,202,122,44,56,67,35,202,122,44,55,67,35,202,122,44,54,67,35,202,122,44,53,67,35,202,122,44,52,67,35,202,122,44,84,-31,2,202,122,44,-39,-30,2,202,122,44,51,67,35,202,122,44,50,67,35,202,122,44,49,67,35,202,122,44,48,67,35,202,122,44,47,67,35,202,122,44,46,67,35,202,122,44,45,67,35,202,122,44,44,67,35,202,122,44,43,67,35,202,122,44,42,67,35,202,122,44,41,67,35,202,122,44,40,67,35,202,122,44,39,67,35,202,122,44,38,67,35,202,122,44,37,67,35,202,122,44,36,67,35,202,122,44,35,67,35,202,122,44,34,67,35,202,122,44,33,67,35,202,122,44,32,67,35,202,122,44,31,67,35,202,122,44,30,67,35,202,122,44,29,67,35,202,122,44,28,67,35,202,122,44,27,67,35,202,122,44,26,67,35,202,122,44,25,67,35,202,122,44,24,67,35,202,122,44,23,67,35,202,122,44,22,67,35,202,122,44,21,67,35,202,122,44,20,67,35,202,122,44,19,67,35,202,122,44,18,67,35,202,122,44,17,67,35,202,122,44,16,67,35,202,122,44,15,67,35,202,122,44,14,67,35,202,122,44,13,67,35,202,122,44,12,67,35,202,122,44,11,67,35,202,122,44,10,67,35,202,122,44,9,67,35,202,122,44,8,67,35,202,122,44,7,67,35,202,122,44,6,67,35,202,122,44,5,67,35,202,122,44,4,67,35,202,122,44,3,67,35,202,122,44,2,67,35,202,122,44,1,67,35,202,122,44,0,67,35,202,122,44,-1,67,35,202,122,44,-2,67,35,202,122,44,-3,67,35,202,122,44,-4,67,35,202,122,44,-5,67,35,202,122,44,-6,67,35,202,122,44,-7,67,35,202,122,44,-8,67,35,202,122,44,-9,67,35,202,122,44,-10,67,35,202,122,44,-11,67,35,202,122,44,-12,67,35,202,122,44,-13,67,35,202,122,44,-14,67,35,202,122,44,-15,67,35,202,122,44,-16,67,35,202,122,44,-17,67,35,202,122,44,-18,67,35,202,122,44,-19,67,35,202,122,44,-20,67,35,202,122,44,-21,67,35,202,122,44,-22,67,35,202,122,44,67,66,35,202,122,44,-22,66,35,202,122,44,67,65,35,202,122,44,-22,65,35,202,122,44,67,64,35,202,122,44,-22,64,35,202,122,44,67,63,35,202,122,44,-22,63,35,202,122,44,67,62,35,202,122,44,-22,62,35,202,122,44,67,61,35,202,122,44,-22,61,35,202,122,44,67,60,35,202,122,44,-22,60,35,202,122,44,67,59,35,202,122,44,-22,59,35,202,122,44,67,58,35,202,122,44,-22,58,35,202,122,44,67,57,35,202,122,44,-22,57,35,202,122,44,67,56,35,202,122,44,-22,56,35,202,122,44,67,55,35,202,122,44,-22,55,35,202,122,44,67,54,35,202,122,44,-22,54,35,202,122,44,67,53,35,202,122,44,-22,53,35,202,122,44,67,52,35,202,122,44,-22,52,35,202,122,44,67,51,35,202,122,44,-22,51,35,202,122,44,67,50,35,202,122,44,-22,50,35,202,122,44,67,49,35,202,122,44,-22,49,35,202,122,44,67,48,35,202,122,44,-22,48,35,202,122,44,67,47,35,202,122,44,-22,47,35,202,122,44,67,46,35,202,122,44,-22,46,35,202,122,44,67,45,35,202,122,44,-22,45,35,202,122,44,67,44,35,202,122,44,-22,44,35,202,122,44,67,43,35,202,122,44,-22,43,35,202,122,44,84,-30,2,202,122,44,-39,-29,2,202,122,44,67,42,35,202,122,44,-22,42,35,202,122,44,67,41,35,202,122,44,-22,41,35,202,122,44,67,40,35,202,122,44,-22,40,35,202,122,44,67,39,35,202,122,44,-22,39,35,202,122,44,67,38,35,202,122,44,-22,38,35,202,122,44,67,37,35,202,122,44,-22,37,35,202,122,44,67,36,35,202,122,44,-22,36,35,202,122,44,67,35,35,202,122,44,-22,35,35,202,122,44,67,34,35,202,122,44,-22,34,35,202,122,44,67,33,35,202,122,44,-22,33,35,202,122,44,67,32,35,202,122,44,-22,32,35,202,122,44,67,31,35,202,122,44,-22,31,35,202,122,44,67,30,35,202,122,44,-22,30,35,202,122,44,67,29,35,202,122,44,-22,29,35,202,122,44,67,28,35,202,122,44,-22,28,35,202,122,44,67,27,35,202,122,44,-22,27,35,202,122,44,67,26,35,202,122,44,-22,26,35,202,122,44,67,25,35,202,122,44,-22,25,35,202,122,44,67,24,35,202,122,44,-22,24,35,202,122,44,67,23,35,202,122,44,-22,23,35,202,122,44,67,22,35,202,122,44,-22,22,35,202,122,44,67,21,35,202,122,44,-22,21,35,202,122,44,67,20,35,202,122,44,-22,20,35,202,122,44,67,19,35,202,122,44,-22,19,35,202,122,44,67,18,35,202,122,44,-22,18,35,202,122,44,67,17,35,202,122,44,-22,17,35,202,122,44,67,16,35,202,122,44,-22,16,35,202,122,44,67,15,35,202,122,44,-22,15,35,202,122,44,67,14,35,202,122,44,-22,14,35,202,122,44,67,13,35,202,122,44,-22,13,35,202,122,44,67,12,35,202,122,44,-22,12,35,202,122,44,67,11,35,202,122,44,-22,11,35,202,122,44,67,10,35,202,122,44,-22,10,35,202,122,44,67,9,35,202,122,44,-22,9,35,202,122,44,67,8,35,202,122,44,-22,8,35,202,122,44,67,7,35,202,122,44,-22,7,35,202,122,44,67,6,35,202,122,44,-22,6,35,202,122,44,67,5,35,202,122,44,-22,5,35,202,122,44,67,4,35,202,122,44,-22,4,35,202,122,44,67,3,35,202,122,44,-22,3,35,202,122,44,67,2,35,202,122,44,-22,2,35,202,122,44,67,1,35,202,122,44,-22,1,35,202,122,44,67,0,35,202,122,44,-22,0,35,202,122,44,67,-1,35,202,122,44,-22,-1,35,202,122,44,67,-2,35,202,122,44,-22,-2,35,202,122,44,67,-3,35,202,122,44,-22,-3,35,202,122,44,67,-4,35,202,122,44,-22,-4,35,202,122,44,67,-5,35,202,122,44,-22,-5,35,202,122,44,67,-6,35,202,122,44,-22,-6,35,202,122,44,67,-7,35,202,122,44,-22,-7,35,202,122,44,67,-8,35,202,122,44,-22,-8,35,202,122,44,67,-9,35,202,122,44,-22,-9,35,202,122,44,67,-10,35,202,122,44,-22,-10,35,202,122,44,67,-11,35,202,122,44,-22,-11,35,202,122,44,67,-12,35,202,122,44,-22,-12,35,202,122,44,67,-13,35,202,122,44,-22,-13,35,202,122,44,67,-14,35,202,122,44,-22,-14,35,202,122,44,67,-15,35,202,122,44,-22,-15,35,202,122,44,67,-16,35,202,122,44,-22,-16,35,202,122,44,67,-17,35,202,122,44,-22,-17,35,202,122,44,67,-18,35,202,122,44,-22,-18,35,202,122,44,84,-29,2,202,122,44,-39,-28,2,202,122,44,67,-19,35,202,122,44,-22,-19,35,202,122,44,67,-20,35,202,122,44,-22,-20,35,202,122,44,67,-21,35,202,122,44,-22,-21,35,202,122,44,67,-22,35,202,122,44,66,-22,35,202,122,44,65,-22,35,202,122,44,64,-22,35,202,122,44,63,-22,35,202,122,44,62,-22,35,202,122,44,61,-22,35,202,122,44,60,-22,35,202,122,44,59,-22,35,202,122,44,58,-22,35,202,122,44,57,-22,35,202,122,44,56,-22,35,202,122,44,55,-22,35,202,122,44,54,-22,35,202,122,44,53,-22,35,202,122,44,52,-22,35,202,122,44,51,-22,35,202,122,44,50,-22,35,202,122,44,49,-22,35,202,122,44,48,-22,35,202,122,44,47,-22,35,202,122,44,46,-22,35,202,122,44,45,-22,35,202,122,44,44,-22,35,202,122,44,43,-22,35,202,122,44,42,-22,35,202,122,44,41,-22,35,202,122,44,40,-22,35,202,122,44,39,-22,35,202,122,44,38,-22,35,202,122,44,37,-22,35,202,122,44,36,-22,35,202,122,44,35,-22,35,202,122,44,34,-22,35,202,122,44,33,-22,35,202,122,44,32,-22,35,202,122,44,31,-22,35,202,122,44,30,-22,35,202,122,44,29,-22,35,202,122,44,28,-22,35,202,122,44,27,-22,35,202,122,44,26,-22,35,202,122,44,25,-22,35,202,122,44,24,-22,35,202,122,44,23,-22,35,202,122,44,22,-22,35,202,122,44,21,-22,35,202,122,44,20,-22,35,202,122,44,19,-22,35,202,122,44,18,-22,35,202,122,44,17,-22,35,202,122,44,16,-22,35,202,122,44,15,-22,35,202,122,44,14,-22,35,202,122,44,13,-22,35,202,122,44,12,-22,35,202,122,44,11,-22,35,202,122,44,10,-22,35,202,122,44,9,-22,35,202,122,44,8,-22,35,202,122,44,7,-22,35,202,122,44,6,-22,35,202,122,44,5,-22,35,202,122,44,4,-22,35,202,122,44,3,-22,35,202,122,44,2,-22,35,202,122,44,1,-22,35,202,122,44,0,-22,35,202,122,44,-1,-22,35,202,122,44,-2,-22,35,202,122,44,-3,-22,35,202,122,44,-4,-22,35,202,122,44,-5,-22,35,202,122,44,-6,-22,35,202,122,44,-7,-22,35,202,122,44,-8,-22,35,202,122,44,-9,-22,35,202,122,44,-10,-22,35,202,122,44,-11,-22,35,202,122,44,-12,-22,35,202,122,44,-13,-22,35,202,122,44,-14,-22,35,202,122,44,-15,-22,35,202,122,44,-16,-22,35,202,122,44,-17,-22,35,202,122,44,-18,-22,35,202,122,44,-19,-22,35,202,122,44,-20,-22,35,202,122,44,-21,-22,35,202,122,44,-22,-22,35,202,122,44,68,68,34,202,122,44,67,68,34,202,122,44,66,68,34,202,122,44,65,68,34,202,122,44,64,68,34,202,122,44,63,68,34,202,122,44,62,68,34,202,122,44,61,68,34,202,122,44,60,68,34,202,122,44,59,68,34,202,122,44,58,68,34,202,122,44,57,68,34,202,122,44,56,68,34,202,122,44,55,68,34,202,122,44,54,68,34,202,122,44,53,68,34,202,122,44,52,68,34,202,122,44,51,68,34,202,122,44,50,68,34,202,122,44,49,68,34,202,122,44,48,68,34,202,122,44,47,68,34,202,122,44,46,68,34,202,122,44,45,68,34,202,122,44,44,68,34,202,122,44,43,68,34,202,122,44,84,-28,2,202,122,44,-39,-27,2,202,122,44,42,68,34,202,122,44,41,68,34,202,122,44,40,68,34,202,122,44,39,68,34,202,122,44,38,68,34,202,122,44,37,68,34,202,122,44,36,68,34,202,122,44,35,68,34,202,122,44,34,68,34,202,122,44,33,68,34,202,122,44,32,68,34,202,122,44,31,68,34,202,122,44,30,68,34,202,122,44,29,68,34,202,122,44,28,68,34,202,122,44,27,68,34,202,122,44,26,68,34,202,122,44,25,68,34,202,122,44,24,68,34,202,122,44,23,68,34,202,122,44,22,68,34,202,122,44,21,68,34,202,122,44,20,68,34,202,122,44,19,68,34,202,122,44,18,68,34,202,122,44,17,68,34,202,122,44,16,68,34,202,122,44,15,68,34,202,122,44,14,68,34,202,122,44,13,68,34,202,122,44,12,68,34,202,122,44,11,68,34,202,122,44,10,68,34,202,122,44,9,68,34,202,122,44,8,68,34,202,122,44,7,68,34,202,122,44,6,68,34,202,122,44,5,68,34,202,122,44,4,68,34,202,122,44,3,68,34,202,122,44,2,68,34,202,122,44,1,68,34,202,122,44,0,68,34,202,122,44,-1,68,34,202,122,44,-2,68,34,202,122,44,-3,68,34,202,122,44,-4,68,34,202,122,44,-5,68,34,202,122,44,-6,68,34,202,122,44,-7,68,34,202,122,44,-8,68,34,202,122,44,-9,68,34,202,122,44,-10,68,34,202,122,44,-11,68,34,202,122,44,-12,68,34,202,122,44,-13,68,34,202,122,44,-14,68,34,202,122,44,-15,68,34,202,122,44,-16,68,34,202,122,44,-17,68,34,202,122,44,-18,68,34,202,122,44,-19,68,34,202,122,44,-20,68,34,202,122,44,-21,68,34,202,122,44,-22,68,34,202,122,44,-23,68,34,202,122,44,68,67,34,202,122,44,-23,67,34,202,122,44,68,66,34,202,122,44,-23,66,34,202,122,44,68,65,34,202,122,44,-23,65,34,202,122,44,68,64,34,202,122,44,-23,64,34,202,122,44,68,63,34,202,122,44,-23,63,34,202,122,44,68,62,34,202,122,44,-23,62,34,202,122,44,68,61,34,202,122,44,-23,61,34,202,122,44,68,60,34,202,122,44,-23,60,34,202,122,44,68,59,34,202,122,44,-23,59,34,202,122,44,68,58,34,202,122,44,-23,58,34,202,122,44,68,57,34,202,122,44,-23,57,34,202,122,44,68,56,34,202,122,44,-23,56,34,202,122,44,68,55,34,202,122,44,-23,55,34,202,122,44,68,54,34,202,122,44,-23,54,34,202,122,44,68,53,34,202,122,44,-23,53,34,202,122,44,68,52,34,202,122,44,-23,52,34,202,122,44,68,51,34,202,122,44,-23,51,34,202,122,44,68,50,34,202,122,44,-23,50,34,202,122,44,68,49,34,202,122,44,-23,49,34,202,122,44,68,48,34,202,122,44,-23,48,34,202,122,44,68,47,34,202,122,44,-23,47,34,202,122,44,68,46,34,202,122,44,-23,46,34,202,122,44,68,45,34,202,122,44,-23,45,34,202,122,44,68,44,34,202,122,44,-23,44,34,202,122,44,68,43,34,202,122,44,-23,43,34,202,122,44,68,42,34,202,122,44,-23,42,34,202,122,44,68,41,34,202,122,44,-23,41,34,202,122,44,68,40,34,202,122,44,-23,40,34,202,122,44,84,-27,2,202,122,44,-39,-26,2,202,122,44,68,39,34,202,122,44,-23,39,34,202,122,44,68,38,34,202,122,44,-23,38,34,202,122,44,68,37,34,202,122,44,-23,37,34,202,122,44,68,36,34,202,122,44,-23,36,34,202,122,44,68,35,34,202,122,44,-23,35,34,202,122,44,68,34,34,202,122,44,-23,34,34,202,122,44,68,33,34,202,122,44,-23,33,34,202,122,44,68,32,34,202,122,44,-23,32,34,202,122,44,68,31,34,202,122,44,-23,31,34,202,122,44,68,30,34,202,122,44,-23,30,34,202,122,44,68,29,34,202,122,44,-23,29,34,202,122,44,68,28,34,202,122,44,-23,28,34,202,122,44,68,27,34,202,122,44,-23,27,34,202,122,44,68,26,34,202,122,44,-23,26,34,202,122,44,68,25,34,202,122,44,-23,25,34,202,122,44,68,24,34,202,122,44,-23,24,34,202,122,44,68,23,34,202,122,44,-23,23,34,202,122,44,68,22,34,202,122,44,-23,22,34,202,122,44,68,21,34,202,122,44,-23,21,34,202,122,44,68,20,34,202,122,44,-23,20,34,202,122,44,68,19,34,202,122,44,-23,19,34,202,122,44,68,18,34,202,122,44,-23,18,34,202,122,44,68,17,34,202,122,44,-23,17,34,202,122,44,68,16,34,202,122,44,-23,16,34,202,122,44,68,15,34,202,122,44,-23,15,34,202,122,44,68,14,34,202,122,44,-23,14,34,202,122,44,68,13,34,202,122,44,-23,13,34,202,122,44,68,12,34,202,122,44,-23,12,34,202,122,44,68,11,34,202,122,44,-23,11,34,202,122,44,68,10,34,202,122,44,-23,10,34,202,122,44,68,9,34,202,122,44,-23,9,34,202,122,44,68,8,34,202,122,44,-23,8,34,202,122,44,68,7,34,202,122,44,-23,7,34,202,122,44,68,6,34,202,122,44,-23,6,34,202,122,44,68,5,34,202,122,44,-23,5,34,202,122,44,68,4,34,202,122,44,-23,4,34,202,122,44,68,3,34,202,122,44,-23,3,34,202,122,44,68,2,34,202,122,44,-23,2,34,202,122,44,68,1,34,202,122,44,-23,1,34,202,122,44,68,0,34,202,122,44,-23,0,34,202,122,44,68,-1,34,202,122,44,-23,-1,34,202,122,44,68,-2,34,202,122,44,-23,-2,34,202,122,44,68,-3,34,202,122,44,-23,-3,34,202,122,44,68,-4,34,202,122,44,-23,-4,34,202,122,44,68,-5,34,202,122,44,-23,-5,34,202,122,44,68,-6,34,202,122,44,-23,-6,34,202,122,44,68,-7,34,202,122,44,-23,-7,34,202,122,44,68,-8,34,202,122,44,-23,-8,34,202,122,44,68,-9,34,202,122,44,-23,-9,34,202,122,44,68,-10,34,202,122,44,-23,-10,34,202,122,44,68,-11,34,202,122,44,-23,-11,34,202,122,44,68,-12,34,202,122,44,-23,-12,34,202,122,44,68,-13,34,202,122,44,-23,-13,34,202,122,44,68,-14,34,202,122,44,-23,-14,34,202,122,44,68,-15,34,202,122,44,-23,-15,34,202,122,44,68,-16,34,202,122,44,-23,-16,34,202,122,44,68,-17,34,202,122,44,-23,-17,34,202,122,44,68,-18,34,202,122,44,-23,-18,34,202,122,44,68,-19,34,202,122,44,-23,-19,34,202,122,44,68,-20,34,202,122,44,-23,-20,34,202,122,44,68,-21,34,202,122,44,-23,-21,34,202,122,44,84,-26,2,202,122,44,-39,-25,2,202,122,44,68,-22,34,202,122,44,-23,-22,34,202,122,44,68,-23,34,202,122,44,67,-23,34,202,122,44,66,-23,34,202,122,44,65,-23,34,202,122,44,64,-23,34,202,122,44,63,-23,34,202,122,44,62,-23,34,202,122,44,61,-23,34,202,122,44,60,-23,34,202,122,44,59,-23,34,202,122,44,58,-23,34,202,122,44,57,-23,34,202,122,44,56,-23,34,202,122,44,55,-23,34,202,122,44,54,-23,34,202,122,44,53,-23,34,202,122,44,52,-23,34,202,122,44,51,-23,34,202,122,44,50,-23,34,202,122,44,49,-23,34,202,122,44,48,-23,34,202,122,44,47,-23,34,202,122,44,46,-23,34,202,122,44,45,-23,34,202,122,44,44,-23,34,202,122,44,43,-23,34,202,122,44,42,-23,34,202,122,44,41,-23,34,202,122,44,40,-23,34,202,122,44,39,-23,34,202,122,44,38,-23,34,202,122,44,37,-23,34,202,122,44,36,-23,34,202,122,44,35,-23,34,202,122,44,34,-23,34,202,122,44,33,-23,34,202,122,44,32,-23,34,202,122,44,31,-23,34,202,122,44,30,-23,34,202,122,44,29,-23,34,202,122,44,28,-23,34,202,122,44,27,-23,34,202,122,44,26,-23,34,202,122,44,25,-23,34,202,122,44,24,-23,34,202,122,44,23,-23,34,202,122,44,22,-23,34,202,122,44,21,-23,34,202,122,44,20,-23,34,202,122,44,19,-23,34,202,122,44,18,-23,34,202,122,44,17,-23,34,202,122,44,16,-23,34,202,122,44,15,-23,34,202,122,44,14,-23,34,202,122,44,13,-23,34,202,122,44,12,-23,34,202,122,44,11,-23,34,202,122,44,10,-23,34,202,122,44,9,-23,34,202,122,44,8,-23,34,202,122,44,7,-23,34,202,122,44,6,-23,34,202,122,44,5,-23,34,202,122,44,4,-23,34,202,122,44,3,-23,34,202,122,44,2,-23,34,202,122,44,1,-23,34,202,122,44,0,-23,34,202,122,44,-1,-23,34,202,122,44,-2,-23,34,202,122,44,-3,-23,34,202,122,44,-4,-23,34,202,122,44,-5,-23,34,202,122,44,-6,-23,34,202,122,44,-7,-23,34,202,122,44,-8,-23,34,202,122,44,-9,-23,34,202,122,44,-10,-23,34,202,122,44,-11,-23,34,202,122,44,-12,-23,34,202,122,44,-13,-23,34,202,122,44,-14,-23,34,202,122,44,-15,-23,34,202,122,44,-16,-23,34,202,122,44,-17,-23,34,202,122,44,-18,-23,34,202,122,44,-19,-23,34,202,122,44,-20,-23,34,202,122,44,-21,-23,34,202,122,44,-22,-23,34,202,122,44,-23,-23,34,202,122,44,68,68,33,202,122,44,67,68,33,202,122,44,66,68,33,202,122,44,65,68,33,202,122,44,64,68,33,202,122,44,63,68,33,202,122,44,62,68,33,202,122,44,61,68,33,202,122,44,60,68,33,202,122,44,59,68,33,202,122,44,58,68,33,202,122,44,57,68,33,202,122,44,56,68,33,202,122,44,55,68,33,202,122,44,54,68,33,202,122,44,53,68,33,202,122,44,52,68,33,202,122,44,51,68,33,202,122,44,50,68,33,202,122,44,49,68,33,202,122,44,48,68,33,202,122,44,47,68,33,202,122,44,46,68,33,202,122,44,45,68,33,202,122,44,44,68,33,202,122,44,43,68,33,202,122,44,42,68,33,202,122,44,41,68,33,202,122,44,84,-25,2,202,122,44,-39,-24,2,202,122,44,40,68,33,202,122,44,39,68,33,202,122,44,38,68,33,202,122,44,37,68,33,202,122,44,36,68,33,202,122,44,35,68,33,202,122,44,34,68,33,202,122,44,33,68,33,202,122,44,32,68,33,202,122,44,31,68,33,202,122,44,30,68,33,202,122,44,29,68,33,202,122,44,28,68,33,202,122,44,27,68,33,202,122,44,26,68,33,202,122,44,25,68,33,202,122,44,24,68,33,202,122,44,23,68,33,202,122,44,22,68,33,202,122,44,21,68,33,202,122,44,20,68,33,202,122,44,19,68,33,202,122,44,18,68,33,202,122,44,17,68,33,202,122,44,16,68,33,202,122,44,15,68,33,202,122,44,14,68,33,202,122,44,13,68,33,202,122,44,12,68,33,202,122,44,11,68,33,202,122,44,10,68,33,202,122,44,9,68,33,202,122,44,8,68,33,202,122,44,7,68,33,202,122,44,6,68,33,202,122,44,5,68,33,202,122,44,4,68,33,202,122,44,3,68,33,202,122,44,2,68,33,202,122,44,1,68,33,202,122,44,0,68,33,202,122,44,-1,68,33,202,122,44,-2,68,33,202,122,44,-3,68,33,202,122,44,-4,68,33,202,122,44,-5,68,33,202,122,44,-6,68,33,202,122,44,-7,68,33,202,122,44,-8,68,33,202,122,44,-9,68,33,202,122,44,-10,68,33,202,122,44,-11,68,33,202,122,44,-12,68,33,202,122,44,-13,68,33,202,122,44,-14,68,33,202,122,44,-15,68,33,202,122,44,-16,68,33,202,122,44,-17,68,33,202,122,44,-18,68,33,202,122,44,-19,68,33,202,122,44,-20,68,33,202,122,44,-21,68,33,202,122,44,-22,68,33,202,122,44,-23,68,33,202,122,44,68,67,33,202,122,44,-23,67,33,202,122,44,68,66,33,202,122,44,-23,66,33,202,122,44,68,65,33,202,122,44,-23,65,33,202,122,44,68,64,33,202,122,44,-23,64,33,202,122,44,68,63,33,202,122,44,-23,63,33,202,122,44,68,62,33,202,122,44,-23,62,33,202,122,44,68,61,33,202,122,44,-23,61,33,202,122,44,68,60,33,202,122,44,-23,60,33,202,122,44,68,59,33,202,122,44,-23,59,33,202,122,44,68,58,33,202,122,44,-23,58,33,202,122,44,68,57,33,202,122,44,-23,57,33,202,122,44,68,56,33,202,122,44,-23,56,33,202,122,44,68,55,33,202,122,44,-23,55,33,202,122,44,68,54,33,202,122,44,-23,54,33,202,122,44,68,53,33,202,122,44,-23,53,33,202,122,44,68,52,33,202,122,44,-23,52,33,202,122,44,68,51,33,202,122,44,-23,51,33,202,122,44,68,50,33,202,122,44,-23,50,33,202,122,44,68,49,33,202,122,44,-23,49,33,202,122,44,68,48,33,202,122,44,-23,48,33,202,122,44,68,47,33,202,122,44,-23,47,33,202,122,44,68,46,33,202,122,44,-23,46,33,202,122,44,68,45,33,202,122,44,-23,45,33,202,122,44,68,44,33,202,122,44,-23,44,33,202,122,44,68,43,33,202,122,44,-23,43,33,202,122,44,68,42,33,202,122,44,-23,42,33,202,122,44,68,41,33,202,122,44,-23,41,33,202,122,44,68,40,33,202,122,44,-23,40,33,202,122,44,68,39,33,202,122,44,-23,39,33,202,122,44,84,-24,2,202,122,44,-39,-23,2,202,122,44,68,38,33,202,122,44,-23,38,33,202,122,44,68,37,33,202,122,44,-23,37,33,202,122,44,68,36,33,202,122,44,-23,36,33,202,122,44,68,35,33,202,122,44,-23,35,33,202,122,44,68,34,33,202,122,44,-23,34,33,202,122,44,68,33,33,202,122,44,-23,33,33,202,122,44,68,32,33,202,122,44,-23,32,33,202,122,44,68,31,33,202,122,44,-23,31,33,202,122,44,68,30,33,202,122,44,-23,30,33,202,122,44,68,29,33,202,122,44,-23,29,33,202,122,44,68,28,33,202,122,44,-23,28,33,202,122,44,68,27,33,202,122,44,-23,27,33,202,122,44,68,26,33,202,122,44,-23,26,33,202,122,44,68,25,33,202,122,44,-23,25,33,202,122,44,68,24,33,202,122,44,-23,24,33,202,122,44,68,23,33,202,122,44,-23,23,33,202,122,44,68,22,33,202,122,44,-23,22,33,202,122,44,68,21,33,202,122,44,-23,21,33,202,122,44,68,20,33,202,122,44,-23,20,33,202,122,44,68,19,33,202,122,44,-23,19,33,202,122,44,68,18,33,202,122,44,-23,18,33,202,122,44,68,17,33,202,122,44,-23,17,33,202,122,44,68,16,33,202,122,44,-23,16,33,202,122,44,68,15,33,202,122,44,-23,15,33,202,122,44,68,14,33,202,122,44,-23,14,33,202,122,44,68,13,33,202,122,44,-23,13,33,202,122,44,68,12,33,202,122,44,-23,12,33,202,122,44,68,11,33,202,122,44,-23,11,33,202,122,44,68,10,33,202,122,44,-23,10,33,202,122,44,68,9,33,202,122,44,-23,9,33,202,122,44,68,8,33,202,122,44,-23,8,33,202,122,44,68,7,33,202,122,44,-23,7,33,202,122,44,68,6,33,202,122,44,-23,6,33,202,122,44,68,5,33,202,122,44,-23,5,33,202,122,44,68,4,33,202,122,44,-23,4,33,202,122,44,68,3,33,202,122,44,-23,3,33,202,122,44,68,2,33,202,122,44,-23,2,33,202,122,44,68,1,33,202,122,44,-23,1,33,202,122,44,68,0,33,202,122,44,-23,0,33,202,122,44,68,-1,33,202,122,44,-23,-1,33,202,122,44,68,-2,33,202,122,44,-23,-2,33,202,122,44,68,-3,33,202,122,44,-23,-3,33,202,122,44,68,-4,33,202,122,44,-23,-4,33,202,122,44,68,-5,33,202,122,44,-23,-5,33,202,122,44,68,-6,33,202,122,44,-23,-6,33,202,122,44,68,-7,33,202,122,44,-23,-7,33,202,122,44,68,-8,33,202,122,44,-23,-8,33,202,122,44,68,-9,33,202,122,44,-23,-9,33,202,122,44,68,-10,33,202,122,44,-23,-10,33,202,122,44,68,-11,33,202,122,44,-23,-11,33,202,122,44,68,-12,33,202,122,44,-23,-12,33,202,122,44,68,-13,33,202,122,44,-23,-13,33,202,122,44,68,-14,33,202,122,44,-23,-14,33,202,122,44,68,-15,33,202,122,44,-23,-15,33,202,122,44,68,-16,33,202,122,44,-23,-16,33,202,122,44,68,-17,33,202,122,44,-23,-17,33,202,122,44,68,-18,33,202,122,44,-23,-18,33,202,122,44,68,-19,33,202,122,44,-23,-19,33,202,122,44,68,-20,33,202,122,44,-23,-20,33,202,122,44,68,-21,33,202,122,44,-23,-21,33,202,122,44,68,-22,33,202,122,44,-23,-22,33,202,122,44,84,-23,2,202,122,44,-39,-22,2,202,122,44,68,-23,33,202,122,44,67,-23,33,202,122,44,66,-23,33,202,122,44,65,-23,33,202,122,44,64,-23,33,202,122,44,63,-23,33,202,122,44,62,-23,33,202,122,44,61,-23,33,202,122,44,60,-23,33,202,122,44,59,-23,33,202,122,44,58,-23,33,202,122,44,57,-23,33,202,122,44,56,-23,33,202,122,44,55,-23,33,202,122,44,54,-23,33,202,122,44,53,-23,33,202,122,44,52,-23,33,202,122,44,51,-23,33,202,122,44,50,-23,33,202,122,44,49,-23,33,202,122,44,48,-23,33,202,122,44,47,-23,33,202,122,44,46,-23,33,202,122,44,45,-23,33,202,122,44,44,-23,33,202,122,44,43,-23,33,202,122,44,42,-23,33,202,122,44,41,-23,33,202,122,44,40,-23,33,202,122,44,39,-23,33,202,122,44,38,-23,33,202,122,44,37,-23,33,202,122,44,36,-23,33,202,122,44,35,-23,33,202,122,44,34,-23,33,202,122,44,33,-23,33,202,122,44,32,-23,33,202,122,44,31,-23,33,202,122,44,30,-23,33,202,122,44,29,-23,33,202,122,44,28,-23,33,202,122,44,27,-23,33,202,122,44,26,-23,33,202,122,44,25,-23,33,202,122,44,24,-23,33,202,122,44,23,-23,33,202,122,44,22,-23,33,202,122,44,21,-23,33,202,122,44,20,-23,33,202,122,44,19,-23,33,202,122,44,18,-23,33,202,122,44,17,-23,33,202,122,44,16,-23,33,202,122,44,15,-23,33,202,122,44,14,-23,33,202,122,44,13,-23,33,202,122,44,12,-23,33,202,122,44,11,-23,33,202,122,44,10,-23,33,202,122,44,9,-23,33,202,122,44,8,-23,33,202,122,44,7,-23,33,202,122,44,6,-23,33,202,122,44,5,-23,33,202,122,44,4,-23,33,202,122,44,3,-23,33,202,122,44,2,-23,33,202,122,44,1,-23,33,202,122,44,0,-23,33,202,122,44,-1,-23,33,202,122,44,-2,-23,33,202,122,44,-3,-23,33,202,122,44,-4,-23,33,202,122,44,-5,-23,33,202,122,44,-6,-23,33,202,122,44,-7,-23,33,202,122,44,-8,-23,33,202,122,44,-9,-23,33,202,122,44,-10,-23,33,202,122,44,-11,-23,33,202,122,44,-12,-23,33,202,122,44,-13,-23,33,202,122,44,-14,-23,33,202,122,44,-15,-23,33,202,122,44,-16,-23,33,202,122,44,-17,-23,33,202,122,44,-18,-23,33,202,122,44,-19,-23,33,202,122,44,-20,-23,33,202,122,44,-21,-23,33,202,122,44,-22,-23,33,202,122,44,-23,-23,33,202,122,44,69,69,32,202,122,44,68,69,32,202,122,44,67,69,32,202,122,44,66,69,32,202,122,44,65,69,32,202,122,44,64,69,32,202,122,44,63,69,32,202,122,44,62,69,32,202,122,44,61,69,32,202,122,44,60,69,32,202,122,44,59,69,32,202,122,44,58,69,32,202,122,44,57,69,32,202,122,44,56,69,32,202,122,44,55,69,32,202,122,44,54,69,32,202,122,44,53,69,32,202,122,44,52,69,32,202,122,44,51,69,32,202,122,44,50,69,32,202,122,44,49,69,32,202,122,44,48,69,32,202,122,44,47,69,32,202,122,44,46,69,32,202,122,44,45,69,32,202,122,44,44,69,32,202,122,44,43,69,32,202,122,44,42,69,32,202,122,44,41,69,32,202,122,44,40,69,32,202,122,44,84,-22,2,202,122,44,-39,-21,2,202,122,44,39,69,32,202,122,44,38,69,32,202,122,44,37,69,32,202,122,44,36,69,32,202,122,44,35,69,32,202,122,44,34,69,32,202,122,44,33,69,32,202,122,44,32,69,32,202,122,44,31,69,32,202,122,44,30,69,32,202,122,44,29,69,32,202,122,44,28,69,32,202,122,44,27,69,32,202,122,44,26,69,32,202,122,44,25,69,32,202,122,44,24,69,32,202,122,44,23,69,32,202,122,44,22,69,32,202,122,44,21,69,32,202,122,44,20,69,32,202,122,44,19,69,32,202,122,44,18,69,32,202,122,44,17,69,32,202,122,44,16,69,32,202,122,44,15,69,32,202,122,44,14,69,32,202,122,44,13,69,32,202,122,44,12,69,32,202,122,44,11,69,32,202,122,44,10,69,32,202,122,44,9,69,32,202,122,44,8,69,32,202,122,44,7,69,32,202,122,44,6,69,32,202,122,44,5,69,32,202,122,44,4,69,32,202,122,44,3,69,32,202,122,44,2,69,32,202,122,44,1,69,32,202,122,44,0,69,32,202,122,44,-1,69,32,202,122,44,-2,69,32,202,122,44,-3,69,32,202,122,44,-4,69,32,202,122,44,-5,69,32,202,122,44,-6,69,32,202,122,44,-7,69,32,202,122,44,-8,69,32,202,122,44,-9,69,32,202,122,44,-10,69,32,202,122,44,-11,69,32,202,122,44,-12,69,32,202,122,44,-13,69,32,202,122,44,-14,69,32,202,122,44,-15,69,32,202,122,44,-16,69,32,202,122,44,-17,69,32,202,122,44,-18,69,32,202,122,44,-19,69,32,202,122,44,-20,69,32,202,122,44,-21,69,32,202,122,44,-22,69,32,202,122,44,-23,69,32,202,122,44,-24,69,32,202,122,44,69,68,32,202,122,44,-24,68,32,202,122,44,69,67,32,202,122,44,-24,67,32,202,122,44,69,66,32,202,122,44,-24,66,32,202,122,44,69,65,32,202,122,44,-24,65,32,202,122,44,69,64,32,202,122,44,-24,64,32,202,122,44,69,63,32,202,122,44,-24,63,32,202,122,44,69,62,32,202,122,44,-24,62,32,202,122,44,69,61,32,202,122,44,-24,61,32,202,122,44,69,60,32,202,122,44,-24,60,32,202,122,44,69,59,32,202,122,44,-24,59,32,202,122,44,69,58,32,202,122,44,-24,58,32,202,122,44,69,57,32,202,122,44,-24,57,32,202,122,44,69,56,32,202,122,44,-24,56,32,202,122,44,69,55,32,202,122,44,-24,55,32,202,122,44,69,54,32,202,122,44,-24,54,32,202,122,44,69,53,32,202,122,44,-24,53,32,202,122,44,69,52,32,202,122,44,-24,52,32,202,122,44,69,51,32,202,122,44,-24,51,32,202,122,44,69,50,32,202,122,44,-24,50,32,202,122,44,69,49,32,202,122,44,-24,49,32,202,122,44,69,48,32,202,122,44,-24,48,32,202,122,44,69,47,32,202,122,44,-24,47,32,202,122,44,69,46,32,202,122,44,-24,46,32,202,122,44,69,45,32,202,122,44,-24,45,32,202,122,44,69,44,32,202,122,44,-24,44,32,202,122,44,69,43,32,202,122,44,-24,43,32,202,122,44,69,42,32,202,122,44,-24,42,32,202,122,44,69,41,32,202,122,44,-24,41,32,202,122,44,69,40,32,202,122,44,-24,40,32,202,122,44,84,-21,2,202,122,44,-39,-20,2,202,122,44,69,39,32,202,122,44,-24,39,32,202,122,44,69,38,32,202,122,44,-24,38,32,202,122,44,69,37,32,202,122,44,-24,37,32,202,122,44,69,36,32,202,122,44,-24,36,32,202,122,44,69,35,32,202,122,44,-24,35,32,202,122,44,69,34,32,202,122,44,-24,34,32,202,122,44,69,33,32,202,122,44,-24,33,32,202,122,44,69,32,32,202,122,44,-24,32,32,202,122,44,69,31,32,202,122,44,-24,31,32,202,122,44,69,30,32,202,122,44,-24,30,32,202,122,44,69,29,32,202,122,44,-24,29,32,202,122,44,69,28,32,202,122,44,-24,28,32,202,122,44,69,27,32,202,122,44,-24,27,32,202,122,44,69,26,32,202,122,44,-24,26,32,202,122,44,69,25,32,202,122,44,-24,25,32,202,122,44,69,24,32,202,122,44,-24,24,32,202,122,44,69,23,32,202,122,44,-24,23,32,202,122,44,69,22,32,202,122,44,-24,22,32,202,122,44,69,21,32,202,122,44,-24,21,32,202,122,44,69,20,32,202,122,44,-24,20,32,202,122,44,69,19,32,202,122,44,-24,19,32,202,122,44,69,18,32,202,122,44,-24,18,32,202,122,44,69,17,32,202,122,44,-24,17,32,202,122,44,69,16,32,202,122,44,-24,16,32,202,122,44,69,15,32,202,122,44,-24,15,32,202,122,44,69,14,32,202,122,44,-24,14,32,202,122,44,69,13,32,202,122,44,-24,13,32,202,122,44,69,12,32,202,122,44,-24,12,32,202,122,44,69,11,32,202,122,44,-24,11,32,202,122,44,69,10,32,202,122,44,-24,10,32,202,122,44,69,9,32,202,122,44,-24,9,32,202,122,44,69,8,32,202,122,44,-24,8,32,202,122,44,69,7,32,202,122,44,-24,7,32,202,122,44,69,6,32,202,122,44,-24,6,32,202,122,44,69,5,32,202,122,44,-24,5,32,202,122,44,69,4,32,202,122,44,-24,4,32,202,122,44,69,3,32,202,122,44,-24,3,32,202,122,44,69,2,32,202,122,44,-24,2,32,202,122,44,69,1,32,202,122,44,-24,1,32,202,122,44,69,0,32,202,122,44,-24,0,32,202,122,44,69,-1,32,202,122,44,-24,-1,32,202,122,44,69,-2,32,202,122,44,-24,-2,32,202,122,44,69,-3,32,202,122,44,-24,-3,32,202,122,44,69,-4,32,202,122,44,-24,-4,32,202,122,44,69,-5,32,202,122,44,-24,-5,32,202,122,44,69,-6,32,202,122,44,-24,-6,32,202,122,44,69,-7,32,202,122,44,-24,-7,32,202,122,44,69,-8,32,202,122,44,-24,-8,32,202,122,44,69,-9,32,202,122,44,-24,-9,32,202,122,44,69,-10,32,202,122,44,-24,-10,32,202,122,44,69,-11,32,202,122,44,-24,-11,32,202,122,44,69,-12,32,202,122,44,-24,-12,32,202,122,44,69,-13,32,202,122,44,-24,-13,32,202,122,44,69,-14,32,202,122,44,-24,-14,32,202,122,44,69,-15,32,202,122,44,-24,-15,32,202,122,44,69,-16,32,202,122,44,-24,-16,32,202,122,44,69,-17,32,202,122,44,-24,-17,32,202,122,44,69,-18,32,202,122,44,-24,-18,32,202,122,44,69,-19,32,202,122,44,-24,-19,32,202,122,44,69,-20,32,202,122,44,-24,-20,32,202,122,44,69,-21,32,202,122,44,-24,-21,32,202,122,44,84,-20,2,202,122,44,-39,-19,2,202,122,44,69,-22,32,202,122,44,-24,-22,32,202,122,44,69,-23,32,202,122,44,-24,-23,32,202,122,44,69,-24,32,202,122,44,68,-24,32,202,122,44,67,-24,32,202,122,44,66,-24,32,202,122,44,65,-24,32,202,122,44,64,-24,32,202,122,44,63,-24,32,202,122,44,62,-24,32,202,122,44,61,-24,32,202,122,44,60,-24,32,202,122,44,59,-24,32,202,122,44,58,-24,32,202,122,44,57,-24,32,202,122,44,56,-24,32,202,122,44,55,-24,32,202,122,44,54,-24,32,202,122,44,53,-24,32,202,122,44,52,-24,32,202,122,44,51,-24,32,202,122,44,50,-24,32,202,122,44,49,-24,32,202,122,44,48,-24,32,202,122,44,47,-24,32,202,122,44,46,-24,32,202,122,44,45,-24,32,202,122,44,44,-24,32,202,122,44,43,-24,32,202,122,44,42,-24,32,202,122,44,41,-24,32,202,122,44,40,-24,32,202,122,44,39,-24,32,202,122,44,38,-24,32,202,122,44,37,-24,32,202,122,44,36,-24,32,202,122,44,35,-24,32,202,122,44,34,-24,32,202,122,44,33,-24,32,202,122,44,32,-24,32,202,122,44,31,-24,32,202,122,44,30,-24,32,202,122,44,29,-24,32,202,122,44,28,-24,32,202,122,44,27,-24,32,202,122,44,26,-24,32,202,122,44,25,-24,32,202,122,44,24,-24,32,202,122,44,23,-24,32,202,122,44,22,-24,32,202,122,44,21,-24,32,202,122,44,20,-24,32,202,122,44,19,-24,32,202,122,44,18,-24,32,202,122,44,17,-24,32,202,122,44,16,-24,32,202,122,44,15,-24,32,202,122,44,14,-24,32,202,122,44,13,-24,32,202,122,44,12,-24,32,202,122,44,11,-24,32,202,122,44,10,-24,32,202,122,44,9,-24,32,202,122,44,8,-24,32,202,122,44,7,-24,32,202,122,44,6,-24,32,202,122,44,5,-24,32,202,122,44,4,-24,32,202,122,44,3,-24,32,202,122,44,2,-24,32,202,122,44,1,-24,32,202,122,44,0,-24,32,202,122,44,-1,-24,32,202,122,44,-2,-24,32,202,122,44,-3,-24,32,202,122,44,-4,-24,32,202,122,44,-5,-24,32,202,122,44,-6,-24,32,202,122,44,-7,-24,32,202,122,44,-8,-24,32,202,122,44,-9,-24,32,202,122,44,-10,-24,32,202,122,44,-11,-24,32,202,122,44,-12,-24,32,202,122,44,-13,-24,32,202,122,44,-14,-24,32,202,122,44,-15,-24,32,202,122,44,-16,-24,32,202,122,44,-17,-24,32,202,122,44,-18,-24,32,202,122,44,-19,-24,32,202,122,44,-20,-24,32,202,122,44,-21,-24,32,202,122,44,-22,-24,32,202,122,44,-23,-24,32,202,122,44,-24,-24,32,202,122,44,69,69,31,202,122,44,68,69,31,202,122,44,67,69,31,202,122,44,66,69,31,202,122,44,65,69,31,202,122,44,64,69,31,202,122,44,63,69,31,202,122,44,62,69,31,202,122,44,61,69,31,202,122,44,60,69,31,202,122,44,59,69,31,202,122,44,58,69,31,202,122,44,57,69,31,202,122,44,56,69,31,202,122,44,55,69,31,202,122,44,54,69,31,202,122,44,53,69,31,202,122,44,52,69,31,202,122,44,51,69,31,202,122,44,50,69,31,202,122,44,49,69,31,202,122,44,48,69,31,202,122,44,47,69,31,202,122,44,46,69,31,202,122,44,84,-19,2,202,122,44,-39,-18,2,202,122,44,45,69,31,202,122,44,44,69,31,202,122,44,43,69,31,202,122,44,42,69,31,202,122,44,41,69,31,202,122,44,40,69,31,202,122,44,39,69,31,202,122,44,38,69,31,202,122,44,37,69,31,202,122,44,36,69,31,202,122,44,35,69,31,202,122,44,34,69,31,202,122,44,33,69,31,202,122,44,32,69,31,202,122,44,31,69,31,202,122,44,30,69,31,202,122,44,29,69,31,202,122,44,28,69,31,202,122,44,27,69,31,202,122,44,26,69,31,202,122,44,25,69,31,202,122,44,24,69,31,202,122,44,23,69,31,202,122,44,22,69,31,202,122,44,21,69,31,202,122,44,20,69,31,202,122,44,19,69,31,202,122,44,18,69,31,202,122,44,17,69,31,202,122,44,16,69,31,202,122,44,15,69,31,202,122,44,14,69,31,202,122,44,13,69,31,202,122,44,12,69,31,202,122,44,11,69,31,202,122,44,10,69,31,202,122,44,9,69,31,202,122,44,8,69,31,202,122,44,7,69,31,202,122,44,6,69,31,202,122,44,5,69,31,202,122,44,4,69,31,202,122,44,3,69,31,202,122,44,2,69,31,202,122,44,1,69,31,202,122,44,0,69,31,202,122,44,-1,69,31,202,122,44,-2,69,31,202,122,44,-3,69,31,202,122,44,-4,69,31,202,122,44,-5,69,31,202,122,44,-6,69,31,202,122,44,-7,69,31,202,122,44,-8,69,31,202,122,44,-9,69,31,202,122,44,-10,69,31,202,122,44,-11,69,31,202,122,44,-12,69,31,202,122,44,-13,69,31,202,122,44,-14,69,31,202,122,44,-15,69,31,202,122,44,-16,69,31,202,122,44,-17,69,31,202,122,44,-18,69,31,202,122,44,-19,69,31,202,122,44,-20,69,31,202,122,44,-21,69,31,202,122,44,-22,69,31,202,122,44,-23,69,31,202,122,44,-24,69,31,202,122,44,69,68,31,202,122,44,-24,68,31,202,122,44,69,67,31,202,122,44,-24,67,31,202,122,44,69,66,31,202,122,44,-24,66,31,202,122,44,69,65,31,202,122,44,-24,65,31,202,122,44,69,64,31,202,122,44,-24,64,31,202,122,44,69,63,31,202,122,44,-24,63,31,202,122,44,69,62,31,202,122,44,-24,62,31,202,122,44,69,61,31,202,122,44,-24,61,31,202,122,44,69,60,31,202,122,44,-24,60,31,202,122,44,69,59,31,202,122,44,-24,59,31,202,122,44,69,58,31,202,122,44,-24,58,31,202,122,44,69,57,31,202,122,44,-24,57,31,202,122,44,69,56,31,202,122,44,-24,56,31,202,122,44,69,55,31,202,122,44,-24,55,31,202,122,44,69,54,31,202,122,44,-24,54,31,202,122,44,69,53,31,202,122,44,-24,53,31,202,122,44,69,52,31,202,122,44,-24,52,31,202,122,44,69,51,31,202,122,44,-24,51,31,202,122,44,69,50,31,202,122,44,-24,50,31,202,122,44,69,49,31,202,122,44,-24,49,31,202,122,44,69,48,31,202,122,44,-24,48,31,202,122,44,69,47,31,202,122,44,-24,47,31,202,122,44,69,46,31,202,122,44,-24,46,31,202,122,44,69,45,31,202,122,44,-24,45,31,202,122,44,69,44,31,202,122,44,-24,44,31,202,122,44,69,43,31,202,122,44,-24,43,31,202,122,44,84,-18,2,202,122,44,-39,-17,2,202,122,44,69,42,31,202,122,44,-24,42,31,202,122,44,69,41,31,202,122,44,-24,41,31,202,122,44,69,40,31,202,122,44,-24,40,31,202,122,44,69,39,31,202,122,44,-24,39,31,202,122,44,69,38,31,202,122,44,-24,38,31,202,122,44,69,37,31,202,122,44,-24,37,31,202,122,44,69,36,31,202,122,44,-24,36,31,202,122,44,69,35,31,202,122,44,-24,35,31,202,122,44,69,34,31,202,122,44,-24,34,31,202,122,44,69,33,31,202,122,44,-24,33,31,202,122,44,69,32,31,202,122,44,-24,32,31,202,122,44,69,31,31,202,122,44,-24,31,31,202,122,44,69,30,31,202,122,44,-24,30,31,202,122,44,69,29,31,202,122,44,-24,29,31,202,122,44,69,28,31,202,122,44,-24,28,31,202,122,44,69,27,31,202,122,44,-24,27,31,202,122,44,69,26,31,202,122,44,-24,26,31,202,122,44,69,25,31,202,122,44,-24,25,31,202,122,44,69,24,31,202,122,44,-24,24,31,202,122,44,69,23,31,202,122,44,-24,23,31,202,122,44,69,22,31,202,122,44,-24,22,31,202,122,44,69,21,31,202,122,44,-24,21,31,202,122,44,69,20,31,202,122,44,-24,20,31,202,122,44,69,19,31,202,122,44,-24,19,31,202,122,44,69,18,31,202,122,44,-24,18,31,202,122,44,69,17,31,202,122,44,-24,17,31,202,122,44,69,16,31,202,122,44,-24,16,31,202,122,44,69,15,31,202,122,44,-24,15,31,202,122,44,69,14,31,202,122,44,-24,14,31,202,122,44,69,13,31,202,122,44,-24,13,31,202,122,44,69,12,31,202,122,44,-24,12,31,202,122,44,69,11,31,202,122,44,-24,11,31,202,122,44,69,10,31,202,122,44,-24,10,31,202,122,44,69,9,31,202,122,44,-24,9,31,202,122,44,69,8,31,202,122,44,-24,8,31,202,122,44,69,7,31,202,122,44,-24,7,31,202,122,44,69,6,31,202,122,44,-24,6,31,202,122,44,69,5,31,202,122,44,-24,5,31,202,122,44,69,4,31,202,122,44,-24,4,31,202,122,44,69,3,31,202,122,44,-24,3,31,202,122,44,69,2,31,202,122,44,-24,2,31,202,122,44,69,1,31,202,122,44,-24,1,31,202,122,44,69,0,31,202,122,44,-24,0,31,202,122,44,69,-1,31,202,122,44,-24,-1,31,202,122,44,69,-2,31,202,122,44,-24,-2,31,202,122,44,69,-3,31,202,122,44,-24,-3,31,202,122,44,69,-4,31,202,122,44,-24,-4,31,202,122,44,69,-5,31,202,122,44,-24,-5,31,202,122,44,69,-6,31,202,122,44,-24,-6,31,202,122,44,69,-7,31,202,122,44,-24,-7,31,202,122,44,69,-8,31,202,122,44,-24,-8,31,202,122,44,69,-9,31,202,122,44,-24,-9,31,202,122,44,69,-10,31,202,122,44,-24,-10,31,202,122,44,69,-11,31,202,122,44,-24,-11,31,202,122,44,69,-12,31,202,122,44,-24,-12,31,202,122,44,69,-13,31,202,122,44,-24,-13,31,202,122,44,69,-14,31,202,122,44,-24,-14,31,202,122,44,69,-15,31,202,122,44,-24,-15,31,202,122,44,69,-16,31,202,122,44,-24,-16,31,202,122,44,69,-17,31,202,122,44,-24,-17,31,202,122,44,69,-18,31,202,122,44,-24,-18,31,202,122,44,84,-17,2,202,122,44,-39,-16,2,202,122,44,69,-19,31,202,122,44,-24,-19,31,202,122,44,69,-20,31,202,122,44,-24,-20,31,202,122,44,69,-21,31,202,122,44,-24,-21,31,202,122,44,69,-22,31,202,122,44,-24,-22,31,202,122,44,69,-23,31,202,122,44,-24,-23,31,202,122,44,69,-24,31,202,122,44,68,-24,31,202,122,44,67,-24,31,202,122,44,66,-24,31,202,122,44,65,-24,31,202,122,44,64,-24,31,202,122,44,63,-24,31,202,122,44,62,-24,31,202,122,44,61,-24,31,202,122,44,60,-24,31,202,122,44,59,-24,31,202,122,44,58,-24,31,202,122,44,57,-24,31,202,122,44,56,-24,31,202,122,44,55,-24,31,202,122,44,54,-24,31,202,122,44,53,-24,31,202,122,44,52,-24,31,202,122,44,51,-24,31,202,122,44,50,-24,31,202,122,44,49,-24,31,202,122,44,48,-24,31,202,122,44,47,-24,31,202,122,44,46,-24,31,202,122,44,45,-24,31,202,122,44,44,-24,31,202,122,44,43,-24,31,202,122,44,42,-24,31,202,122,44,41,-24,31,202,122,44,40,-24,31,202,122,44,39,-24,31,202,122,44,38,-24,31,202,122,44,37,-24,31,202,122,44,36,-24,31,202,122,44,35,-24,31,202,122,44,34,-24,31,202,122,44,33,-24,31,202,122,44,32,-24,31,202,122,44,31,-24,31,202,122,44,30,-24,31,202,122,44,29,-24,31,202,122,44,28,-24,31,202,122,44,27,-24,31,202,122,44,26,-24,31,202,122,44,25,-24,31,202,122,44,24,-24,31,202,122,44,23,-24,31,202,122,44,22,-24,31,202,122,44,21,-24,31,202,122,44,20,-24,31,202,122,44,19,-24,31,202,122,44,18,-24,31,202,122,44,17,-24,31,202,122,44,16,-24,31,202,122,44,15,-24,31,202,122,44,14,-24,31,202,122,44,13,-24,31,202,122,44,12,-24,31,202,122,44,11,-24,31,202,122,44,10,-24,31,202,122,44,9,-24,31,202,122,44,8,-24,31,202,122,44,7,-24,31,202,122,44,6,-24,31,202,122,44,5,-24,31,202,122,44,4,-24,31,202,122,44,3,-24,31,202,122,44,2,-24,31,202,122,44,1,-24,31,202,122,44,0,-24,31,202,122,44,-1,-24,31,202,122,44,-2,-24,31,202,122,44,-3,-24,31,202,122,44,-4,-24,31,202,122,44,-5,-24,31,202,122,44,-6,-24,31,202,122,44,-7,-24,31,202,122,44,-8,-24,31,202,122,44,-9,-24,31,202,122,44,-10,-24,31,202,122,44,-11,-24,31,202,122,44,-12,-24,31,202,122,44,-13,-24,31,202,122,44,-14,-24,31,202,122,44,-15,-24,31,202,122,44,-16,-24,31,202,122,44,-17,-24,31,202,122,44,-18,-24,31,202,122,44,-19,-24,31,202,122,44,-20,-24,31,202,122,44,-21,-24,31,202,122,44,-22,-24,31,202,122,44,-23,-24,31,202,122,44,-24,-24,31,202,122,44,70,70,30,202,122,44,69,70,30,202,122,44,68,70,30,202,122,44,67,70,30,202,122,44,66,70,30,202,122,44,65,70,30,202,122,44,64,70,30,202,122,44,63,70,30,202,122,44,62,70,30,202,122,44,61,70,30,202,122,44,60,70,30,202,122,44,59,70,30,202,122,44,58,70,30,202,122,44,57,70,30,202,122,44,56,70,30,202,122,44,55,70,30,202,122,44,54,70,30,202,122,44,53,70,30,202,122,44,84,-16,2,202,122,44,-39,-15,2,202,122,44,52,70,30,202,122,44,51,70,30,202,122,44,50,70,30,202,122,44,49,70,30,202,122,44,48,70,30,202,122,44,47,70,30,202,122,44,46,70,30,202,122,44,45,70,30,202,122,44,44,70,30,202,122,44,43,70,30,202,122,44,42,70,30,202,122,44,41,70,30,202,122,44,40,70,30,202,122,44,39,70,30,202,122,44,38,70,30,202,122,44,37,70,30,202,122,44,36,70,30,202,122,44,35,70,30,202,122,44,34,70,30,202,122,44,33,70,30,202,122,44,32,70,30,202,122,44,31,70,30,202,122,44,30,70,30,202,122,44,29,70,30,202,122,44,28,70,30,202,122,44,27,70,30,202,122,44,26,70,30,202,122,44,25,70,30,202,122,44,24,70,30,202,122,44,23,70,30,202,122,44,22,70,30,202,122,44,21,70,30,202,122,44,20,70,30,202,122,44,19,70,30,202,122,44,18,70,30,202,122,44,17,70,30,202,122,44,16,70,30,202,122,44,15,70,30,202,122,44,14,70,30,202,122,44,13,70,30,202,122,44,12,70,30,202,122,44,11,70,30,202,122,44,10,70,30,202,122,44,9,70,30,202,122,44,8,70,30,202,122,44,7,70,30,202,122,44,6,70,30,202,122,44,5,70,30,202,122,44,4,70,30,202,122,44,3,70,30,202,122,44,2,70,30,202,122,44,1,70,30,202,122,44,0,70,30,202,122,44,-1,70,30,202,122,44,-2,70,30,202,122,44,-3,70,30,202,122,44,-4,70,30,202,122,44,-5,70,30,202,122,44,-6,70,30,202,122,44,-7,70,30,202,122,44,-8,70,30,202,122,44,-9,70,30,202,122,44,-10,70,30,202,122,44,-11,70,30,202,122,44,-12,70,30,202,122,44,-13,70,30,202,122,44,-14,70,30,202,122,44,-15,70,30,202,122,44,-16,70,30,202,122,44,-17,70,30,202,122,44,-18,70,30,202,122,44,-19,70,30,202,122,44,-20,70,30,202,122,44,-21,70,30,202,122,44,-22,70,30,202,122,44,-23,70,30,202,122,44,-24,70,30,202,122,44,-25,70,30,202,122,44,70,69,30,202,122,44,-25,69,30,202,122,44,70,68,30,202,122,44,-25,68,30,202,122,44,70,67,30,202,122,44,-25,67,30,202,122,44,70,66,30,202,122,44,-25,66,30,202,122,44,70,65,30,202,122,44,-25,65,30,202,122,44,70,64,30,202,122,44,-25,64,30,202,122,44,70,63,30,202,122,44,-25,63,30,202,122,44,70,62,30,202,122,44,-25,62,30,202,122,44,70,61,30,202,122,44,-25,61,30,202,122,44,70,60,30,202,122,44,-25,60,30,202,122,44,70,59,30,202,122,44,-25,59,30,202,122,44,70,58,30,202,122,44,-25,58,30,202,122,44,70,57,30,202,122,44,-25,57,30,202,122,44,70,56,30,202,122,44,-25,56,30,202,122,44,70,55,30,202,122,44,-25,55,30,202,122,44,70,54,30,202,122,44,-25,54,30,202,122,44,70,53,30,202,122,44,-25,53,30,202,122,44,70,52,30,202,122,44,-25,52,30,202,122,44,70,51,30,202,122,44,-25,51,30,202,122,44,70,50,30,202,122,44,-25,50,30,202,122,44,70,49,30,202,122,44,-25,49,30,202,122,44,70,48,30,202,122,44,-25,48,30,202,122,44,84,-15,2,202,122,44,-39,-14,2,202,122,44,70,47,30,202,122,44,-25,47,30,202,122,44,70,46,30,202,122,44,-25,46,30,202,122,44,70,45,30,202,122,44,-25,45,30,202,122,44,70,44,30,202,122,44,-25,44,30,202,122,44,70,43,30,202,122,44,-25,43,30,202,122,44,70,42,30,202,122,44,-25,42,30,202,122,44,70,41,30,202,122,44,-25,41,30,202,122,44,70,40,30,202,122,44,-25,40,30,202,122,44,70,39,30,202,122,44,-25,39,30,202,122,44,70,38,30,202,122,44,-25,38,30,202,122,44,70,37,30,202,122,44,-25,37,30,202,122,44,70,36,30,202,122,44,-25,36,30,202,122,44,70,35,30,202,122,44,-25,35,30,202,122,44,70,34,30,202,122,44,-25,34,30,202,122,44,70,33,30,202,122,44,-25,33,30,202,122,44,70,32,30,202,122,44,-25,32,30,202,122,44,70,31,30,202,122,44,-25,31,30,202,122,44,70,30,30,202,122,44,-25,30,30,202,122,44,70,29,30,202,122,44,-25,29,30,202,122,44,70,28,30,202,122,44,-25,28,30,202,122,44,70,27,30,202,122,44,-25,27,30,202,122,44,70,26,30,202,122,44,-25,26,30,202,122,44,70,25,30,202,122,44,-25,25,30,202,122,44,70,24,30,202,122,44,-25,24,30,202,122,44,70,23,30,202,122,44,-25,23,30,202,122,44,70,22,30,202,122,44,-25,22,30,202,122,44,70,21,30,202,122,44,-25,21,30,202,122,44,70,20,30,202,122,44,-25,20,30,202,122,44,70,19,30,202,122,44,-25,19,30,202,122,44,70,18,30,202,122,44,-25,18,30,202,122,44,70,17,30,202,122,44,-25,17,30,202,122,44,70,16,30,202,122,44,-25,16,30,202,122,44,70,15,30,202,122,44,-25,15,30,202,122,44,70,14,30,202,122,44,-25,14,30,202,122,44,70,13,30,202,122,44,-25,13,30,202,122,44,70,12,30,202,122,44,-25,12,30,202,122,44,70,11,30,202,122,44,-25,11,30,202,122,44,70,10,30,202,122,44,-25,10,30,202,122,44,70,9,30,202,122,44,-25,9,30,202,122,44,70,8,30,202,122,44,-25,8,30,202,122,44,70,7,30,202,122,44,-25,7,30,202,122,44,70,6,30,202,122,44,-25,6,30,202,122,44,70,5,30,202,122,44,-25,5,30,202,122,44,70,4,30,202,122,44,-25,4,30,202,122,44,70,3,30,202,122,44,-25,3,30,202,122,44,70,2,30,202,122,44,-25,2,30,202,122,44,70,1,30,202,122,44,-25,1,30,202,122,44,70,0,30,202,122,44,-25,0,30,202,122,44,70,-1,30,202,122,44,-25,-1,30,202,122,44,70,-2,30,202,122,44,-25,-2,30,202,122,44,70,-3,30,202,122,44,-25,-3,30,202,122,44,70,-4,30,202,122,44,-25,-4,30,202,122,44,70,-5,30,202,122,44,-25,-5,30,202,122,44,70,-6,30,202,122,44,-25,-6,30,202,122,44,70,-7,30,202,122,44,-25,-7,30,202,122,44,70,-8,30,202,122,44,-25,-8,30,202,122,44,70,-9,30,202,122,44,-25,-9,30,202,122,44,70,-10,30,202,122,44,-25,-10,30,202,122,44,70,-11,30,202,122,44,-25,-11,30,202,122,44,70,-12,30,202,122,44,-25,-12,30,202,122,44,70,-13,30,202,122,44,-25,-13,30,202,122,44,84,-14,2,202,122,44,-39,-13,2,202,122,44,70,-14,30,202,122,44,-25,-14,30,202,122,44,70,-15,30,202,122,44,-25,-15,30,202,122,44,70,-16,30,202,122,44,-25,-16,30,202,122,44,70,-17,30,202,122,44,-25,-17,30,202,122,44,70,-18,30,202,122,44,-25,-18,30,202,122,44,70,-19,30,202,122,44,-25,-19,30,202,122,44,70,-20,30,202,122,44,-25,-20,30,202,122,44,70,-21,30,202,122,44,-25,-21,30,202,122,44,70,-22,30,202,122,44,-25,-22,30,202,122,44,70,-23,30,202,122,44,-25,-23,30,202,122,44,70,-24,30,202,122,44,-25,-24,30,202,122,44,70,-25,30,202,122,44,69,-25,30,202,122,44,68,-25,30,202,122,44,67,-25,30,202,122,44,66,-25,30,202,122,44,65,-25,30,202,122,44,64,-25,30,202,122,44,63,-25,30,202,122,44,62,-25,30,202,122,44,61,-25,30,202,122,44,60,-25,30,202,122,44,59,-25,30,202,122,44,58,-25,30,202,122,44,57,-25,30,202,122,44,56,-25,30,202,122,44,55,-25,30,202,122,44,54,-25,30,202,122,44,53,-25,30,202,122,44,52,-25,30,202,122,44,51,-25,30,202,122,44,50,-25,30,202,122,44,49,-25,30,202,122,44,48,-25,30,202,122,44,47,-25,30,202,122,44,46,-25,30,202,122,44,45,-25,30,202,122,44,44,-25,30,202,122,44,43,-25,30,202,122,44,42,-25,30,202,122,44,41,-25,30,202,122,44,40,-25,30,202,122,44,39,-25,30,202,122,44,38,-25,30,202,122,44,37,-25,30,202,122,44,36,-25,30,202,122,44,35,-25,30,202,122,44,34,-25,30,202,122,44,33,-25,30,202,122,44,32,-25,30,202,122,44,31,-25,30,202,122,44,30,-25,30,202,122,44,29,-25,30,202,122,44,28,-25,30,202,122,44,27,-25,30,202,122,44,26,-25,30,202,122,44,25,-25,30,202,122,44,24,-25,30,202,122,44,23,-25,30,202,122,44,22,-25,30,202,122,44,21,-25,30,202,122,44,20,-25,30,202,122,44,19,-25,30,202,122,44,18,-25,30,202,122,44,17,-25,30,202,122,44,16,-25,30,202,122,44,15,-25,30,202,122,44,14,-25,30,202,122,44,13,-25,30,202,122,44,12,-25,30,202,122,44,11,-25,30,202,122,44,10,-25,30,202,122,44,9,-25,30,202,122,44,8,-25,30,202,122,44,7,-25,30,202,122,44,6,-25,30,202,122,44,5,-25,30,202,122,44,4,-25,30,202,122,44,3,-25,30,202,122,44,2,-25,30,202,122,44,1,-25,30,202,122,44,0,-25,30,202,122,44,-1,-25,30,202,122,44,-2,-25,30,202,122,44,-3,-25,30,202,122,44,-4,-25,30,202,122,44,-5,-25,30,202,122,44,-6,-25,30,202,122,44,-7,-25,30,202,122,44,-8,-25,30,202,122,44,-9,-25,30,202,122,44,-10,-25,30,202,122,44,-11,-25,30,202,122,44,-12,-25,30,202,122,44,-13,-25,30,202,122,44,-14,-25,30,202,122,44,-15,-25,30,202,122,44,-16,-25,30,202,122,44,-17,-25,30,202,122,44,-18,-25,30,202,122,44,-19,-25,30,202,122,44,-20,-25,30,202,122,44,-21,-25,30,202,122,44,-22,-25,30,202,122,44,-23,-25,30,202,122,44,-24,-25,30,202,122,44,-25,-25,30,202,122,44,70,70,29,202,122,44,69,70,29,202,122,44,68,70,29,202,122,44,67,70,29,202,122,44,84,-13,2,202,122,44,-39,-12,2,202,122,44,66,70,29,202,122,44,65,70,29,202,122,44,64,70,29,202,122,44,63,70,29,202,122,44,62,70,29,202,122,44,61,70,29,202,122,44,60,70,29,202,122,44,59,70,29,202,122,44,58,70,29,202,122,44,57,70,29,202,122,44,56,70,29,202,122,44,55,70,29,202,122,44,54,70,29,202,122,44,53,70,29,202,122,44,52,70,29,202,122,44,51,70,29,202,122,44,50,70,29,202,122,44,49,70,29,202,122,44,48,70,29,202,122,44,47,70,29,202,122,44,46,70,29,202,122,44,45,70,29,202,122,44,44,70,29,202,122,44,43,70,29,202,122,44,42,70,29,202,122,44,41,70,29,202,122,44,40,70,29,202,122,44,39,70,29,202,122,44,38,70,29,202,122,44,37,70,29,202,122,44,36,70,29,202,122,44,35,70,29,202,122,44,34,70,29,202,122,44,33,70,29,202,122,44,32,70,29,202,122,44,31,70,29,202,122,44,30,70,29,202,122,44,29,70,29,202,122,44,28,70,29,202,122,44,27,70,29,202,122,44,26,70,29,202,122,44,25,70,29,202,122,44,24,70,29,202,122,44,23,70,29,202,122,44,22,70,29,202,122,44,21,70,29,202,122,44,20,70,29,202,122,44,19,70,29,202,122,44,18,70,29,202,122,44,17,70,29,202,122,44,16,70,29,202,122,44,15,70,29,202,122,44,14,70,29,202,122,44,13,70,29,202,122,44,12,70,29,202,122,44,11,70,29,202,122,44,10,70,29,202,122,44,9,70,29,202,122,44,8,70,29,202,122,44,7,70,29,202,122,44,6,70,29,202,122,44,5,70,29,202,122,44,4,70,29,202,122,44,3,70,29,202,122,44,2,70,29,202,122,44,1,70,29,202,122,44,0,70,29,202,122,44,-1,70,29,202,122,44,-2,70,29,202,122,44,-3,70,29,202,122,44,-4,70,29,202,122,44,-5,70,29,202,122,44,-6,70,29,202,122,44,-7,70,29,202,122,44,-8,70,29,202,122,44,-9,70,29,202,122,44,-10,70,29,202,122,44,-11,70,29,202,122,44,-12,70,29,202,122,44,-13,70,29,202,122,44,-14,70,29,202,122,44,-15,70,29,202,122,44,-16,70,29,202,122,44,-17,70,29,202,122,44,-18,70,29,202,122,44,-19,70,29,202,122,44,-20,70,29,202,122,44,-21,70,29,202,122,44,-22,70,29,202,122,44,-23,70,29,202,122,44,-24,70,29,202,122,44,-25,70,29,202,122,44,70,69,29,202,122,44,-25,69,29,202,122,44,70,68,29,202,122,44,-25,68,29,202,122,44,70,67,29,202,122,44,-25,67,29,202,122,44,70,66,29,202,122,44,-25,66,29,202,122,44,70,65,29,202,122,44,-25,65,29,202,122,44,70,64,29,202,122,44,-25,64,29,202,122,44,70,63,29,202,122,44,-25,63,29,202,122,44,70,62,29,202,122,44,-25,62,29,202,122,44,70,61,29,202,122,44,-25,61,29,202,122,44,70,60,29,202,122,44,-25,60,29,202,122,44,70,59,29,202,122,44,-25,59,29,202,122,44,70,58,29,202,122,44,-25,58,29,202,122,44,70,57,29,202,122,44,-25,57,29,202,122,44,70,56,29,202,122,44,-25,56,29,202,122,44,70,55,29,202,122,44,-25,55,29,202,122,44,84,-12,2,202,122,44,-39,-11,2,202,122,44,70,54,29,202,122,44,-25,54,29,202,122,44,70,53,29,202,122,44,-25,53,29,202,122,44,70,52,29,202,122,44,-25,52,29,202,122,44,70,51,29,202,122,44,-25,51,29,202,122,44,70,50,29,202,122,44,-25,50,29,202,122,44,70,49,29,202,122,44,-25,49,29,202,122,44,70,48,29,202,122,44,-25,48,29,202,122,44,70,47,29,202,122,44,-25,47,29,202,122,44,70,46,29,202,122,44,-25,46,29,202,122,44,70,45,29,202,122,44,-25,45,29,202,122,44,70,44,29,202,122,44,-25,44,29,202,122,44,70,43,29,202,122,44,-25,43,29,202,122,44,70,42,29,202,122,44,-25,42,29,202,122,44,70,41,29,202,122,44,-25,41,29,202,122,44,70,40,29,202,122,44,-25,40,29,202,122,44,70,39,29,202,122,44,-25,39,29,202,122,44,70,38,29,202,122,44,-25,38,29,202,122,44,70,37,29,202,122,44,-25,37,29,202,122,44,70,36,29,202,122,44,-25,36,29,202,122,44,70,35,29,202,122,44,-25,35,29,202,122,44,70,34,29,202,122,44,-25,34,29,202,122,44,70,33,29,202,122,44,-25,33,29,202,122,44,70,32,29,202,122,44,-25,32,29,202,122,44,70,31,29,202,122,44,-25,31,29,202,122,44,70,30,29,202,122,44,-25,30,29,202,122,44,70,29,29,202,122,44,-25,29,29,202,122,44,70,28,29,202,122,44,-25,28,29,202,122,44,70,27,29,202,122,44,-25,27,29,202,122,44,70,26,29,202,122,44,-25,26,29,202,122,44,70,25,29,202,122,44,-25,25,29,202,122,44,70,24,29,202,122,44,-25,24,29,202,122,44,70,23,29,202,122,44,-25,23,29,202,122,44,70,22,29,202,122,44,-25,22,29,202,122,44,70,21,29,202,122,44,-25,21,29,202,122,44,70,20,29,202,122,44,-25,20,29,202,122,44,70,19,29,202,122,44,-25,19,29,202,122,44,70,18,29,202,122,44,-25,18,29,202,122,44,70,17,29,202,122,44,-25,17,29,202,122,44,70,16,29,202,122,44,-25,16,29,202,122,44,70,15,29,202,122,44,-25,15,29,202,122,44,70,14,29,202,122,44,-25,14,29,202,122,44,70,13,29,202,122,44,-25,13,29,202,122,44,70,12,29,202,122,44,-25,12,29,202,122,44,70,11,29,202,122,44,-25,11,29,202,122,44,70,10,29,202,122,44,-25,10,29,202,122,44,70,9,29,202,122,44,-25,9,29,202,122,44,70,8,29,202,122,44,-25,8,29,202,122,44,70,7,29,202,122,44,-25,7,29,202,122,44,70,6,29,202,122,44,-25,6,29,202,122,44,70,5,29,202,122,44,-25,5,29,202,122,44,70,4,29,202,122,44,-25,4,29,202,122,44,70,3,29,202,122,44,-25,3,29,202,122,44,70,2,29,202,122,44,-25,2,29,202,122,44,70,1,29,202,122,44,-25,1,29,202,122,44,70,0,29,202,122,44,-25,0,29,202,122,44,70,-1,29,202,122,44,-25,-1,29,202,122,44,70,-2,29,202,122,44,-25,-2,29,202,122,44,70,-3,29,202,122,44,-25,-3,29,202,122,44,70,-4,29,202,122,44,-25,-4,29,202,122,44,70,-5,29,202,122,44,-25,-5,29,202,122,44,70,-6,29,202,122,44,-25,-6,29,202,122,44,84,-11,2,202,122,44,-39,-10,2,202,122,44,70,-7,29,202,122,44,-25,-7,29,202,122,44,70,-8,29,202,122,44,-25,-8,29,202,122,44,70,-9,29,202,122,44,-25,-9,29,202,122,44,70,-10,29,202,122,44,-25,-10,29,202,122,44,70,-11,29,202,122,44,-25,-11,29,202,122,44,70,-12,29,202,122,44,-25,-12,29,202,122,44,70,-13,29,202,122,44,-25,-13,29,202,122,44,70,-14,29,202,122,44,-25,-14,29,202,122,44,70,-15,29,202,122,44,-25,-15,29,202,122,44,70,-16,29,202,122,44,-25,-16,29,202,122,44,70,-17,29,202,122,44,-25,-17,29,202,122,44,70,-18,29,202,122,44,-25,-18,29,202,122,44,70,-19,29,202,122,44,-25,-19,29,202,122,44,70,-20,29,202,122,44,-25,-20,29,202,122,44,70,-21,29,202,122,44,-25,-21,29,202,122,44,70,-22,29,202,122,44,-25,-22,29,202,122,44,70,-23,29,202,122,44,-25,-23,29,202,122,44,70,-24,29,202,122,44,-25,-24,29,202,122,44,70,-25,29,202,122,44,69,-25,29,202,122,44,68,-25,29,202,122,44,67,-25,29,202,122,44,66,-25,29,202,122,44,65,-25,29,202,122,44,64,-25,29,202,122,44,63,-25,29,202,122,44,62,-25,29,202,122,44,61,-25,29,202,122,44,60,-25,29,202,122,44,59,-25,29,202,122,44,58,-25,29,202,122,44,57,-25,29,202,122,44,56,-25,29,202,122,44,55,-25,29,202,122,44,54,-25,29,202,122,44,53,-25,29,202,122,44,52,-25,29,202,122,44,51,-25,29,202,122,44,50,-25,29,202,122,44,49,-25,29,202,122,44,48,-25,29,202,122,44,47,-25,29,202,122,44,46,-25,29,202,122,44,45,-25,29,202,122,44,44,-25,29,202,122,44,43,-25,29,202,122,44,42,-25,29,202,122,44,41,-25,29,202,122,44,40,-25,29,202,122,44,39,-25,29,202,122,44,38,-25,29,202,122,44,37,-25,29,202,122,44,36,-25,29,202,122,44,35,-25,29,202,122,44,34,-25,29,202,122,44,33,-25,29,202,122,44,32,-25,29,202,122,44,31,-25,29,202,122,44,30,-25,29,202,122,44,29,-25,29,202,122,44,28,-25,29,202,122,44,27,-25,29,202,122,44,26,-25,29,202,122,44,25,-25,29,202,122,44,24,-25,29,202,122,44,23,-25,29,202,122,44,22,-25,29,202,122,44,21,-25,29,202,122,44,20,-25,29,202,122,44,19,-25,29,202,122,44,18,-25,29,202,122,44,17,-25,29,202,122,44,16,-25,29,202,122,44,15,-25,29,202,122,44,14,-25,29,202,122,44,13,-25,29,202,122,44,12,-25,29,202,122,44,11,-25,29,202,122,44,10,-25,29,202,122,44,9,-25,29,202,122,44,8,-25,29,202,122,44,7,-25,29,202,122,44,6,-25,29,202,122,44,5,-25,29,202,122,44,4,-25,29,202,122,44,3,-25,29,202,122,44,2,-25,29,202,122,44,1,-25,29,202,122,44,0,-25,29,202,122,44,-1,-25,29,202,122,44,-2,-25,29,202,122,44,-3,-25,29,202,122,44,-4,-25,29,202,122,44,-5,-25,29,202,122,44,-6,-25,29,202,122,44,-7,-25,29,202,122,44,-8,-25,29,202,122,44,-9,-25,29,202,122,44,-10,-25,29,202,122,44,-11,-25,29,202,122,44,-12,-25,29,202,122,44,-13,-25,29,202,122,44,-14,-25,29,202,122,44,-15,-25,29,202,122,44,84,-10,2,202,122,44,-39,-9,2,202,122,44,-16,-25,29,202,122,44,-17,-25,29,202,122,44,-18,-25,29,202,122,44,-19,-25,29,202,122,44,-20,-25,29,202,122,44,-21,-25,29,202,122,44,-22,-25,29,202,122,44,-23,-25,29,202,122,44,-24,-25,29,202,122,44,-25,-25,29,202,122,44,71,71,28,202,122,44,70,71,28,202,122,44,69,71,28,202,122,44,68,71,28,202,122,44,67,71,28,202,122,44,66,71,28,202,122,44,65,71,28,202,122,44,64,71,28,202,122,44,63,71,28,202,122,44,62,71,28,202,122,44,61,71,28,202,122,44,60,71,28,202,122,44,59,71,28,202,122,44,58,71,28,202,122,44,57,71,28,202,122,44,56,71,28,202,122,44,55,71,28,202,122,44,54,71,28,202,122,44,53,71,28,202,122,44,52,71,28,202,122,44,51,71,28,202,122,44,50,71,28,202,122,44,49,71,28,202,122,44,48,71,28,202,122,44,47,71,28,202,122,44,46,71,28,202,122,44,45,71,28,202,122,44,44,71,28,202,122,44,43,71,28,202,122,44,42,71,28,202,122,44,41,71,28,202,122,44,40,71,28,202,122,44,39,71,28,202,122,44,38,71,28,202,122,44,37,71,28,202,122,44,36,71,28,202,122,44,35,71,28,202,122,44,34,71,28,202,122,44,33,71,28,202,122,44,32,71,28,202,122,44,31,71,28,202,122,44,30,71,28,202,122,44,29,71,28,202,122,44,28,71,28,202,122,44,27,71,28,202,122,44,26,71,28,202,122,44,25,71,28,202,122,44,24,71,28,202,122,44,23,71,28,202,122,44,22,71,28,202,122,44,21,71,28,202,122,44,20,71,28,202,122,44,19,71,28,202,122,44,18,71,28,202,122,44,17,71,28,202,122,44,16,71,28,202,122,44,15,71,28,202,122,44,14,71,28,202,122,44,13,71,28,202,122,44,12,71,28,202,122,44,11,71,28,202,122,44,10,71,28,202,122,44,9,71,28,202,122,44,8,71,28,202,122,44,7,71,28,202,122,44,6,71,28,202,122,44,5,71,28,202,122,44,4,71,28,202,122,44,3,71,28,202,122,44,2,71,28,202,122,44,1,71,28,202,122,44,0,71,28,202,122,44,-1,71,28,202,122,44,-2,71,28,202,122,44,-3,71,28,202,122,44,-4,71,28,202,122,44,-5,71,28,202,122,44,-6,71,28,202,122,44,-7,71,28,202,122,44,-8,71,28,202,122,44,-9,71,28,202,122,44,-10,71,28,202,122,44,-11,71,28,202,122,44,-12,71,28,202,122,44,-13,71,28,202,122,44,-14,71,28,202,122,44,-15,71,28,202,122,44,-16,71,28,202,122,44,-17,71,28,202,122,44,-18,71,28,202,122,44,-19,71,28,202,122,44,-20,71,28,202,122,44,-21,71,28,202,122,44,-22,71,28,202,122,44,-23,71,28,202,122,44,-24,71,28,202,122,44,-25,71,28,202,122,44,-26,71,28,202,122,44,71,70,28,202,122,44,-26,70,28,202,122,44,71,69,28,202,122,44,-26,69,28,202,122,44,71,68,28,202,122,44,-26,68,28,202,122,44,71,67,28,202,122,44,-26,67,28,202,122,44,71,66,28,202,122,44,-26,66,28,202,122,44,71,65,28,202,122,44,-26,65,28,202,122,44,71,64,28,202,122,44,-26,64,28,202,122,44,84,-9,2,202,122,44,-39,-8,2,202,122,44,71,63,28,202,122,44,-26,63,28,202,122,44,71,62,28,202,122,44,-26,62,28,202,122,44,71,61,28,202,122,44,-26,61,28,202,122,44,71,60,28,202,122,44,-26,60,28,202,122,44,71,59,28,202,122,44,-26,59,28,202,122,44,71,58,28,202,122,44,-26,58,28,202,122,44,71,57,28,202,122,44,-26,57,28,202,122,44,71,56,28,202,122,44,-26,56,28,202,122,44,71,55,28,202,122,44,-26,55,28,202,122,44,71,54,28,202,122,44,-26,54,28,202,122,44,71,53,28,202,122,44,-26,53,28,202,122,44,71,52,28,202,122,44,-26,52,28,202,122,44,71,51,28,202,122,44,-26,51,28,202,122,44,71,50,28,202,122,44,-26,50,28,202,122,44,71,49,28,202,122,44,-26,49,28,202,122,44,71,48,28,202,122,44,-26,48,28,202,122,44,71,47,28,202,122,44,-26,47,28,202,122,44,71,46,28,202,122,44,-26,46,28,202,122,44,71,45,28,202,122,44,-26,45,28,202,122,44,71,44,28,202,122,44,-26,44,28,202,122,44,71,43,28,202,122,44,-26,43,28,202,122,44,71,42,28,202,122,44,-26,42,28,202,122,44,71,41,28,202,122,44,-26,41,28,202,122,44,71,40,28,202,122,44,-26,40,28,202,122,44,71,39,28,202,122,44,-26,39,28,202,122,44,71,38,28,202,122,44,-26,38,28,202,122,44,71,37,28,202,122,44,-26,37,28,202,122,44,71,36,28,202,122,44,-26,36,28,202,122,44,71,35,28,202,122,44,-26,35,28,202,122,44,71,34,28,202,122,44,-26,34,28,202,122,44,71,33,28,202,122,44,-26,33,28,202,122,44,71,32,28,202,122,44,-26,32,28,202,122,44,71,31,28,202,122,44,-26,31,28,202,122,44,71,30,28,202,122,44,-26,30,28,202,122,44,71,29,28,202,122,44,-26,29,28,202,122,44,71,28,28,202,122,44,-26,28,28,202,122,44,71,27,28,202,122,44,-26,27,28,202,122,44,71,26,28,202,122,44,-26,26,28,202,122,44,71,25,28,202,122,44,-26,25,28,202,122,44,71,24,28,202,122,44,-26,24,28,202,122,44,71,23,28,202,122,44,-26,23,28,202,122,44,71,22,28,202,122,44,-26,22,28,202,122,44,71,21,28,202,122,44,-26,21,28,202,122,44,71,20,28,202,122,44,-26,20,28,202,122,44,71,19,28,202,122,44,-26,19,28,202,122,44,71,18,28,202,122,44,-26,18,28,202,122,44,71,17,28,202,122,44,-26,17,28,202,122,44,71,16,28,202,122,44,-26,16,28,202,122,44,71,15,28,202,122,44,-26,15,28,202,122,44,71,14,28,202,122,44,-26,14,28,202,122,44,71,13,28,202,122,44,-26,13,28,202,122,44,71,12,28,202,122,44,-26,12,28,202,122,44,71,11,28,202,122,44,-26,11,28,202,122,44,71,10,28,202,122,44,-26,10,28,202,122,44,71,9,28,202,122,44,-26,9,28,202,122,44,71,8,28,202,122,44,-26,8,28,202,122,44,71,7,28,202,122,44,-26,7,28,202,122,44,71,6,28,202,122,44,-26,6,28,202,122,44,71,5,28,202,122,44,-26,5,28,202,122,44,71,4,28,202,122,44,-26,4,28,202,122,44,71,3,28,202,122,44,-26,3,28,202,122,44,84,-8,2,202,122,44,-39,-7,2,202,122,44,71,2,28,202,122,44,-26,2,28,202,122,44,71,1,28,202,122,44,-26,1,28,202,122,44,71,0,28,202,122,44,-26,0,28,202,122,44,71,-1,28,202,122,44,-26,-1,28,202,122,44,71,-2,28,202,122,44,-26,-2,28,202,122,44,71,-3,28,202,122,44,-26,-3,28,202,122,44,71,-4,28,202,122,44,-26,-4,28,202,122,44,71,-5,28,202,122,44,-26,-5,28,202,122,44,71,-6,28,202,122,44,-26,-6,28,202,122,44,71,-7,28,202,122,44,-26,-7,28,202,122,44,71,-8,28,202,122,44,-26,-8,28,202,122,44,71,-9,28,202,122,44,-26,-9,28,202,122,44,71,-10,28,202,122,44,-26,-10,28,202,122,44,71,-11,28,202,122,44,-26,-11,28,202,122,44,71,-12,28,202,122,44,-26,-12,28,202,122,44,71,-13,28,202,122,44,-26,-13,28,202,122,44,71,-14,28,202,122,44,-26,-14,28,202,122,44,71,-15,28,202,122,44,-26,-15,28,202,122,44,71,-16,28,202,122,44,-26,-16,28,202,122,44,71,-17,28,202,122,44,-26,-17,28,202,122,44,71,-18,28,202,122,44,-26,-18,28,202,122,44,71,-19,28,202,122,44,-26,-19,28,202,122,44,71,-20,28,202,122,44,-26,-20,28,202,122,44,71,-21,28,202,122,44,-26,-21,28,202,122,44,71,-22,28,202,122,44,-26,-22,28,202,122,44,71,-23,28,202,122,44,-26,-23,28,202,122,44,71,-24,28,202,122,44,-26,-24,28,202,122,44,71,-25,28,202,122,44,-26,-25,28,202,122,44,71,-26,28,202,122,44,70,-26,28,202,122,44,69,-26,28,202,122,44,68,-26,28,202,122,44,67,-26,28,202,122,44,66,-26,28,202,122,44,65,-26,28,202,122,44,64,-26,28,202,122,44,63,-26,28,202,122,44,62,-26,28,202,122,44,61,-26,28,202,122,44,60,-26,28,202,122,44,59,-26,28,202,122,44,58,-26,28,202,122,44,57,-26,28,202,122,44,56,-26,28,202,122,44,55,-26,28,202,122,44,54,-26,28,202,122,44,53,-26,28,202,122,44,52,-26,28,202,122,44,51,-26,28,202,122,44,50,-26,28,202,122,44,49,-26,28,202,122,44,48,-26,28,202,122,44,47,-26,28,202,122,44,46,-26,28,202,122,44,45,-26,28,202,122,44,44,-26,28,202,122,44,43,-26,28,202,122,44,42,-26,28,202,122,44,41,-26,28,202,122,44,40,-26,28,202,122,44,39,-26,28,202,122,44,38,-26,28,202,122,44,37,-26,28,202,122,44,36,-26,28,202,122,44,35,-26,28,202,122,44,34,-26,28,202,122,44,33,-26,28,202,122,44,32,-26,28,202,122,44,31,-26,28,202,122,44,30,-26,28,202,122,44,29,-26,28,202,122,44,28,-26,28,202,122,44,27,-26,28,202,122,44,26,-26,28,202,122,44,25,-26,28,202,122,44,24,-26,28,202,122,44,23,-26,28,202,122,44,22,-26,28,202,122,44,21,-26,28,202,122,44,20,-26,28,202,122,44,19,-26,28,202,122,44,18,-26,28,202,122,44,17,-26,28,202,122,44,16,-26,28,202,122,44,15,-26,28,202,122,44,14,-26,28,202,122,44,13,-26,28,202,122,44,12,-26,28,202,122,44,11,-26,28,202,122,44,10,-26,28,202,122,44,9,-26,28,202,122,44,8,-26,28,202,122,44,7,-26,28,202,122,44,6,-26,28,202,122,44,84,-7,2,202,122,44,-39,-6,2,202,122,44,5,-26,28,202,122,44,4,-26,28,202,122,44,3,-26,28,202,122,44,2,-26,28,202,122,44,1,-26,28,202,122,44,0,-26,28,202,122,44,-1,-26,28,202,122,44,-2,-26,28,202,122,44,-3,-26,28,202,122,44,-4,-26,28,202,122,44,-5,-26,28,202,122,44,-6,-26,28,202,122,44,-7,-26,28,202,122,44,-8,-26,28,202,122,44,-9,-26,28,202,122,44,-10,-26,28,202,122,44,-11,-26,28,202,122,44,-12,-26,28,202,122,44,-13,-26,28,202,122,44,-14,-26,28,202,122,44,-15,-26,28,202,122,44,-16,-26,28,202,122,44,-17,-26,28,202,122,44,-18,-26,28,202,122,44,-19,-26,28,202,122,44,-20,-26,28,202,122,44,-21,-26,28,202,122,44,-22,-26,28,202,122,44,-23,-26,28,202,122,44,-24,-26,28,202,122,44,-25,-26,28,202,122,44,-26,-26,28,202,122,44,71,71,27,202,122,44,70,71,27,202,122,44,69,71,27,202,122,44,68,71,27,202,122,44,67,71,27,202,122,44,66,71,27,202,122,44,65,71,27,202,122,44,64,71,27,202,122,44,63,71,27,202,122,44,62,71,27,202,122,44,61,71,27,202,122,44,60,71,27,202,122,44,59,71,27,202,122,44,58,71,27,202,122,44,57,71,27,202,122,44,56,71,27,202,122,44,55,71,27,202,122,44,54,71,27,202,122,44,53,71,27,202,122,44,52,71,27,202,122,44,51,71,27,202,122,44,50,71,27,202,122,44,49,71,27,202,122,44,48,71,27,202,122,44,47,71,27,202,122,44,46,71,27,202,122,44,45,71,27,202,122,44,44,71,27,202,122,44,43,71,27,202,122,44,42,71,27,202,122,44,41,71,27,202,122,44,40,71,27,202,122,44,39,71,27,202,122,44,38,71,27,202,122,44,37,71,27,202,122,44,36,71,27,202,122,44,35,71,27,202,122,44,34,71,27,202,122,44,33,71,27,202,122,44,32,71,27,202,122,44,31,71,27,202,122,44,30,71,27,202,122,44,29,71,27,202,122,44,28,71,27,202,122,44,27,71,27,202,122,44,26,71,27,202,122,44,25,71,27,202,122,44,24,71,27,202,122,44,23,71,27,202,122,44,22,71,27,202,122,44,21,71,27,202,122,44,20,71,27,202,122,44,19,71,27,202,122,44,18,71,27,202,122,44,17,71,27,202,122,44,16,71,27,202,122,44,15,71,27,202,122,44,14,71,27,202,122,44,13,71,27,202,122,44,12,71,27,202,122,44,11,71,27,202,122,44,10,71,27,202,122,44,9,71,27,202,122,44,8,71,27,202,122,44,7,71,27,202,122,44,6,71,27,202,122,44,5,71,27,202,122,44,4,71,27,202,122,44,3,71,27,202,122,44,2,71,27,202,122,44,1,71,27,202,122,44,0,71,27,202,122,44,-1,71,27,202,122,44,-2,71,27,202,122,44,-3,71,27,202,122,44,-4,71,27,202,122,44,-5,71,27,202,122,44,-6,71,27,202,122,44,-7,71,27,202,122,44,-8,71,27,202,122,44,-9,71,27,202,122,44,-10,71,27,202,122,44,-11,71,27,202,122,44,-12,71,27,202,122,44,-13,71,27,202,122,44,-14,71,27,202,122,44,-15,71,27,202,122,44,-16,71,27,202,122,44,-17,71,27,202,122,44,-18,71,27,202,122,44,84,-6,2,202,122,44,-39,-5,2,202,122,44,-19,71,27,202,122,44,-20,71,27,202,122,44,-21,71,27,202,122,44,-22,71,27,202,122,44,-23,71,27,202,122,44,-24,71,27,202,122,44,-25,71,27,202,122,44,-26,71,27,202,122,44,71,70,27,202,122,44,-26,70,27,202,122,44,71,69,27,202,122,44,-26,69,27,202,122,44,71,68,27,202,122,44,-26,68,27,202,122,44,71,67,27,202,122,44,-26,67,27,202,122,44,71,66,27,202,122,44,-26,66,27,202,122,44,71,65,27,202,122,44,-26,65,27,202,122,44,71,64,27,202,122,44,-26,64,27,202,122,44,71,63,27,202,122,44,-26,63,27,202,122,44,71,62,27,202,122,44,-26,62,27,202,122,44,71,61,27,202,122,44,-26,61,27,202,122,44,71,60,27,202,122,44,-26,60,27,202,122,44,71,59,27,202,122,44,-26,59,27,202,122,44,71,58,27,202,122,44,-26,58,27,202,122,44,71,57,27,202,122,44,-26,57,27,202,122,44,71,56,27,202,122,44,-26,56,27,202,122,44,71,55,27,202,122,44,-26,55,27,202,122,44,71,54,27,202,122,44,-26,54,27,202,122,44,71,53,27,202,122,44,-26,53,27,202,122,44,71,52,27,202,122,44,-26,52,27,202,122,44,71,51,27,202,122,44,-26,51,27,202,122,44,71,50,27,202,122,44,-26,50,27,202,122,44,71,49,27,202,122,44,-26,49,27,202,122,44,71,48,27,202,122,44,-26,48,27,202,122,44,71,47,27,202,122,44,-26,47,27,202,122,44,71,46,27,202,122,44,-26,46,27,202,122,44,71,45,27,202,122,44,-26,45,27,202,122,44,71,44,27,202,122,44,-26,44,27,202,122,44,71,43,27,202,122,44,-26,43,27,202,122,44,71,42,27,202,122,44,-26,42,27,202,122,44,71,41,27,202,122,44,-26,41,27,202,122,44,71,40,27,202,122,44,-26,40,27,202,122,44,71,39,27,202,122,44,-26,39,27,202,122,44,71,38,27,202,122,44,-26,38,27,202,122,44,71,37,27,202,122,44,-26,37,27,202,122,44,71,36,27,202,122,44,-26,36,27,202,122,44,71,35,27,202,122,44,-26,35,27,202,122,44,71,34,27,202,122,44,-26,34,27,202,122,44,71,33,27,202,122,44,-26,33,27,202,122,44,71,32,27,202,122,44,-26,32,27,202,122,44,71,31,27,202,122,44,-26,31,27,202,122,44,71,30,27,202,122,44,-26,30,27,202,122,44,71,29,27,202,122,44,-26,29,27,202,122,44,71,28,27,202,122,44,-26,28,27,202,122,44,71,27,27,202,122,44,-26,27,27,202,122,44,71,26,27,202,122,44,-26,26,27,202,122,44,71,25,27,202,122,44,-26,25,27,202,122,44,71,24,27,202,122,44,-26,24,27,202,122,44,71,23,27,202,122,44,-26,23,27,202,122,44,71,22,27,202,122,44,-26,22,27,202,122,44,71,21,27,202,122,44,-26,21,27,202,122,44,71,20,27,202,122,44,-26,20,27,202,122,44,71,19,27,202,122,44,-26,19,27,202,122,44,71,18,27,202,122,44,-26,18,27,202,122,44,71,17,27,202,122,44,-26,17,27,202,122,44,71,16,27,202,122,44,-26,16,27,202,122,44,71,15,27,202,122,44,-26,15,27,202,122,44,71,14,27,202,122,44,-26,14,27,202,122,44,84,-5,2,202,122,44,-39,-4,2,202,122,44,71,13,27,202,122,44,-26,13,27,202,122,44,71,12,27,202,122,44,-26,12,27,202,122,44,71,11,27,202,122,44,-26,11,27,202,122,44,71,10,27,202,122,44,-26,10,27,202,122,44,71,9,27,202,122,44,-26,9,27,202,122,44,71,8,27,202,122,44,-26,8,27,202,122,44,71,7,27,202,122,44,-26,7,27,202,122,44,71,6,27,202,122,44,-26,6,27,202,122,44,71,5,27,202,122,44,-26,5,27,202,122,44,71,4,27,202,122,44,-26,4,27,202,122,44,71,3,27,202,122,44,-26,3,27,202,122,44,71,2,27,202,122,44,-26,2,27,202,122,44,71,1,27,202,122,44,-26,1,27,202,122,44,71,0,27,202,122,44,-26,0,27,202,122,44,71,-1,27,202,122,44,-26,-1,27,202,122,44,71,-2,27,202,122,44,-26,-2,27,202,122,44,71,-3,27,202,122,44,-26,-3,27,202,122,44,71,-4,27,202,122,44,-26,-4,27,202,122,44,71,-5,27,202,122,44,-26,-5,27,202,122,44,71,-6,27,202,122,44,-26,-6,27,202,122,44,71,-7,27,202,122,44,-26,-7,27,202,122,44,71,-8,27,202,122,44,-26,-8,27,202,122,44,71,-9,27,202,122,44,-26,-9,27,202,122,44,71,-10,27,202,122,44,-26,-10,27,202,122,44,71,-11,27,202,122,44,-26,-11,27,202,122,44,71,-12,27,202,122,44,-26,-12,27,202,122,44,71,-13,27,202,122,44,-26,-13,27,202,122,44,71,-14,27,202,122,44,-26,-14,27,202,122,44,71,-15,27,202,122,44,-26,-15,27,202,122,44,71,-16,27,202,122,44,-26,-16,27,202,122,44,71,-17,27,202,122,44,-26,-17,27,202,122,44,71,-18,27,202,122,44,-26,-18,27,202,122,44,71,-19,27,202,122,44,-26,-19,27,202,122,44,71,-20,27,202,122,44,-26,-20,27,202,122,44,71,-21,27,202,122,44,-26,-21,27,202,122,44,71,-22,27,202,122,44,-26,-22,27,202,122,44,71,-23,27,202,122,44,-26,-23,27,202,122,44,71,-24,27,202,122,44,-26,-24,27,202,122,44,71,-25,27,202,122,44,-26,-25,27,202,122,44,71,-26,27,202,122,44,70,-26,27,202,122,44,69,-26,27,202,122,44,68,-26,27,202,122,44,67,-26,27,202,122,44,66,-26,27,202,122,44,65,-26,27,202,122,44,64,-26,27,202,122,44,63,-26,27,202,122,44,62,-26,27,202,122,44,61,-26,27,202,122,44,60,-26,27,202,122,44,59,-26,27,202,122,44,58,-26,27,202,122,44,57,-26,27,202,122,44,56,-26,27,202,122,44,55,-26,27,202,122,44,54,-26,27,202,122,44,53,-26,27,202,122,44,52,-26,27,202,122,44,51,-26,27,202,122,44,50,-26,27,202,122,44,49,-26,27,202,122,44,48,-26,27,202,122,44,47,-26,27,202,122,44,46,-26,27,202,122,44,45,-26,27,202,122,44,44,-26,27,202,122,44,43,-26,27,202,122,44,42,-26,27,202,122,44,41,-26,27,202,122,44,40,-26,27,202,122,44,39,-26,27,202,122,44,38,-26,27,202,122,44,37,-26,27,202,122,44,36,-26,27,202,122,44,35,-26,27,202,122,44,34,-26,27,202,122,44,33,-26,27,202,122,44,32,-26,27,202,122,44,31,-26,27,202,122,44,30,-26,27,202,122,44,29,-26,27,202,122,44,28,-26,27,202,122,44,84,-4,2,202,122,44,-39,-3,2,202,122,44,27,-26,27,202,122,44,26,-26,27,202,122,44,25,-26,27,202,122,44,24,-26,27,202,122,44,23,-26,27,202,122,44,22,-26,27,202,122,44,21,-26,27,202,122,44,20,-26,27,202,122,44,19,-26,27,202,122,44,18,-26,27,202,122,44,17,-26,27,202,122,44,16,-26,27,202,122,44,15,-26,27,202,122,44,14,-26,27,202,122,44,13,-26,27,202,122,44,12,-26,27,202,122,44,11,-26,27,202,122,44,10,-26,27,202,122,44,9,-26,27,202,122,44,8,-26,27,202,122,44,7,-26,27,202,122,44,6,-26,27,202,122,44,5,-26,27,202,122,44,4,-26,27,202,122,44,3,-26,27,202,122,44,2,-26,27,202,122,44,1,-26,27,202,122,44,0,-26,27,202,122,44,-1,-26,27,202,122,44,-2,-26,27,202,122,44,-3,-26,27,202,122,44,-4,-26,27,202,122,44,-5,-26,27,202,122,44,-6,-26,27,202,122,44,-7,-26,27,202,122,44,-8,-26,27,202,122,44,-9,-26,27,202,122,44,-10,-26,27,202,122,44,-11,-26,27,202,122,44,-12,-26,27,202,122,44,-13,-26,27,202,122,44,-14,-26,27,202,122,44,-15,-26,27,202,122,44,-16,-26,27,202,122,44,-17,-26,27,202,122,44,-18,-26,27,202,122,44,-19,-26,27,202,122,44,-20,-26,27,202,122,44,-21,-26,27,202,122,44,-22,-26,27,202,122,44,-23,-26,27,202,122,44,-24,-26,27,202,122,44,-25,-26,27,202,122,44,-26,-26,27,202,122,44,72,72,26,202,122,44,71,72,26,202,122,44,70,72,26,202,122,44,69,72,26,202,122,44,68,72,26,202,122,44,67,72,26,202,122,44,66,72,26,202,122,44,65,72,26,202,122,44,64,72,26,202,122,44,63,72,26,202,122,44,62,72,26,202,122,44,61,72,26,202,122,44,60,72,26,202,122,44,59,72,26,202,122,44,58,72,26,202,122,44,57,72,26,202,122,44,56,72,26,202,122,44,55,72,26,202,122,44,54,72,26,202,122,44,53,72,26,202,122,44,52,72,26,202,122,44,51,72,26,202,122,44,50,72,26,202,122,44,49,72,26,202,122,44,48,72,26,202,122,44,47,72,26,202,122,44,46,72,26,202,122,44,45,72,26,202,122,44,44,72,26,202,122,44,43,72,26,202,122,44,42,72,26,202,122,44,41,72,26,202,122,44,40,72,26,202,122,44,39,72,26,202,122,44,38,72,26,202,122,44,37,72,26,202,122,44,36,72,26,202,122,44,35,72,26,202,122,44,34,72,26,202,122,44,33,72,26,202,122,44,32,72,26,202,122,44,31,72,26,202,122,44,30,72,26,202,122,44,29,72,26,202,122,44,28,72,26,202,122,44,27,72,26,202,122,44,26,72,26,202,122,44,25,72,26,202,122,44,24,72,26,202,122,44,23,72,26,202,122,44,22,72,26,202,122,44,21,72,26,202,122,44,20,72,26,202,122,44,19,72,26,202,122,44,18,72,26,202,122,44,17,72,26,202,122,44,16,72,26,202,122,44,15,72,26,202,122,44,14,72,26,202,122,44,13,72,26,202,122,44,12,72,26,202,122,44,11,72,26,202,122,44,10,72,26,202,122,44,9,72,26,202,122,44,8,72,26,202,122,44,7,72,26,202,122,44,6,72,26,202,122,44,5,72,26,202,122,44,84,-3,2,202,122,44,-39,-2,2,202,122,44,4,72,26,202,122,44,3,72,26,202,122,44,2,72,26,202,122,44,1,72,26,202,122,44,0,72,26,202,122,44,-1,72,26,202,122,44,-2,72,26,202,122,44,-3,72,26,202,122,44,-4,72,26,202,122,44,-5,72,26,202,122,44,-6,72,26,202,122,44,-7,72,26,202,122,44,-8,72,26,202,122,44,-9,72,26,202,122,44,-10,72,26,202,122,44,-11,72,26,202,122,44,-12,72,26,202,122,44,-13,72,26,202,122,44,-14,72,26,202,122,44,-15,72,26,202,122,44,-16,72,26,202,122,44,-17,72,26,202,122,44,-18,72,26,202,122,44,-19,72,26,202,122,44,-20,72,26,202,122,44,-21,72,26,202,122,44,-22,72,26,202,122,44,-23,72,26,202,122,44,-24,72,26,202,122,44,-25,72,26,202,122,44,-26,72,26,202,122,44,-27,72,26,202,122,44,72,71,26,202,122,44,-27,71,26,202,122,44,72,70,26,202,122,44,-27,70,26,202,122,44,72,69,26,202,122,44,-27,69,26,202,122,44,72,68,26,202,122,44,-27,68,26,202,122,44,72,67,26,202,122,44,-27,67,26,202,122,44,72,66,26,202,122,44,-27,66,26,202,122,44,72,65,26,202,122,44,-27,65,26,202,122,44,72,64,26,202,122,44,-27,64,26,202,122,44,72,63,26,202,122,44,-27,63,26,202,122,44,72,62,26,202,122,44,-27,62,26,202,122,44,72,61,26,202,122,44,-27,61,26,202,122,44,72,60,26,202,122,44,-27,60,26,202,122,44,72,59,26,202,122,44,-27,59,26,202,122,44,72,58,26,202,122,44,-27,58,26,202,122,44,72,57,26,202,122,44,-27,57,26,202,122,44,72,56,26,202,122,44,-27,56,26,202,122,44,72,55,26,202,122,44,-27,55,26,202,122,44,72,54,26,202,122,44,-27,54,26,202,122,44,72,53,26,202,122,44,-27,53,26,202,122,44,72,52,26,202,122,44,-27,52,26,202,122,44,72,51,26,202,122,44,-27,51,26,202,122,44,72,50,26,202,122,44,-27,50,26,202,122,44,72,49,26,202,122,44,-27,49,26,202,122,44,72,48,26,202,122,44,-27,48,26,202,122,44,72,47,26,202,122,44,-27,47,26,202,122,44,72,46,26,202,122,44,-27,46,26,202,122,44,72,45,26,202,122,44,-27,45,26,202,122,44,72,44,26,202,122,44,-27,44,26,202,122,44,72,43,26,202,122,44,-27,43,26,202,122,44,72,42,26,202,122,44,-27,42,26,202,122,44,72,41,26,202,122,44,-27,41,26,202,122,44,72,40,26,202,122,44,-27,40,26,202,122,44,72,39,26,202,122,44,-27,39,26,202,122,44,72,38,26,202,122,44,-27,38,26,202,122,44,72,37,26,202,122,44,-27,37,26,202,122,44,72,36,26,202,122,44,-27,36,26,202,122,44,72,35,26,202,122,44,-27,35,26,202,122,44,72,34,26,202,122,44,-27,34,26,202,122,44,72,33,26,202,122,44,-27,33,26,202,122,44,72,32,26,202,122,44,-27,32,26,202,122,44,72,31,26,202,122,44,-27,31,26,202,122,44,72,30,26,202,122,44,-27,30,26,202,122,44,72,29,26,202,122,44,-27,29,26,202,122,44,72,28,26,202,122,44,-27,28,26,202,122,44,72,27,26,202,122,44,-27,27,26,202,122,44,84,-2,2,202,122,44,-39,-1,2,202,122,44,72,26,26,202,122,44,-27,26,26,202,122,44,72,25,26,202,122,44,-27,25,26,202,122,44,72,24,26,202,122,44,-27,24,26,202,122,44,72,23,26,202,122,44,-27,23,26,202,122,44,72,22,26,202,122,44,-27,22,26,202,122,44,72,21,26,202,122,44,-27,21,26,202,122,44,72,20,26,202,122,44,-27,20,26,202,122,44,72,19,26,202,122,44,-27,19,26,202,122,44,72,18,26,202,122,44,-27,18,26,202,122,44,72,17,26,202,122,44,-27,17,26,202,122,44,72,16,26,202,122,44,-27,16,26,202,122,44,72,15,26,202,122,44,-27,15,26,202,122,44,72,14,26,202,122,44,-27,14,26,202,122,44,72,13,26,202,122,44,-27,13,26,202,122,44,72,12,26,202,122,44,-27,12,26,202,122,44,72,11,26,202,122,44,-27,11,26,202,122,44,72,10,26,202,122,44,-27,10,26,202,122,44,72,9,26,202,122,44,-27,9,26,202,122,44,72,8,26,202,122,44,-27,8,26,202,122,44,72,7,26,202,122,44,-27,7,26,202,122,44,72,6,26,202,122,44,-27,6,26,202,122,44,72,5,26,202,122,44,-27,5,26,202,122,44,72,4,26,202,122,44,-27,4,26,202,122,44,72,3,26,202,122,44,-27,3,26,202,122,44,72,2,26,202,122,44,-27,2,26,202,122,44,72,1,26,202,122,44,-27,1,26,202,122,44,72,0,26,202,122,44,-27,0,26,202,122,44,72,-1,26,202,122,44,-27,-1,26,202,122,44,72,-2,26,202,122,44,-27,-2,26,202,122,44,72,-3,26,202,122,44,-27,-3,26,202,122,44,72,-4,26,202,122,44,-27,-4,26,202,122,44,72,-5,26,202,122,44,-27,-5,26,202,122,44,72,-6,26,202,122,44,-27,-6,26,202,122,44,72,-7,26,202,122,44,-27,-7,26,202,122,44,72,-8,26,202,122,44,-27,-8,26,202,122,44,72,-9,26,202,122,44,-27,-9,26,202,122,44,72,-10,26,202,122,44,-27,-10,26,202,122,44,72,-11,26,202,122,44,-27,-11,26,202,122,44,72,-12,26,202,122,44,-27,-12,26,202,122,44,72,-13,26,202,122,44,-27,-13,26,202,122,44,72,-14,26,202,122,44,-27,-14,26,202,122,44,72,-15,26,202,122,44,-27,-15,26,202,122,44,72,-16,26,202,122,44,-27,-16,26,202,122,44,72,-17,26,202,122,44,-27,-17,26,202,122,44,72,-18,26,202,122,44,-27,-18,26,202,122,44,72,-19,26,202,122,44,-27,-19,26,202,122,44,72,-20,26,202,122,44,-27,-20,26,202,122,44,72,-21,26,202,122,44,-27,-21,26,202,122,44,72,-22,26,202,122,44,-27,-22,26,202,122,44,72,-23,26,202,122,44,-27,-23,26,202,122,44,72,-24,26,202,122,44,-27,-24,26,202,122,44,72,-25,26,202,122,44,-27,-25,26,202,122,44,72,-26,26,202,122,44,-27,-26,26,202,122,44,72,-27,26,202,122,44,71,-27,26,202,122,44,70,-27,26,202,122,44,69,-27,26,202,122,44,68,-27,26,202,122,44,67,-27,26,202,122,44,66,-27,26,202,122,44,65,-27,26,202,122,44,64,-27,26,202,122,44,63,-27,26,202,122,44,62,-27,26,202,122,44,61,-27,26,202,122,44,60,-27,26,202,122,44,59,-27,26,202,122,44,58,-27,26,202,122,44,57,-27,26,202,122,44,84,-1,2,202,122,44,-39,0,2,202,122,44,56,-27,26,202,122,44,55,-27,26,202,122,44,54,-27,26,202,122,44,53,-27,26,202,122,44,52,-27,26,202,122,44,51,-27,26,202,122,44,50,-27,26,202,122,44,49,-27,26,202,122,44,48,-27,26,202,122,44,47,-27,26,202,122,44,46,-27,26,202,122,44,45,-27,26,202,122,44,44,-27,26,202,122,44,43,-27,26,202,122,44,42,-27,26,202,122,44,41,-27,26,202,122,44,40,-27,26,202,122,44,39,-27,26,202,122,44,38,-27,26,202,122,44,37,-27,26,202,122,44,36,-27,26,202,122,44,35,-27,26,202,122,44,34,-27,26,202,122,44,33,-27,26,202,122,44,32,-27,26,202,122,44,31,-27,26,202,122,44,30,-27,26,202,122,44,29,-27,26,202,122,44,28,-27,26,202,122,44,27,-27,26,202,122,44,26,-27,26,202,122,44,25,-27,26,202,122,44,24,-27,26,202,122,44,23,-27,26,202,122,44,22,-27,26,202,122,44,21,-27,26,202,122,44,20,-27,26,202,122,44,19,-27,26,202,122,44,18,-27,26,202,122,44,17,-27,26,202,122,44,16,-27,26,202,122,44,15,-27,26,202,122,44,14,-27,26,202,122,44,13,-27,26,202,122,44,12,-27,26,202,122,44,11,-27,26,202,122,44,10,-27,26,202,122,44,9,-27,26,202,122,44,8,-27,26,202,122,44,7,-27,26,202,122,44,6,-27,26,202,122,44,5,-27,26,202,122,44,4,-27,26,202,122,44,3,-27,26,202,122,44,2,-27,26,202,122,44,1,-27,26,202,122,44,0,-27,26,202,122,44,-1,-27,26,202,122,44,-2,-27,26,202,122,44,-3,-27,26,202,122,44,-4,-27,26,202,122,44,-5,-27,26,202,122,44,-6,-27,26,202,122,44,-7,-27,26,202,122,44,-8,-27,26,202,122,44,-9,-27,26,202,122,44,-10,-27,26,202,122,44,-11,-27,26,202,122,44,-12,-27,26,202,122,44,-13,-27,26,202,122,44,-14,-27,26,202,122,44,-15,-27,26,202,122,44,-16,-27,26,202,122,44,-17,-27,26,202,122,44,-18,-27,26,202,122,44,-19,-27,26,202,122,44,-20,-27,26,202,122,44,-21,-27,26,202,122,44,-22,-27,26,202,122,44,-23,-27,26,202,122,44,-24,-27,26,202,122,44,-25,-27,26,202,122,44,-26,-27,26,202,122,44,-27,-27,26,202,122,44,72,72,25,202,122,44,71,72,25,202,122,44,70,72,25,202,122,44,69,72,25,202,122,44,68,72,25,202,122,44,67,72,25,202,122,44,66,72,25,202,122,44,65,72,25,202,122,44,64,72,25,202,122,44,63,72,25,202,122,44,62,72,25,202,122,44,61,72,25,202,122,44,60,72,25,202,122,44,59,72,25,202,122,44,58,72,25,202,122,44,57,72,25,202,122,44,56,72,25,202,122,44,55,72,25,202,122,44,54,72,25,202,122,44,53,72,25,202,122,44,52,72,25,202,122,44,51,72,25,202,122,44,50,72,25,202,122,44,49,72,25,202,122,44,48,72,25,202,122,44,47,72,25,202,122,44,46,72,25,202,122,44,45,72,25,202,122,44,44,72,25,202,122,44,43,72,25,202,122,44,42,72,25,202,122,44,41,72,25,202,122,44,40,72,25,202,122,44,39,72,25,202,122,44,38,72,25,202,122,44,37,72,25,202,122,44,36,72,25,202,122,44,35,72,25,202,122,44,84,0,2,202,122,44,-39,1,2,202,122,44,34,72,25,202,122,44,33,72,25,202,122,44,32,72,25,202,122,44,31,72,25,202,122,44,30,72,25,202,122,44,29,72,25,202,122,44,28,72,25,202,122,44,27,72,25,202,122,44,26,72,25,202,122,44,25,72,25,202,122,44,24,72,25,202,122,44,23,72,25,202,122,44,22,72,25,202,122,44,21,72,25,202,122,44,20,72,25,202,122,44,19,72,25,202,122,44,18,72,25,202,122,44,17,72,25,202,122,44,16,72,25,202,122,44,15,72,25,202,122,44,14,72,25,202,122,44,13,72,25,202,122,44,12,72,25,202,122,44,11,72,25,202,122,44,10,72,25,202,122,44,9,72,25,202,122,44,8,72,25,202,122,44,7,72,25,202,122,44,6,72,25,202,122,44,5,72,25,202,122,44,4,72,25,202,122,44,3,72,25,202,122,44,2,72,25,202,122,44,1,72,25,202,122,44,0,72,25,202,122,44,-1,72,25,202,122,44,-2,72,25,202,122,44,-3,72,25,202,122,44,-4,72,25,202,122,44,-5,72,25,202,122,44,-6,72,25,202,122,44,-7,72,25,202,122,44,-8,72,25,202,122,44,-9,72,25,202,122,44,-10,72,25,202,122,44,-11,72,25,202,122,44,-12,72,25,202,122,44,-13,72,25,202,122,44,-14,72,25,202,122,44,-15,72,25,202,122,44,-16,72,25,202,122,44,-17,72,25,202,122,44,-18,72,25,202,122,44,-19,72,25,202,122,44,-20,72,25,202,122,44,-21,72,25,202,122,44,-22,72,25,202,122,44,-23,72,25,202,122,44,-24,72,25,202,122,44,-25,72,25,202,122,44,-26,72,25,202,122,44,-27,72,25,202,122,44,72,71,25,202,122,44,-27,71,25,202,122,44,72,70,25,202,122,44,-27,70,25,202,122,44,72,69,25,202,122,44,-27,69,25,202,122,44,72,68,25,202,122,44,-27,68,25,202,122,44,72,67,25,202,122,44,-27,67,25,202,122,44,72,66,25,202,122,44,-27,66,25,202,122,44,72,65,25,202,122,44,-27,65,25,202,122,44,72,64,25,202,122,44,-27,64,25,202,122,44,72,63,25,202,122,44,-27,63,25,202,122,44,72,62,25,202,122,44,-27,62,25,202,122,44,72,61,25,202,122,44,-27,61,25,202,122,44,72,60,25,202,122,44,-27,60,25,202,122,44,72,59,25,202,122,44,-27,59,25,202,122,44,72,58,25,202,122,44,-27,58,25,202,122,44,72,57,25,202,122,44,-27,57,25,202,122,44,72,56,25,202,122,44,-27,56,25,202,122,44,72,55,25,202,122,44,-27,55,25,202,122,44,72,54,25,202,122,44,-27,54,25,202,122,44,72,53,25,202,122,44,-27,53,25,202,122,44,72,52,25,202,122,44,-27,52,25,202,122,44,72,51,25,202,122,44,-27,51,25,202,122,44,72,50,25,202,122,44,-27,50,25,202,122,44,72,49,25,202,122,44,-27,49,25,202,122,44,72,48,25,202,122,44,-27,48,25,202,122,44,72,47,25,202,122,44,-27,47,25,202,122,44,72,46,25,202,122,44,-27,46,25,202,122,44,72,45,25,202,122,44,-27,45,25,202,122,44,72,44,25,202,122,44,-27,44,25,202,122,44,72,43,25,202,122,44,-27,43,25,202,122,44,72,42,25,202,122,44,-27,42,25,202,122,44,84,1,2,202,122,44,-39,2,2,202,122,44,72,41,25,202,122,44,-27,41,25,202,122,44,72,40,25,202,122,44,-27,40,25,202,122,44,72,39,25,202,122,44,-27,39,25,202,122,44,72,38,25,202,122,44,-27,38,25,202,122,44,72,37,25,202,122,44,-27,37,25,202,122,44,72,36,25,202,122,44,-27,36,25,202,122,44,72,35,25,202,122,44,-27,35,25,202,122,44,72,34,25,202,122,44,-27,34,25,202,122,44,72,33,25,202,122,44,-27,33,25,202,122,44,72,32,25,202,122,44,-27,32,25,202,122,44,72,31,25,202,122,44,-27,31,25,202,122,44,72,30,25,202,122,44,-27,30,25,202,122,44,72,29,25,202,122,44,-27,29,25,202,122,44,72,28,25,202,122,44,-27,28,25,202,122,44,72,27,25,202,122,44,-27,27,25,202,122,44,72,26,25,202,122,44,-27,26,25,202,122,44,72,25,25,202,122,44,-27,25,25,202,122,44,72,24,25,202,122,44,-27,24,25,202,122,44,72,23,25,202,122,44,-27,23,25,202,122,44,72,22,25,202,122,44,-27,22,25,202,122,44,72,21,25,202,122,44,-27,21,25,202,122,44,72,20,25,202,122,44,-27,20,25,202,122,44,72,19,25,202,122,44,-27,19,25,202,122,44,72,18,25,202,122,44,-27,18,25,202,122,44,72,17,25,202,122,44,-27,17,25,202,122,44,72,16,25,202,122,44,-27,16,25,202,122,44,72,15,25,202,122,44,-27,15,25,202,122,44,72,14,25,202,122,44,-27,14,25,202,122,44,72,13,25,202,122,44,-27,13,25,202,122,44,72,12,25,202,122,44,-27,12,25,202,122,44,72,11,25,202,122,44,-27,11,25,202,122,44,72,10,25,202,122,44,-27,10,25,202,122,44,72,9,25,202,122,44,-27,9,25,202,122,44,72,8,25,202,122,44,-27,8,25,202,122,44,72,7,25,202,122,44,-27,7,25,202,122,44,72,6,25,202,122,44,-27,6,25,202,122,44,72,5,25,202,122,44,-27,5,25,202,122,44,72,4,25,202,122,44,-27,4,25,202,122,44,72,3,25,202,122,44,-27,3,25,202,122,44,72,2,25,202,122,44,-27,2,25,202,122,44,72,1,25,202,122,44,-27,1,25,202,122,44,72,0,25,202,122,44,-27,0,25,202,122,44,72,-1,25,202,122,44,-27,-1,25,202,122,44,72,-2,25,202,122,44,-27,-2,25,202,122,44,72,-3,25,202,122,44,-27,-3,25,202,122,44,72,-4,25,202,122,44,-27,-4,25,202,122,44,72,-5,25,202,122,44,-27,-5,25,202,122,44,72,-6,25,202,122,44,-27,-6,25,202,122,44,72,-7,25,202,122,44,-27,-7,25,202,122,44,72,-8,25,202,122,44,-27,-8,25,202,122,44,72,-9,25,202,122,44,-27,-9,25,202,122,44,72,-10,25,202,122,44,-27,-10,25,202,122,44,72,-11,25,202,122,44,-27,-11,25,202,122,44,72,-12,25,202,122,44,-27,-12,25,202,122,44,72,-13,25,202,122,44,-27,-13,25,202,122,44,72,-14,25,202,122,44,-27,-14,25,202,122,44,72,-15,25,202,122,44,-27,-15,25,202,122,44,72,-16,25,202,122,44,-27,-16,25,202,122,44,72,-17,25,202,122,44,-27,-17,25,202,122,44,72,-18,25,202,122,44,-27,-18,25,202,122,44,72,-19,25,202,122,44,-27,-19,25,202,122,44,84,2,2,202,122,44,-39,3,2,202,122,44,72,-20,25,202,122,44,-27,-20,25,202,122,44,72,-21,25,202,122,44,-27,-21,25,202,122,44,72,-22,25,202,122,44,-27,-22,25,202,122,44,72,-23,25,202,122,44,-27,-23,25,202,122,44,72,-24,25,202,122,44,-27,-24,25,202,122,44,72,-25,25,202,122,44,-27,-25,25,202,122,44,72,-26,25,202,122,44,-27,-26,25,202,122,44,72,-27,25,202,122,44,71,-27,25,202,122,44,70,-27,25,202,122,44,69,-27,25,202,122,44,68,-27,25,202,122,44,67,-27,25,202,122,44,66,-27,25,202,122,44,65,-27,25,202,122,44,64,-27,25,202,122,44,63,-27,25,202,122,44,62,-27,25,202,122,44,61,-27,25,202,122,44,60,-27,25,202,122,44,59,-27,25,202,122,44,58,-27,25,202,122,44,57,-27,25,202,122,44,56,-27,25,202,122,44,55,-27,25,202,122,44,54,-27,25,202,122,44,53,-27,25,202,122,44,52,-27,25,202,122,44,51,-27,25,202,122,44,50,-27,25,202,122,44,49,-27,25,202,122,44,48,-27,25,202,122,44,47,-27,25,202,122,44,46,-27,25,202,122,44,45,-27,25,202,122,44,44,-27,25,202,122,44,43,-27,25,202,122,44,42,-27,25,202,122,44,41,-27,25,202,122,44,40,-27,25,202,122,44,39,-27,25,202,122,44,38,-27,25,202,122,44,37,-27,25,202,122,44,36,-27,25,202,122,44,35,-27,25,202,122,44,34,-27,25,202,122,44,33,-27,25,202,122,44,32,-27,25,202,122,44,31,-27,25,202,122,44,30,-27,25,202,122,44,29,-27,25,202,122,44,28,-27,25,202,122,44,27,-27,25,202,122,44,26,-27,25,202,122,44,25,-27,25,202,122,44,24,-27,25,202,122,44,23,-27,25,202,122,44,22,-27,25,202,122,44,21,-27,25,202,122,44,20,-27,25,202,122,44,19,-27,25,202,122,44,18,-27,25,202,122,44,17,-27,25,202,122,44,16,-27,25,202,122,44,15,-27,25,202,122,44,14,-27,25,202,122,44,13,-27,25,202,122,44,12,-27,25,202,122,44,11,-27,25,202,122,44,10,-27,25,202,122,44,9,-27,25,202,122,44,8,-27,25,202,122,44,7,-27,25,202,122,44,6,-27,25,202,122,44,5,-27,25,202,122,44,4,-27,25,202,122,44,3,-27,25,202,122,44,2,-27,25,202,122,44,1,-27,25,202,122,44,0,-27,25,202,122,44,-1,-27,25,202,122,44,-2,-27,25,202,122,44,-3,-27,25,202,122,44,-4,-27,25,202,122,44,-5,-27,25,202,122,44,-6,-27,25,202,122,44,-7,-27,25,202,122,44,-8,-27,25,202,122,44,-9,-27,25,202,122,44,-10,-27,25,202,122,44,-11,-27,25,202,122,44,-12,-27,25,202,122,44,-13,-27,25,202,122,44,-14,-27,25,202,122,44,-15,-27,25,202,122,44,-16,-27,25,202,122,44,-17,-27,25,202,122,44,-18,-27,25,202,122,44,-19,-27,25,202,122,44,-20,-27,25,202,122,44,-21,-27,25,202,122,44,-22,-27,25,202,122,44,-23,-27,25,202,122,44,-24,-27,25,202,122,44,-25,-27,25,202,122,44,-26,-27,25,202,122,44,-27,-27,25,202,122,44,73,73,24,202,122,44,72,73,24,202,122,44,71,73,24,202,122,44,70,73,24,202,122,44,69,73,24,202,122,44,68,73,24,202,122,44,67,73,24,202,122,44,66,73,24,202,122,44,84,3,2,202,122,44,-39,4,2,202,122,44,65,73,24,202,122,44,64,73,24,202,122,44,63,73,24,202,122,44,62,73,24,202,122,44,61,73,24,202,122,44,60,73,24,202,122,44,59,73,24,202,122,44,58,73,24,202,122,44,57,73,24,202,122,44,56,73,24,202,122,44,55,73,24,202,122,44,54,73,24,202,122,44,53,73,24,202,122,44,52,73,24,202,122,44,51,73,24,202,122,44,50,73,24,202,122,44,49,73,24,202,122,44,48,73,24,202,122,44,47,73,24,202,122,44,46,73,24,202,122,44,45,73,24,202,122,44,44,73,24,202,122,44,43,73,24,202,122,44,42,73,24,202,122,44,41,73,24,202,122,44,40,73,24,202,122,44,39,73,24,202,122,44,38,73,24,202,122,44,37,73,24,202,122,44,36,73,24,202,122,44,35,73,24,202,122,44,34,73,24,202,122,44,33,73,24,202,122,44,32,73,24,202,122,44,31,73,24,202,122,44,30,73,24,202,122,44,29,73,24,202,122,44,28,73,24,202,122,44,27,73,24,202,122,44,26,73,24,202,122,44,25,73,24,202,122,44,24,73,24,202,122,44,23,73,24,202,122,44,22,73,24,202,122,44,21,73,24,202,122,44,20,73,24,202,122,44,19,73,24,202,122,44,18,73,24,202,122,44,17,73,24,202,122,44,16,73,24,202,122,44,15,73,24,202,122,44,14,73,24,202,122,44,13,73,24,202,122,44,12,73,24,202,122,44,11,73,24,202,122,44,10,73,24,202,122,44,9,73,24,202,122,44,8,73,24,202,122,44,7,73,24,202,122,44,6,73,24,202,122,44,5,73,24,202,122,44,4,73,24,202,122,44,3,73,24,202,122,44,2,73,24,202,122,44,1,73,24,202,122,44,0,73,24,202,122,44,-1,73,24,202,122,44,-2,73,24,202,122,44,-3,73,24,202,122,44,-4,73,24,202,122,44,-5,73,24,202,122,44,-6,73,24,202,122,44,-7,73,24,202,122,44,-8,73,24,202,122,44,-9,73,24,202,122,44,-10,73,24,202,122,44,-11,73,24,202,122,44,-12,73,24,202,122,44,-13,73,24,202,122,44,-14,73,24,202,122,44,-15,73,24,202,122,44,-16,73,24,202,122,44,-17,73,24,202,122,44,-18,73,24,202,122,44,-19,73,24,202,122,44,-20,73,24,202,122,44,-21,73,24,202,122,44,-22,73,24,202,122,44,-23,73,24,202,122,44,-24,73,24,202,122,44,-25,73,24,202,122,44,-26,73,24,202,122,44,-27,73,24,202,122,44,-28,73,24,202,122,44,73,72,24,202,122,44,-28,72,24,202,122,44,73,71,24,202,122,44,-28,71,24,202,122,44,73,70,24,202,122,44,-28,70,24,202,122,44,73,69,24,202,122,44,-28,69,24,202,122,44,73,68,24,202,122,44,-28,68,24,202,122,44,73,67,24,202,122,44,-28,67,24,202,122,44,73,66,24,202,122,44,-28,66,24,202,122,44,73,65,24,202,122,44,-28,65,24,202,122,44,73,64,24,202,122,44,-28,64,24,202,122,44,73,63,24,202,122,44,-28,63,24,202,122,44,73,62,24,202,122,44,-28,62,24,202,122,44,73,61,24,202,122,44,-28,61,24,202,122,44,73,60,24,202,122,44,-28,60,24,202,122,44,73,59,24,202,122,44,-28,59,24,202,122,44,84,4,2,202,122,44,-39,5,2,202,122,44,73,58,24,202,122,44,-28,58,24,202,122,44,73,57,24,202,122,44,-28,57,24,202,122,44,73,56,24,202,122,44,-28,56,24,202,122,44,73,55,24,202,122,44,-28,55,24,202,122,44,73,54,24,202,122,44,-28,54,24,202,122,44,73,53,24,202,122,44,-28,53,24,202,122,44,73,52,24,202,122,44,-28,52,24,202,122,44,73,51,24,202,122,44,-28,51,24,202,122,44,73,50,24,202,122,44,-28,50,24,202,122,44,73,49,24,202,122,44,-28,49,24,202,122,44,73,48,24,202,122,44,-28,48,24,202,122,44,73,47,24,202,122,44,-28,47,24,202,122,44,73,46,24,202,122,44,-28,46,24,202,122,44,73,45,24,202,122,44,-28,45,24,202,122,44,73,44,24,202,122,44,-28,44,24,202,122,44,73,43,24,202,122,44,-28,43,24,202,122,44,73,42,24,202,122,44,-28,42,24,202,122,44,73,41,24,202,122,44,-28,41,24,202,122,44,73,40,24,202,122,44,-28,40,24,202,122,44,73,39,24,202,122,44,-28,39,24,202,122,44,73,38,24,202,122,44,-28,38,24,202,122,44,73,37,24,202,122,44,-28,37,24,202,122,44,73,36,24,202,122,44,-28,36,24,202,122,44,73,35,24,202,122,44,-28,35,24,202,122,44,73,34,24,202,122,44,-28,34,24,202,122,44,73,33,24,202,122,44,-28,33,24,202,122,44,73,32,24,202,122,44,-28,32,24,202,122,44,73,31,24,202,122,44,-28,31,24,202,122,44,73,30,24,202,122,44,-28,30,24,202,122,44,73,29,24,202,122,44,-28,29,24,202,122,44,73,28,24,202,122,44,-28,28,24,202,122,44,73,27,24,202,122,44,-28,27,24,202,122,44,73,26,24,202,122,44,-28,26,24,202,122,44,73,25,24,202,122,44,-28,25,24,202,122,44,73,24,24,202,122,44,-28,24,24,202,122,44,73,23,24,202,122,44,-28,23,24,202,122,44,73,22,24,202,122,44,-28,22,24,202,122,44,73,21,24,202,122,44,-28,21,24,202,122,44,73,20,24,202,122,44,-28,20,24,202,122,44,73,19,24,202,122,44,-28,19,24,202,122,44,73,18,24,202,122,44,-28,18,24,202,122,44,73,17,24,202,122,44,-28,17,24,202,122,44,73,16,24,202,122,44,-28,16,24,202,122,44,73,15,24,202,122,44,-28,15,24,202,122,44,73,14,24,202,122,44,-28,14,24,202,122,44,73,13,24,202,122,44,-28,13,24,202,122,44,73,12,24,202,122,44,-28,12,24,202,122,44,73,11,24,202,122,44,-28,11,24,202,122,44,73,10,24,202,122,44,-28,10,24,202,122,44,73,9,24,202,122,44,-28,9,24,202,122,44,73,8,24,202,122,44,-28,8,24,202,122,44,73,7,24,202,122,44,-28,7,24,202,122,44,73,6,24,202,122,44,-28,6,24,202,122,44,73,5,24,202,122,44,-28,5,24,202,122,44,73,4,24,202,122,44,-28,4,24,202,122,44,73,3,24,202,122,44,-28,3,24,202,122,44,73,2,24,202,122,44,-28,2,24,202,122,44,73,1,24,202,122,44,-28,1,24,202,122,44,73,0,24,202,122,44,-28,0,24,202,122,44,73,-1,24,202,122,44,-28,-1,24,202,122,44,73,-2,24,202,122,44,-28,-2,24,202,122,44,84,5,2,202,122,44,-39,6,2,202,122,44,73,-3,24,202,122,44,-28,-3,24,202,122,44,73,-4,24,202,122,44,-28,-4,24,202,122,44,73,-5,24,202,122,44,-28,-5,24,202,122,44,73,-6,24,202,122,44,-28,-6,24,202,122,44,73,-7,24,202,122,44,-28,-7,24,202,122,44,73,-8,24,202,122,44,-28,-8,24,202,122,44,73,-9,24,202,122,44,-28,-9,24,202,122,44,73,-10,24,202,122,44,-28,-10,24,202,122,44,73,-11,24,202,122,44,-28,-11,24,202,122,44,73,-12,24,202,122,44,-28,-12,24,202,122,44,73,-13,24,202,122,44,-28,-13,24,202,122,44,73,-14,24,202,122,44,-28,-14,24,202,122,44,73,-15,24,202,122,44,-28,-15,24,202,122,44,73,-16,24,202,122,44,-28,-16,24,202,122,44,73,-17,24,202,122,44,-28,-17,24,202,122,44,73,-18,24,202,122,44,-28,-18,24,202,122,44,73,-19,24,202,122,44,-28,-19,24,202,122,44,73,-20,24,202,122,44,-28,-20,24,202,122,44,73,-21,24,202,122,44,-28,-21,24,202,122,44,73,-22,24,202,122,44,-28,-22,24,202,122,44,73,-23,24,202,122,44,-28,-23,24,202,122,44,73,-24,24,202,122,44,-28,-24,24,202,122,44,73,-25,24,202,122,44,-28,-25,24,202,122,44,73,-26,24,202,122,44,-28,-26,24,202,122,44,73,-27,24,202,122,44,-28,-27,24,202,122,44,73,-28,24,202,122,44,72,-28,24,202,122,44,71,-28,24,202,122,44,70,-28,24,202,122,44,69,-28,24,202,122,44,68,-28,24,202,122,44,67,-28,24,202,122,44,66,-28,24,202,122,44,65,-28,24,202,122,44,64,-28,24,202,122,44,63,-28,24,202,122,44,62,-28,24,202,122,44,61,-28,24,202,122,44,60,-28,24,202,122,44,59,-28,24,202,122,44,58,-28,24,202,122,44,57,-28,24,202,122,44,56,-28,24,202,122,44,55,-28,24,202,122,44,54,-28,24,202,122,44,53,-28,24,202,122,44,52,-28,24,202,122,44,51,-28,24,202,122,44,50,-28,24,202,122,44,49,-28,24,202,122,44,48,-28,24,202,122,44,47,-28,24,202,122,44,46,-28,24,202,122,44,45,-28,24,202,122,44,44,-28,24,202,122,44,43,-28,24,202,122,44,42,-28,24,202,122,44,41,-28,24,202,122,44,40,-28,24,202,122,44,39,-28,24,202,122,44,38,-28,24,202,122,44,37,-28,24,202,122,44,36,-28,24,202,122,44,35,-28,24,202,122,44,34,-28,24,202,122,44,33,-28,24,202,122,44,32,-28,24,202,122,44,31,-28,24,202,122,44,30,-28,24,202,122,44,29,-28,24,202,122,44,28,-28,24,202,122,44,27,-28,24,202,122,44,26,-28,24,202,122,44,25,-28,24,202,122,44,24,-28,24,202,122,44,23,-28,24,202,122,44,22,-28,24,202,122,44,21,-28,24,202,122,44,20,-28,24,202,122,44,19,-28,24,202,122,44,18,-28,24,202,122,44,17,-28,24,202,122,44,16,-28,24,202,122,44,15,-28,24,202,122,44,14,-28,24,202,122,44,13,-28,24,202,122,44,12,-28,24,202,122,44,11,-28,24,202,122,44,10,-28,24,202,122,44,9,-28,24,202,122,44,8,-28,24,202,122,44,7,-28,24,202,122,44,6,-28,24,202,122,44,5,-28,24,202,122,44,4,-28,24,202,122,44,3,-28,24,202,122,44,2,-28,24,202,122,44,84,6,2,202,122,44,-39,7,2,202,122,44,1,-28,24,202,122,44,0,-28,24,202,122,44,-1,-28,24,202,122,44,-2,-28,24,202,122,44,-3,-28,24,202,122,44,-4,-28,24,202,122,44,-5,-28,24,202,122,44,-6,-28,24,202,122,44,-7,-28,24,202,122,44,-8,-28,24,202,122,44,-9,-28,24,202,122,44,-10,-28,24,202,122,44,-11,-28,24,202,122,44,-12,-28,24,202,122,44,-13,-28,24,202,122,44,-14,-28,24,202,122,44,-15,-28,24,202,122,44,-16,-28,24,202,122,44,-17,-28,24,202,122,44,-18,-28,24,202,122,44,-19,-28,24,202,122,44,-20,-28,24,202,122,44,-21,-28,24,202,122,44,-22,-28,24,202,122,44,-23,-28,24,202,122,44,-24,-28,24,202,122,44,-25,-28,24,202,122,44,-26,-28,24,202,122,44,-27,-28,24,202,122,44,-28,-28,24,202,122,44,73,73,23,202,122,44,72,73,23,202,122,44,71,73,23,202,122,44,70,73,23,202,122,44,69,73,23,202,122,44,68,73,23,202,122,44,67,73,23,202,122,44,66,73,23,202,122,44,65,73,23,202,122,44,64,73,23,202,122,44,63,73,23,202,122,44,62,73,23,202,122,44,61,73,23,202,122,44,60,73,23,202,122,44,59,73,23,202,122,44,58,73,23,202,122,44,57,73,23,202,122,44,56,73,23,202,122,44,55,73,23,202,122,44,54,73,23,202,122,44,53,73,23,202,122,44,52,73,23,202,122,44,51,73,23,202,122,44,50,73,23,202,122,44,49,73,23,202,122,44,48,73,23,202,122,44,47,73,23,202,122,44,46,73,23,202,122,44,45,73,23,202,122,44,44,73,23,202,122,44,43,73,23,202,122,44,42,73,23,202,122,44,41,73,23,202,122,44,40,73,23,202,122,44,39,73,23,202,122,44,38,73,23,202,122,44,37,73,23,202,122,44,36,73,23,202,122,44,35,73,23,202,122,44,34,73,23,202,122,44,33,73,23,202,122,44,32,73,23,202,122,44,31,73,23,202,122,44,30,73,23,202,122,44,29,73,23,202,122,44,28,73,23,202,122,44,27,73,23,202,122,44,26,73,23,202,122,44,25,73,23,202,122,44,24,73,23,202,122,44,23,73,23,202,122,44,22,73,23,202,122,44,21,73,23,202,122,44,20,73,23,202,122,44,19,73,23,202,122,44,18,73,23,202,122,44,17,73,23,202,122,44,16,73,23,202,122,44,15,73,23,202,122,44,14,73,23,202,122,44,13,73,23,202,122,44,12,73,23,202,122,44,11,73,23,202,122,44,10,73,23,202,122,44,9,73,23,202,122,44,8,73,23,202,122,44,7,73,23,202,122,44,6,73,23,202,122,44,5,73,23,202,122,44,4,73,23,202,122,44,3,73,23,202,122,44,2,73,23,202,122,44,1,73,23,202,122,44,0,73,23,202,122,44,-1,73,23,202,122,44,-2,73,23,202,122,44,-3,73,23,202,122,44,-4,73,23,202,122,44,-5,73,23,202,122,44,-6,73,23,202,122,44,-7,73,23,202,122,44,-8,73,23,202,122,44,-9,73,23,202,122,44,-10,73,23,202,122,44,-11,73,23,202,122,44,-12,73,23,202,122,44,-13,73,23,202,122,44,-14,73,23,202,122,44,-15,73,23,202,122,44,-16,73,23,202,122,44,-17,73,23,202,122,44,-18,73,23,202,122,44,84,7,2,202,122,44,-39,8,2,202,122,44,-19,73,23,202,122,44,-20,73,23,202,122,44,-21,73,23,202,122,44,-22,73,23,202,122,44,-23,73,23,202,122,44,-24,73,23,202,122,44,-25,73,23,202,122,44,-26,73,23,202,122,44,-27,73,23,202,122,44,-28,73,23,202,122,44,73,72,23,202,122,44,-28,72,23,202,122,44,73,71,23,202,122,44,-28,71,23,202,122,44,73,70,23,202,122,44,-28,70,23,202,122,44,73,69,23,202,122,44,-28,69,23,202,122,44,73,68,23,202,122,44,-28,68,23,202,122,44,73,67,23,202,122,44,-28,67,23,202,122,44,73,66,23,202,122,44,-28,66,23,202,122,44,73,65,23,202,122,44,-28,65,23,202,122,44,73,64,23,202,122,44,-28,64,23,202,122,44,73,63,23,202,122,44,-28,63,23,202,122,44,73,62,23,202,122,44,-28,62,23,202,122,44,73,61,23,202,122,44,-28,61,23,202,122,44,73,60,23,202,122,44,-28,60,23,202,122,44,73,59,23,202,122,44,-28,59,23,202,122,44,73,58,23,202,122,44,-28,58,23,202,122,44,73,57,23,202,122,44,-28,57,23,202,122,44,73,56,23,202,122,44,-28,56,23,202,122,44,73,55,23,202,122,44,-28,55,23,202,122,44,73,54,23,202,122,44,-28,54,23,202,122,44,73,53,23,202,122,44,-28,53,23,202,122,44,73,52,23,202,122,44,-28,52,23,202,122,44,73,51,23,202,122,44,-28,51,23,202,122,44,73,50,23,202,122,44,-28,50,23,202,122,44,73,49,23,202,122,44,-28,49,23,202,122,44,73,48,23,202,122,44,-28,48,23,202,122,44,73,47,23,202,122,44,-28,47,23,202,122,44,73,46,23,202,122,44,-28,46,23,202,122,44,73,45,23,202,122,44,-28,45,23,202,122,44,73,44,23,202,122,44,-28,44,23,202,122,44,73,43,23,202,122,44,-28,43,23,202,122,44,73,42,23,202,122,44,-28,42,23,202,122,44,73,41,23,202,122,44,-28,41,23,202,122,44,73,40,23,202,122,44,-28,40,23,202,122,44,73,39,23,202,122,44,-28,39,23,202,122,44,73,38,23,202,122,44,-28,38,23,202,122,44,73,37,23,202,122,44,-28,37,23,202,122,44,73,36,23,202,122,44,-28,36,23,202,122,44,73,35,23,202,122,44,-28,35,23,202,122,44,73,34,23,202,122,44,-28,34,23,202,122,44,73,33,23,202,122,44,-28,33,23,202,122,44,73,32,23,202,122,44,-28,32,23,202,122,44,73,31,23,202,122,44,-28,31,23,202,122,44,73,30,23,202,122,44,-28,30,23,202,122,44,73,29,23,202,122,44,-28,29,23,202,122,44,73,28,23,202,122,44,-28,28,23,202,122,44,73,27,23,202,122,44,-28,27,23,202,122,44,73,26,23,202,122,44,-28,26,23,202,122,44,73,25,23,202,122,44,-28,25,23,202,122,44,73,24,23,202,122,44,-28,24,23,202,122,44,73,23,23,202,122,44,-28,23,23,202,122,44,73,22,23,202,122,44,-28,22,23,202,122,44,73,21,23,202,122,44,-28,21,23,202,122,44,73,20,23,202,122,44,-28,20,23,202,122,44,73,19,23,202,122,44,-28,19,23,202,122,44,73,18,23,202,122,44,-28,18,23,202,122,44,73,17,23,202,122,44,-28,17,23,202,122,44,84,8,2,202,122,44,-39,9,2,202,122,44,73,16,23,202,122,44,-28,16,23,202,122,44,73,15,23,202,122,44,-28,15,23,202,122,44,73,14,23,202,122,44,-28,14,23,202,122,44,73,13,23,202,122,44,-28,13,23,202,122,44,73,12,23,202,122,44,-28,12,23,202,122,44,73,11,23,202,122,44,-28,11,23,202,122,44,73,10,23,202,122,44,-28,10,23,202,122,44,73,9,23,202,122,44,-28,9,23,202,122,44,73,8,23,202,122,44,-28,8,23,202,122,44,73,7,23,202,122,44,-28,7,23,202,122,44,73,6,23,202,122,44,-28,6,23,202,122,44,73,5,23,202,122,44,-28,5,23,202,122,44,73,4,23,202,122,44,-28,4,23,202,122,44,73,3,23,202,122,44,-28,3,23,202,122,44,73,2,23,202,122,44,-28,2,23,202,122,44,73,1,23,202,122,44,-28,1,23,202,122,44,73,0,23,202,122,44,-28,0,23,202,122,44,73,-1,23,202,122,44,-28,-1,23,202,122,44,73,-2,23,202,122,44,-28,-2,23,202,122,44,73,-3,23,202,122,44,-28,-3,23,202,122,44,73,-4,23,202,122,44,-28,-4,23,202,122,44,73,-5,23,202,122,44,-28,-5,23,202,122,44,73,-6,23,202,122,44,-28,-6,23,202,122,44,73,-7,23,202,122,44,-28,-7,23,202,122,44,73,-8,23,202,122,44,-28,-8,23,202,122,44,73,-9,23,202,122,44,-28,-9,23,202,122,44,73,-10,23,202,122,44,-28,-10,23,202,122,44,73,-11,23,202,122,44,-28,-11,23,202,122,44,73,-12,23,202,122,44,-28,-12,23,202,122,44,73,-13,23,202,122,44,-28,-13,23,202,122,44,73,-14,23,202,122,44,-28,-14,23,202,122,44,73,-15,23,202,122,44,-28,-15,23,202,122,44,73,-16,23,202,122,44,-28,-16,23,202,122,44,73,-17,23,202,122,44,-28,-17,23,202,122,44,73,-18,23,202,122,44,-28,-18,23,202,122,44,73,-19,23,202,122,44,-28,-19,23,202,122,44,73,-20,23,202,122,44,-28,-20,23,202,122,44,73,-21,23,202,122,44,-28,-21,23,202,122,44,73,-22,23,202,122,44,-28,-22,23,202,122,44,73,-23,23,202,122,44,-28,-23,23,202,122,44,73,-24,23,202,122,44,-28,-24,23,202,122,44,73,-25,23,202,122,44,-28,-25,23,202,122,44,73,-26,23,202,122,44,-28,-26,23,202,122,44,73,-27,23,202,122,44,-28,-27,23,202,122,44,73,-28,23,202,122,44,72,-28,23,202,122,44,71,-28,23,202,122,44,70,-28,23,202,122,44,69,-28,23,202,122,44,68,-28,23,202,122,44,67,-28,23,202,122,44,66,-28,23,202,122,44,65,-28,23,202,122,44,64,-28,23,202,122,44,63,-28,23,202,122,44,62,-28,23,202,122,44,61,-28,23,202,122,44,60,-28,23,202,122,44,59,-28,23,202,122,44,58,-28,23,202,122,44,57,-28,23,202,122,44,56,-28,23,202,122,44,55,-28,23,202,122,44,54,-28,23,202,122,44,53,-28,23,202,122,44,52,-28,23,202,122,44,51,-28,23,202,122,44,50,-28,23,202,122,44,49,-28,23,202,122,44,48,-28,23,202,122,44,47,-28,23,202,122,44,46,-28,23,202,122,44,45,-28,23,202,122,44,44,-28,23,202,122,44,43,-28,23,202,122,44,42,-28,23,202,122,44,41,-28,23,202,122,44,40,-28,23,202,122,44,84,9,2,202,122,44,-39,10,2,202,122,44,39,-28,23,202,122,44,38,-28,23,202,122,44,37,-28,23,202,122,44,36,-28,23,202,122,44,35,-28,23,202,122,44,34,-28,23,202,122,44,33,-28,23,202,122,44,32,-28,23,202,122,44,31,-28,23,202,122,44,30,-28,23,202,122,44,29,-28,23,202,122,44,28,-28,23,202,122,44,27,-28,23,202,122,44,26,-28,23,202,122,44,25,-28,23,202,122,44,24,-28,23,202,122,44,23,-28,23,202,122,44,22,-28,23,202,122,44,21,-28,23,202,122,44,20,-28,23,202,122,44,19,-28,23,202,122,44,18,-28,23,202,122,44,17,-28,23,202,122,44,16,-28,23,202,122,44,15,-28,23,202,122,44,14,-28,23,202,122,44,13,-28,23,202,122,44,12,-28,23,202,122,44,11,-28,23,202,122,44,10,-28,23,202,122,44,9,-28,23,202,122,44,8,-28,23,202,122,44,7,-28,23,202,122,44,6,-28,23,202,122,44,5,-28,23,202,122,44,4,-28,23,202,122,44,3,-28,23,202,122,44,2,-28,23,202,122,44,1,-28,23,202,122,44,0,-28,23,202,122,44,-1,-28,23,202,122,44,-2,-28,23,202,122,44,-3,-28,23,202,122,44,-4,-28,23,202,122,44,-5,-28,23,202,122,44,-6,-28,23,202,122,44,-7,-28,23,202,122,44,-8,-28,23,202,122,44,-9,-28,23,202,122,44,-10,-28,23,202,122,44,-11,-28,23,202,122,44,-12,-28,23,202,122,44,-13,-28,23,202,122,44,-14,-28,23,202,122,44,-15,-28,23,202,122,44,-16,-28,23,202,122,44,-17,-28,23,202,122,44,-18,-28,23,202,122,44,-19,-28,23,202,122,44,-20,-28,23,202,122,44,-21,-28,23,202,122,44,-22,-28,23,202,122,44,-23,-28,23,202,122,44,-24,-28,23,202,122,44,-25,-28,23,202,122,44,-26,-28,23,202,122,44,-27,-28,23,202,122,44,-28,-28,23,202,122,44,74,74,22,202,122,44,73,74,22,202,122,44,72,74,22,202,122,44,71,74,22,202,122,44,70,74,22,202,122,44,69,74,22,202,122,44,68,74,22,202,122,44,67,74,22,202,122,44,66,74,22,202,122,44,65,74,22,202,122,44,64,74,22,202,122,44,63,74,22,202,122,44,62,74,22,202,122,44,61,74,22,202,122,44,60,74,22,202,122,44,59,74,22,202,122,44,58,74,22,202,122,44,57,74,22,202,122,44,56,74,22,202,122,44,55,74,22,202,122,44,54,74,22,202,122,44,53,74,22,202,122,44,52,74,22,202,122,44,51,74,22,202,122,44,50,74,22,202,122,44,49,74,22,202,122,44,48,74,22,202,122,44,47,74,22,202,122,44,46,74,22,202,122,44,45,74,22,202,122,44,44,74,22,202,122,44,43,74,22,202,122,44,42,74,22,202,122,44,41,74,22,202,122,44,40,74,22,202,122,44,39,74,22,202,122,44,38,74,22,202,122,44,37,74,22,202,122,44,36,74,22,202,122,44,35,74,22,202,122,44,34,74,22,202,122,44,33,74,22,202,122,44,32,74,22,202,122,44,31,74,22,202,122,44,30,74,22,202,122,44,29,74,22,202,122,44,28,74,22,202,122,44,27,74,22,202,122,44,26,74,22,202,122,44,25,74,22,202,122,44,24,74,22,202,122,44,23,74,22,202,122,44,22,74,22,202,122,44,21,74,22,202,122,44,84,10,2,202,122,44,-39,11,2,202,122,44,20,74,22,202,122,44,19,74,22,202,122,44,18,74,22,202,122,44,17,74,22,202,122,44,16,74,22,202,122,44,15,74,22,202,122,44,14,74,22,202,122,44,13,74,22,202,122,44,12,74,22,202,122,44,11,74,22,202,122,44,10,74,22,202,122,44,9,74,22,202,122,44,8,74,22,202,122,44,7,74,22,202,122,44,6,74,22,202,122,44,5,74,22,202,122,44,4,74,22,202,122,44,3,74,22,202,122,44,2,74,22,202,122,44,1,74,22,202,122,44,0,74,22,202,122,44,-1,74,22,202,122,44,-2,74,22,202,122,44,-3,74,22,202,122,44,-4,74,22,202,122,44,-5,74,22,202,122,44,-6,74,22,202,122,44,-7,74,22,202,122,44,-8,74,22,202,122,44,-9,74,22,202,122,44,-10,74,22,202,122,44,-11,74,22,202,122,44,-12,74,22,202,122,44,-13,74,22,202,122,44,-14,74,22,202,122,44,-15,74,22,202,122,44,-16,74,22,202,122,44,-17,74,22,202,122,44,-18,74,22,202,122,44,-19,74,22,202,122,44,-20,74,22,202,122,44,-21,74,22,202,122,44,-22,74,22,202,122,44,-23,74,22,202,122,44,-24,74,22,202,122,44,-25,74,22,202,122,44,-26,74,22,202,122,44,-27,74,22,202,122,44,-28,74,22,202,122,44,-29,74,22,202,122,44,74,73,22,202,122,44,-29,73,22,202,122,44,74,72,22,202,122,44,-29,72,22,202,122,44,74,71,22,202,122,44,-29,71,22,202,122,44,74,70,22,202,122,44,-29,70,22,202,122,44,74,69,22,202,122,44,-29,69,22,202,122,44,74,68,22,202,122,44,-29,68,22,202,122,44,74,67,22,202,122,44,-29,67,22,202,122,44,74,66,22,202,122,44,-29,66,22,202,122,44,74,65,22,202,122,44,-29,65,22,202,122,44,74,64,22,202,122,44,-29,64,22,202,122,44,74,63,22,202,122,44,-29,63,22,202,122,44,74,62,22,202,122,44,-29,62,22,202,122,44,74,61,22,202,122,44,-29,61,22,202,122,44,74,60,22,202,122,44,-29,60,22,202,122,44,74,59,22,202,122,44,-29,59,22,202,122,44,74,58,22,202,122,44,-29,58,22,202,122,44,74,57,22,202,122,44,-29,57,22,202,122,44,74,56,22,202,122,44,-29,56,22,202,122,44,74,55,22,202,122,44,-29,55,22,202,122,44,74,54,22,202,122,44,-29,54,22,202,122,44,74,53,22,202,122,44,-29,53,22,202,122,44,74,52,22,202,122,44,-29,52,22,202,122,44,74,51,22,202,122,44,-29,51,22,202,122,44,74,50,22,202,122,44,-29,50,22,202,122,44,74,49,22,202,122,44,-29,49,22,202,122,44,74,48,22,202,122,44,-29,48,22,202,122,44,74,47,22,202,122,44,-29,47,22,202,122,44,74,46,22,202,122,44,-29,46,22,202,122,44,74,45,22,202,122,44,-29,45,22,202,122,44,74,44,22,202,122,44,-29,44,22,202,122,44,74,43,22,202,122,44,-29,43,22,202,122,44,74,42,22,202,122,44,-29,42,22,202,122,44,74,41,22,202,122,44,-29,41,22,202,122,44,74,40,22,202,122,44,-29,40,22,202,122,44,74,39,22,202,122,44,-29,39,22,202,122,44,74,38,22,202,122,44,-29,38,22,202,122,44,84,11,2,202,122,44,-39,12,2,202,122,44,74,37,22,202,122,44,-29,37,22,202,122,44,74,36,22,202,122,44,-29,36,22,202,122,44,74,35,22,202,122,44,-29,35,22,202,122,44,74,34,22,202,122,44,-29,34,22,202,122,44,74,33,22,202,122,44,-29,33,22,202,122,44,74,32,22,202,122,44,-29,32,22,202,122,44,74,31,22,202,122,44,-29,31,22,202,122,44,74,30,22,202,122,44,-29,30,22,202,122,44,74,29,22,202,122,44,-29,29,22,202,122,44,74,28,22,202,122,44,-29,28,22,202,122,44,74,27,22,202,122,44,-29,27,22,202,122,44,74,26,22,202,122,44,-29,26,22,202,122,44,74,25,22,202,122,44,-29,25,22,202,122,44,74,24,22,202,122,44,-29,24,22,202,122,44,74,23,22,202,122,44,-29,23,22,202,122,44,74,22,22,202,122,44,-29,22,22,202,122,44,74,21,22,202,122,44,-29,21,22,202,122,44,74,20,22,202,122,44,-29,20,22,202,122,44,74,19,22,202,122,44,-29,19,22,202,122,44,74,18,22,202,122,44,-29,18,22,202,122,44,74,17,22,202,122,44,-29,17,22,202,122,44,74,16,22,202,122,44,-29,16,22,202,122,44,74,15,22,202,122,44,-29,15,22,202,122,44,74,14,22,202,122,44,-29,14,22,202,122,44,74,13,22,202,122,44,-29,13,22,202,122,44,74,12,22,202,122,44,-29,12,22,202,122,44,74,11,22,202,122,44,-29,11,22,202,122,44,74,10,22,202,122,44,-29,10,22,202,122,44,74,9,22,202,122,44,-29,9,22,202,122,44,74,8,22,202,122,44,-29,8,22,202,122,44,74,7,22,202,122,44,-29,7,22,202,122,44,74,6,22,202,122,44,-29,6,22,202,122,44,74,5,22,202,122,44,-29,5,22,202,122,44,74,4,22,202,122,44,-29,4,22,202,122,44,74,3,22,202,122,44,-29,3,22,202,122,44,74,2,22,202,122,44,-29,2,22,202,122,44,74,1,22,202,122,44,-29,1,22,202,122,44,74,0,22,202,122,44,-29,0,22,202,122,44,74,-1,22,202,122,44,-29,-1,22,202,122,44,74,-2,22,202,122,44,-29,-2,22,202,122,44,74,-3,22,202,122,44,-29,-3,22,202,122,44,74,-4,22,202,122,44,-29,-4,22,202,122,44,74,-5,22,202,122,44,-29,-5,22,202,122,44,74,-6,22,202,122,44,-29,-6,22,202,122,44,74,-7,22,202,122,44,-29,-7,22,202,122,44,74,-8,22,202,122,44,-29,-8,22,202,122,44,74,-9,22,202,122,44,-29,-9,22,202,122,44,74,-10,22,202,122,44,-29,-10,22,202,122,44,74,-11,22,202,122,44,-29,-11,22,202,122,44,74,-12,22,202,122,44,-29,-12,22,202,122,44,74,-13,22,202,122,44,-29,-13,22,202,122,44,74,-14,22,202,122,44,-29,-14,22,202,122,44,74,-15,22,202,122,44,-29,-15,22,202,122,44,74,-16,22,202,122,44,-29,-16,22,202,122,44,74,-17,22,202,122,44,-29,-17,22,202,122,44,74,-18,22,202,122,44,-29,-18,22,202,122,44,74,-19,22,202,122,44,-29,-19,22,202,122,44,74,-20,22,202,122,44,-29,-20,22,202,122,44,74,-21,22,202,122,44,-29,-21,22,202,122,44,74,-22,22,202,122,44,-29,-22,22,202,122,44,74,-23,22,202,122,44,-29,-23,22,202,122,44,84,12,2,202,122,44,-39,13,2,202,122,44,74,-24,22,202,122,44,-29,-24,22,202,122,44,74,-25,22,202,122,44,-29,-25,22,202,122,44,74,-26,22,202,122,44,-29,-26,22,202,122,44,74,-27,22,202,122,44,-29,-27,22,202,122,44,74,-28,22,202,122,44,-29,-28,22,202,122,44,74,-29,22,202,122,44,73,-29,22,202,122,44,72,-29,22,202,122,44,71,-29,22,202,122,44,70,-29,22,202,122,44,69,-29,22,202,122,44,68,-29,22,202,122,44,67,-29,22,202,122,44,66,-29,22,202,122,44,65,-29,22,202,122,44,64,-29,22,202,122,44,63,-29,22,202,122,44,62,-29,22,202,122,44,61,-29,22,202,122,44,60,-29,22,202,122,44,59,-29,22,202,122,44,58,-29,22,202,122,44,57,-29,22,202,122,44,56,-29,22,202,122,44,55,-29,22,202,122,44,54,-29,22,202,122,44,53,-29,22,202,122,44,52,-29,22,202,122,44,51,-29,22,202,122,44,50,-29,22,202,122,44,49,-29,22,202,122,44,48,-29,22,202,122,44,47,-29,22,202,122,44,46,-29,22,202,122,44,45,-29,22,202,122,44,44,-29,22,202,122,44,43,-29,22,202,122,44,42,-29,22,202,122,44,41,-29,22,202,122,44,40,-29,22,202,122,44,39,-29,22,202,122,44,38,-29,22,202,122,44,37,-29,22,202,122,44,36,-29,22,202,122,44,35,-29,22,202,122,44,34,-29,22,202,122,44,33,-29,22,202,122,44,32,-29,22,202,122,44,31,-29,22,202,122,44,30,-29,22,202,122,44,29,-29,22,202,122,44,28,-29,22,202,122,44,27,-29,22,202,122,44,26,-29,22,202,122,44,25,-29,22,202,122,44,24,-29,22,202,122,44,23,-29,22,202,122,44,22,-29,22,202,122,44,21,-29,22,202,122,44,20,-29,22,202,122,44,19,-29,22,202,122,44,18,-29,22,202,122,44,17,-29,22,202,122,44,16,-29,22,202,122,44,15,-29,22,202,122,44,14,-29,22,202,122,44,13,-29,22,202,122,44,12,-29,22,202,122,44,11,-29,22,202,122,44,10,-29,22,202,122,44,9,-29,22,202,122,44,8,-29,22,202,122,44,7,-29,22,202,122,44,6,-29,22,202,122,44,5,-29,22,202,122,44,4,-29,22,202,122,44,3,-29,22,202,122,44,2,-29,22,202,122,44,1,-29,22,202,122,44,0,-29,22,202,122,44,-1,-29,22,202,122,44,-2,-29,22,202,122,44,-3,-29,22,202,122,44,-4,-29,22,202,122,44,-5,-29,22,202,122,44,-6,-29,22,202,122,44,-7,-29,22,202,122,44,-8,-29,22,202,122,44,-9,-29,22,202,122,44,-10,-29,22,202,122,44,-11,-29,22,202,122,44,-12,-29,22,202,122,44,-13,-29,22,202,122,44,-14,-29,22,202,122,44,-15,-29,22,202,122,44,-16,-29,22,202,122,44,-17,-29,22,202,122,44,-18,-29,22,202,122,44,-19,-29,22,202,122,44,-20,-29,22,202,122,44,-21,-29,22,202,122,44,-22,-29,22,202,122,44,-23,-29,22,202,122,44,-24,-29,22,202,122,44,-25,-29,22,202,122,44,-26,-29,22,202,122,44,-27,-29,22,202,122,44,-28,-29,22,202,122,44,-29,-29,22,202,122,44,74,74,21,202,122,44,73,74,21,202,122,44,72,74,21,202,122,44,71,74,21,202,122,44,70,74,21,202,122,44,69,74,21,202,122,44,68,74,21,202,122,44,67,74,21,202,122,44,84,13,2,202,122,44,-39,14,2,202,122,44,66,74,21,202,122,44,65,74,21,202,122,44,64,74,21,202,122,44,63,74,21,202,122,44,62,74,21,202,122,44,61,74,21,202,122,44,60,74,21,202,122,44,59,74,21,202,122,44,58,74,21,202,122,44,57,74,21,202,122,44,56,74,21,202,122,44,55,74,21,202,122,44,54,74,21,202,122,44,53,74,21,202,122,44,52,74,21,202,122,44,51,74,21,202,122,44,50,74,21,202,122,44,49,74,21,202,122,44,48,74,21,202,122,44,47,74,21,202,122,44,46,74,21,202,122,44,45,74,21,202,122,44,44,74,21,202,122,44,43,74,21,202,122,44,42,74,21,202,122,44,41,74,21,202,122,44,40,74,21,202,122,44,39,74,21,202,122,44,38,74,21,202,122,44,37,74,21,202,122,44,36,74,21,202,122,44,35,74,21,202,122,44,34,74,21,202,122,44,33,74,21,202,122,44,32,74,21,202,122,44,31,74,21,202,122,44,30,74,21,202,122,44,29,74,21,202,122,44,28,74,21,202,122,44,27,74,21,202,122,44,26,74,21,202,122,44,25,74,21,202,122,44,24,74,21,202,122,44,23,74,21,202,122,44,22,74,21,202,122,44,21,74,21,202,122,44,20,74,21,202,122,44,19,74,21,202,122,44,18,74,21,202,122,44,17,74,21,202,122,44,16,74,21,202,122,44,15,74,21,202,122,44,14,74,21,202,122,44,13,74,21,202,122,44,12,74,21,202,122,44,11,74,21,202,122,44,10,74,21,202,122,44,9,74,21,202,122,44,8,74,21,202,122,44,7,74,21,202,122,44,6,74,21,202,122,44,5,74,21,202,122,44,4,74,21,202,122,44,3,74,21,202,122,44,2,74,21,202,122,44,1,74,21,202,122,44,0,74,21,202,122,44,-1,74,21,202,122,44,-2,74,21,202,122,44,-3,74,21,202,122,44,-4,74,21,202,122,44,-5,74,21,202,122,44,-6,74,21,202,122,44,-7,74,21,202,122,44,-8,74,21,202,122,44,-9,74,21,202,122,44,-10,74,21,202,122,44,-11,74,21,202,122,44,-12,74,21,202,122,44,-13,74,21,202,122,44,-14,74,21,202,122,44,-15,74,21,202,122,44,-16,74,21,202,122,44,-17,74,21,202,122,44,-18,74,21,202,122,44,-19,74,21,202,122,44,-20,74,21,202,122,44,-21,74,21,202,122,44,-22,74,21,202,122,44,-23,74,21,202,122,44,-24,74,21,202,122,44,-25,74,21,202,122,44,-26,74,21,202,122,44,-27,74,21,202,122,44,-28,74,21,202,122,44,-29,74,21,202,122,44,74,73,21,202,122,44,-29,73,21,202,122,44,74,72,21,202,122,44,-29,72,21,202,122,44,74,71,21,202,122,44,-29,71,21,202,122,44,74,70,21,202,122,44,-29,70,21,202,122,44,74,69,21,202,122,44,-29,69,21,202,122,44,74,68,21,202,122,44,-29,68,21,202,122,44,74,67,21,202,122,44,-29,67,21,202,122,44,74,66,21,202,122,44,-29,66,21,202,122,44,74,65,21,202,122,44,-29,65,21,202,122,44,74,64,21,202,122,44,-29,64,21,202,122,44,74,63,21,202,122,44,-29,63,21,202,122,44,74,62,21,202,122,44,-29,62,21,202,122,44,74,61,21,202,122,44,-29,61,21,202,122,44,84,14,2,202,122,44,-39,15,2,202,122,44,74,60,21,202,122,44,-29,60,21,202,122,44,74,59,21,202,122,44,-29,59,21,202,122,44,74,58,21,202,122,44,-29,58,21,202,122,44,74,57,21,202,122,44,-29,57,21,202,122,44,74,56,21,202,122,44,-29,56,21,202,122,44,74,55,21,202,122,44,-29,55,21,202,122,44,74,54,21,202,122,44,-29,54,21,202,122,44,74,53,21,202,122,44,-29,53,21,202,122,44,74,52,21,202,122,44,-29,52,21,202,122,44,74,51,21,202,122,44,-29,51,21,202,122,44,74,50,21,202,122,44,-29,50,21,202,122,44,74,49,21,202,122,44,-29,49,21,202,122,44,74,48,21,202,122,44,-29,48,21,202,122,44,74,47,21,202,122,44,-29,47,21,202,122,44,74,46,21,202,122,44,-29,46,21,202,122,44,74,45,21,202,122,44,-29,45,21,202,122,44,74,44,21,202,122,44,-29,44,21,202,122,44,74,43,21,202,122,44,-29,43,21,202,122,44,74,42,21,202,122,44,-29,42,21,202,122,44,74,41,21,202,122,44,-29,41,21,202,122,44,74,40,21,202,122,44,-29,40,21,202,122,44,74,39,21,202,122,44,-29,39,21,202,122,44,74,38,21,202,122,44,-29,38,21,202,122,44,74,37,21,202,122,44,-29,37,21,202,122,44,74,36,21,202,122,44,-29,36,21,202,122,44,74,35,21,202,122,44,-29,35,21,202,122,44,74,34,21,202,122,44,-29,34,21,202,122,44,74,33,21,202,122,44,-29,33,21,202,122,44,74,32,21,202,122,44,-29,32,21,202,122,44,74,31,21,202,122,44,-29,31,21,202,122,44,74,30,21,202,122,44,-29,30,21,202,122,44,74,29,21,202,122,44,-29,29,21,202,122,44,74,28,21,202,122,44,-29,28,21,202,122,44,74,27,21,202,122,44,-29,27,21,202,122,44,74,26,21,202,122,44,-29,26,21,202,122,44,74,25,21,202,122,44,-29,25,21,202,122,44,74,24,21,202,122,44,-29,24,21,202,122,44,74,23,21,202,122,44,-29,23,21,202,122,44,74,22,21,202,122,44,-29,22,21,202,122,44,74,21,21,202,122,44,-29,21,21,202,122,44,74,20,21,202,122,44,-29,20,21,202,122,44,74,19,21,202,122,44,-29,19,21,202,122,44,74,18,21,202,122,44,-29,18,21,202,122,44,74,17,21,202,122,44,-29,17,21,202,122,44,74,16,21,202,122,44,-29,16,21,202,122,44,74,15,21,202,122,44,-29,15,21,202,122,44,74,14,21,202,122,44,-29,14,21,202,122,44,74,13,21,202,122,44,-29,13,21,202,122,44,74,12,21,202,122,44,-29,12,21,202,122,44,74,11,21,202,122,44,-29,11,21,202,122,44,74,10,21,202,122,44,-29,10,21,202,122,44,74,9,21,202,122,44,-29,9,21,202,122,44,74,8,21,202,122,44,-29,8,21,202,122,44,74,7,21,202,122,44,-29,7,21,202,122,44,74,6,21,202,122,44,-29,6,21,202,122,44,74,5,21,202,122,44,-29,5,21,202,122,44,74,4,21,202,122,44,-29,4,21,202,122,44,74,3,21,202,122,44,-29,3,21,202,122,44,74,2,21,202,122,44,-29,2,21,202,122,44,74,1,21,202,122,44,-29,1,21,202,122,44,74,0,21,202,122,44,-29,0,21,202,122,44,84,15,2,202,122,44,-39,16,2,202,122,44,74,-1,21,202,122,44,-29,-1,21,202,122,44,74,-2,21,202,122,44,-29,-2,21,202,122,44,74,-3,21,202,122,44,-29,-3,21,202,122,44,74,-4,21,202,122,44,-29,-4,21,202,122,44,74,-5,21,202,122,44,-29,-5,21,202,122,44,74,-6,21,202,122,44,-29,-6,21,202,122,44,74,-7,21,202,122,44,-29,-7,21,202,122,44,74,-8,21,202,122,44,-29,-8,21,202,122,44,74,-9,21,202,122,44,-29,-9,21,202,122,44,74,-10,21,202,122,44,-29,-10,21,202,122,44,74,-11,21,202,122,44,-29,-11,21,202,122,44,74,-12,21,202,122,44,-29,-12,21,202,122,44,74,-13,21,202,122,44,-29,-13,21,202,122,44,74,-14,21,202,122,44,-29,-14,21,202,122,44,74,-15,21,202,122,44,-29,-15,21,202,122,44,74,-16,21,202,122,44,-29,-16,21,202,122,44,74,-17,21,202,122,44,-29,-17,21,202,122,44,74,-18,21,202,122,44,-29,-18,21,202,122,44,74,-19,21,202,122,44,-29,-19,21,202,122,44,74,-20,21,202,122,44,-29,-20,21,202,122,44,74,-21,21,202,122,44,-29,-21,21,202,122,44,74,-22,21,202,122,44,-29,-22,21,202,122,44,74,-23,21,202,122,44,-29,-23,21,202,122,44,74,-24,21,202,122,44,-29,-24,21,202,122,44,74,-25,21,202,122,44,-29,-25,21,202,122,44,74,-26,21,202,122,44,-29,-26,21,202,122,44,74,-27,21,202,122,44,-29,-27,21,202,122,44,74,-28,21,202,122,44,-29,-28,21,202,122,44,74,-29,21,202,122,44,73,-29,21,202,122,44,72,-29,21,202,122,44,71,-29,21,202,122,44,70,-29,21,202,122,44,69,-29,21,202,122,44,68,-29,21,202,122,44,67,-29,21,202,122,44,66,-29,21,202,122,44,65,-29,21,202,122,44,64,-29,21,202,122,44,63,-29,21,202,122,44,62,-29,21,202,122,44,61,-29,21,202,122,44,60,-29,21,202,122,44,59,-29,21,202,122,44,58,-29,21,202,122,44,57,-29,21,202,122,44,56,-29,21,202,122,44,55,-29,21,202,122,44,54,-29,21,202,122,44,53,-29,21,202,122,44,52,-29,21,202,122,44,51,-29,21,202,122,44,50,-29,21,202,122,44,49,-29,21,202,122,44,48,-29,21,202,122,44,47,-29,21,202,122,44,46,-29,21,202,122,44,45,-29,21,202,122,44,44,-29,21,202,122,44,43,-29,21,202,122,44,42,-29,21,202,122,44,41,-29,21,202,122,44,40,-29,21,202,122,44,39,-29,21,202,122,44,38,-29,21,202,122,44,37,-29,21,202,122,44,36,-29,21,202,122,44,35,-29,21,202,122,44,34,-29,21,202,122,44,33,-29,21,202,122,44,32,-29,21,202,122,44,31,-29,21,202,122,44,30,-29,21,202,122,44,29,-29,21,202,122,44,28,-29,21,202,122,44,27,-29,21,202,122,44,26,-29,21,202,122,44,25,-29,21,202,122,44,24,-29,21,202,122,44,23,-29,21,202,122,44,22,-29,21,202,122,44,21,-29,21,202,122,44,20,-29,21,202,122,44,19,-29,21,202,122,44,18,-29,21,202,122,44,17,-29,21,202,122,44,16,-29,21,202,122,44,15,-29,21,202,122,44,14,-29,21,202,122,44,13,-29,21,202,122,44,12,-29,21,202,122,44,11,-29,21,202,122,44,10,-29,21,202,122,44,9,-29,21,202,122,44,84,16,2,202,122,44,-39,17,2,202,122,44,8,-29,21,202,122,44,7,-29,21,202,122,44,6,-29,21,202,122,44,5,-29,21,202,122,44,4,-29,21,202,122,44,3,-29,21,202,122,44,2,-29,21,202,122,44,1,-29,21,202,122,44,0,-29,21,202,122,44,-1,-29,21,202,122,44,-2,-29,21,202,122,44,-3,-29,21,202,122,44,-4,-29,21,202,122,44,-5,-29,21,202,122,44,-6,-29,21,202,122,44,-7,-29,21,202,122,44,-8,-29,21,202,122,44,-9,-29,21,202,122,44,-10,-29,21,202,122,44,-11,-29,21,202,122,44,-12,-29,21,202,122,44,-13,-29,21,202,122,44,-14,-29,21,202,122,44,-15,-29,21,202,122,44,-16,-29,21,202,122,44,-17,-29,21,202,122,44,-18,-29,21,202,122,44,-19,-29,21,202,122,44,-20,-29,21,202,122,44,-21,-29,21,202,122,44,-22,-29,21,202,122,44,-23,-29,21,202,122,44,-24,-29,21,202,122,44,-25,-29,21,202,122,44,-26,-29,21,202,122,44,-27,-29,21,202,122,44,-28,-29,21,202,122,44,-29,-29,21,202,122,44,75,75,20,202,122,44,74,75,20,202,122,44,73,75,20,202,122,44,72,75,20,202,122,44,71,75,20,202,122,44,70,75,20,202,122,44,69,75,20,202,122,44,68,75,20,202,122,44,67,75,20,202,122,44,66,75,20,202,122,44,65,75,20,202,122,44,64,75,20,202,122,44,63,75,20,202,122,44,62,75,20,202,122,44,61,75,20,202,122,44,60,75,20,202,122,44,59,75,20,202,122,44,58,75,20,202,122,44,57,75,20,202,122,44,56,75,20,202,122,44,55,75,20,202,122,44,54,75,20,202,122,44,53,75,20,202,122,44,52,75,20,202,122,44,51,75,20,202,122,44,50,75,20,202,122,44,49,75,20,202,122,44,48,75,20,202,122,44,47,75,20,202,122,44,46,75,20,202,122,44,45,75,20,202,122,44,44,75,20,202,122,44,43,75,20,202,122,44,42,75,20,202,122,44,41,75,20,202,122,44,40,75,20,202,122,44,39,75,20,202,122,44,38,75,20,202,122,44,37,75,20,202,122,44,36,75,20,202,122,44,35,75,20,202,122,44,34,75,20,202,122,44,33,75,20,202,122,44,32,75,20,202,122,44,31,75,20,202,122,44,30,75,20,202,122,44,29,75,20,202,122,44,28,75,20,202,122,44,27,75,20,202,122,44,26,75,20,202,122,44,25,75,20,202,122,44,24,75,20,202,122,44,23,75,20,202,122,44,22,75,20,202,122,44,21,75,20,202,122,44,20,75,20,202,122,44,19,75,20,202,122,44,18,75,20,202,122,44,17,75,20,202,122,44,16,75,20,202,122,44,15,75,20,202,122,44,14,75,20,202,122,44,13,75,20,202,122,44,12,75,20,202,122,44,11,75,20,202,122,44,10,75,20,202,122,44,9,75,20,202,122,44,8,75,20,202,122,44,7,75,20,202,122,44,6,75,20,202,122,44,5,75,20,202,122,44,4,75,20,202,122,44,3,75,20,202,122,44,2,75,20,202,122,44,1,75,20,202,122,44,0,75,20,202,122,44,-1,75,20,202,122,44,-2,75,20,202,122,44,-3,75,20,202,122,44,-4,75,20,202,122,44,-5,75,20,202,122,44,-6,75,20,202,122,44,-7,75,20,202,122,44,-8,75,20,202,122,44,84,17,2,202,122,44,-39,18,2,202,122,44,-9,75,20,202,122,44,-10,75,20,202,122,44,-11,75,20,202,122,44,-12,75,20,202,122,44,-13,75,20,202,122,44,-14,75,20,202,122,44,-15,75,20,202,122,44,-16,75,20,202,122,44,-17,75,20,202,122,44,-18,75,20,202,122,44,-19,75,20,202,122,44,-20,75,20,202,122,44,-21,75,20,202,122,44,-22,75,20,202,122,44,-23,75,20,202,122,44,-24,75,20,202,122,44,-25,75,20,202,122,44,-26,75,20,202,122,44,-27,75,20,202,122,44,-28,75,20,202,122,44,-29,75,20,202,122,44,-30,75,20,202,122,44,75,74,20,202,122,44,-30,74,20,202,122,44,75,73,20,202,122,44,-30,73,20,202,122,44,75,72,20,202,122,44,-30,72,20,202,122,44,75,71,20,202,122,44,-30,71,20,202,122,44,75,70,20,202,122,44,-30,70,20,202,122,44,75,69,20,202,122,44,-30,69,20,202,122,44,75,68,20,202,122,44,-30,68,20,202,122,44,75,67,20,202,122,44,-30,67,20,202,122,44,75,66,20,202,122,44,-30,66,20,202,122,44,75,65,20,202,122,44,-30,65,20,202,122,44,75,64,20,202,122,44,-30,64,20,202,122,44,75,63,20,202,122,44,-30,63,20,202,122,44,75,62,20,202,122,44,-30,62,20,202,122,44,75,61,20,202,122,44,-30,61,20,202,122,44,75,60,20,202,122,44,-30,60,20,202,122,44,75,59,20,202,122,44,-30,59,20,202,122,44,75,58,20,202,122,44,-30,58,20,202,122,44,75,57,20,202,122,44,-30,57,20,202,122,44,75,56,20,202,122,44,-30,56,20,202,122,44,75,55,20,202,122,44,-30,55,20,202,122,44,75,54,20,202,122,44,-30,54,20,202,122,44,75,53,20,202,122,44,-30,53,20,202,122,44,75,52,20,202,122,44,-30,52,20,202,122,44,75,51,20,202,122,44,-30,51,20,202,122,44,75,50,20,202,122,44,-30,50,20,202,122,44,75,49,20,202,122,44,-30,49,20,202,122,44,75,48,20,202,122,44,-30,48,20,202,122,44,75,47,20,202,122,44,-30,47,20,202,122,44,75,46,20,202,122,44,-30,46,20,202,122,44,75,45,20,202,122,44,-30,45,20,202,122,44,75,44,20,202,122,44,-30,44,20,202,122,44,75,43,20,202,122,44,-30,43,20,202,122,44,75,42,20,202,122,44,-30,42,20,202,122,44,75,41,20,202,122,44,-30,41,20,202,122,44,75,40,20,202,122,44,-30,40,20,202,122,44,75,39,20,202,122,44,-30,39,20,202,122,44,75,38,20,202,122,44,-30,38,20,202,122,44,75,37,20,202,122,44,-30,37,20,202,122,44,75,36,20,202,122,44,-30,36,20,202,122,44,75,35,20,202,122,44,-30,35,20,202,122,44,75,34,20,202,122,44,-30,34,20,202,122,44,75,33,20,202,122,44,-30,33,20,202,122,44,75,32,20,202,122,44,-30,32,20,202,122,44,75,31,20,202,122,44,-30,31,20,202,122,44,75,30,20,202,122,44,-30,30,20,202,122,44,75,29,20,202,122,44,-30,29,20,202,122,44,75,28,20,202,122,44,-30,28,20,202,122,44,75,27,20,202,122,44,-30,27,20,202,122,44,75,26,20,202,122,44,-30,26,20,202,122,44,75,25,20,202,122,44,-30,25,20,202,122,44,84,18,2,202,122,44,-39,19,2,202,122,44,75,24,20,202,122,44,-30,24,20,202,122,44,75,23,20,202,122,44,-30,23,20,202,122,44,75,22,20,202,122,44,-30,22,20,202,122,44,75,21,20,202,122,44,-30,21,20,202,122,44,75,20,20,202,122,44,-30,20,20,202,122,44,75,19,20,202,122,44,-30,19,20,202,122,44,75,18,20,202,122,44,-30,18,20,202,122,44,75,17,20,202,122,44,-30,17,20,202,122,44,75,16,20,202,122,44,-30,16,20,202,122,44,75,15,20,202,122,44,-30,15,20,202,122,44,75,14,20,202,122,44,-30,14,20,202,122,44,75,13,20,202,122,44,-30,13,20,202,122,44,75,12,20,202,122,44,-30,12,20,202,122,44,75,11,20,202,122,44,-30,11,20,202,122,44,75,10,20,202,122,44,-30,10,20,202,122,44,75,9,20,202,122,44,-30,9,20,202,122,44,75,8,20,202,122,44,-30,8,20,202,122,44,75,7,20,202,122,44,-30,7,20,202,122,44,75,6,20,202,122,44,-30,6,20,202,122,44,75,5,20,202,122,44,-30,5,20,202,122,44,75,4,20,202,122,44,-30,4,20,202,122,44,75,3,20,202,122,44,-30,3,20,202,122,44,75,2,20,202,122,44,-30,2,20,202,122,44,75,1,20,202,122,44,-30,1,20,202,122,44,75,0,20,202,122,44,-30,0,20,202,122,44,75,-1,20,202,122,44,-30,-1,20,202,122,44,75,-2,20,202,122,44,-30,-2,20,202,122,44,75,-3,20,202,122,44,-30,-3,20,202,122,44,75,-4,20,202,122,44,-30,-4,20,202,122,44,75,-5,20,202,122,44,-30,-5,20,202,122,44,75,-6,20,202,122,44,-30,-6,20,202,122,44,75,-7,20,202,122,44,-30,-7,20,202,122,44,75,-8,20,202,122,44,-30,-8,20,202,122,44,75,-9,20,202,122,44,-30,-9,20,202,122,44,75,-10,20,202,122,44,-30,-10,20,202,122,44,75,-11,20,202,122,44,-30,-11,20,202,122,44,75,-12,20,202,122,44,-30,-12,20,202,122,44,75,-13,20,202,122,44,-30,-13,20,202,122,44,75,-14,20,202,122,44,-30,-14,20,202,122,44,75,-15,20,202,122,44,-30,-15,20,202,122,44,75,-16,20,202,122,44,-30,-16,20,202,122,44,75,-17,20,202,122,44,-30,-17,20,202,122,44,75,-18,20,202,122,44,-30,-18,20,202,122,44,75,-19,20,202,122,44,-30,-19,20,202,122,44,75,-20,20,202,122,44,-30,-20,20,202,122,44,75,-21,20,202,122,44,-30,-21,20,202,122,44,75,-22,20,202,122,44,-30,-22,20,202,122,44,75,-23,20,202,122,44,-30,-23,20,202,122,44,75,-24,20,202,122,44,-30,-24,20,202,122,44,75,-25,20,202,122,44,-30,-25,20,202,122,44,75,-26,20,202,122,44,-30,-26,20,202,122,44,75,-27,20,202,122,44,-30,-27,20,202,122,44,75,-28,20,202,122,44,-30,-28,20,202,122,44,75,-29,20,202,122,44,-30,-29,20,202,122,44,75,-30,20,202,122,44,74,-30,20,202,122,44,73,-30,20,202,122,44,72,-30,20,202,122,44,71,-30,20,202,122,44,70,-30,20,202,122,44,69,-30,20,202,122,44,68,-30,20,202,122,44,67,-30,20,202,122,44,66,-30,20,202,122,44,65,-30,20,202,122,44,64,-30,20,202,122,44,63,-30,20,202,122,44,62,-30,20,202,122,44,84,19,2,202,122,44,-39,20,2,202,122,44,61,-30,20,202,122,44,60,-30,20,202,122,44,59,-30,20,202,122,44,58,-30,20,202,122,44,57,-30,20,202,122,44,56,-30,20,202,122,44,55,-30,20,202,122,44,54,-30,20,202,122,44,53,-30,20,202,122,44,52,-30,20,202,122,44,51,-30,20,202,122,44,50,-30,20,202,122,44,49,-30,20,202,122,44,48,-30,20,202,122,44,47,-30,20,202,122,44,46,-30,20,202,122,44,45,-30,20,202,122,44,44,-30,20,202,122,44,43,-30,20,202,122,44,42,-30,20,202,122,44,41,-30,20,202,122,44,40,-30,20,202,122,44,39,-30,20,202,122,44,38,-30,20,202,122,44,37,-30,20,202,122,44,36,-30,20,202,122,44,35,-30,20,202,122,44,34,-30,20,202,122,44,33,-30,20,202,122,44,32,-30,20,202,122,44,31,-30,20,202,122,44,30,-30,20,202,122,44,29,-30,20,202,122,44,28,-30,20,202,122,44,27,-30,20,202,122,44,26,-30,20,202,122,44,25,-30,20,202,122,44,24,-30,20,202,122,44,23,-30,20,202,122,44,22,-30,20,202,122,44,21,-30,20,202,122,44,20,-30,20,202,122,44,19,-30,20,202,122,44,18,-30,20,202,122,44,17,-30,20,202,122,44,16,-30,20,202,122,44,15,-30,20,202,122,44,14,-30,20,202,122,44,13,-30,20,202,122,44,12,-30,20,202,122,44,11,-30,20,202,122,44,10,-30,20,202,122,44,9,-30,20,202,122,44,8,-30,20,202,122,44,7,-30,20,202,122,44,6,-30,20,202,122,44,5,-30,20,202,122,44,4,-30,20,202,122,44,3,-30,20,202,122,44,2,-30,20,202,122,44,1,-30,20,202,122,44,0,-30,20,202,122,44,-1,-30,20,202,122,44,-2,-30,20,202,122,44,-3,-30,20,202,122,44,-4,-30,20,202,122,44,-5,-30,20,202,122,44,-6,-30,20,202,122,44,-7,-30,20,202,122,44,-8,-30,20,202,122,44,-9,-30,20,202,122,44,-10,-30,20,202,122,44,-11,-30,20,202,122,44,-12,-30,20,202,122,44,-13,-30,20,202,122,44,-14,-30,20,202,122,44,-15,-30,20,202,122,44,-16,-30,20,202,122,44,-17,-30,20,202,122,44,-18,-30,20,202,122,44,-19,-30,20,202,122,44,-20,-30,20,202,122,44,-21,-30,20,202,122,44,-22,-30,20,202,122,44,-23,-30,20,202,122,44,-24,-30,20,202,122,44,-25,-30,20,202,122,44,-26,-30,20,202,122,44,-27,-30,20,202,122,44,-28,-30,20,202,122,44,-29,-30,20,202,122,44,-30,-30,20,202,122,44,75,75,19,202,122,44,74,75,19,202,122,44,73,75,19,202,122,44,72,75,19,202,122,44,71,75,19,202,122,44,70,75,19,202,122,44,69,75,19,202,122,44,68,75,19,202,122,44,67,75,19,202,122,44,66,75,19,202,122,44,65,75,19,202,122,44,64,75,19,202,122,44,63,75,19,202,122,44,62,75,19,202,122,44,61,75,19,202,122,44,60,75,19,202,122,44,59,75,19,202,122,44,58,75,19,202,122,44,57,75,19,202,122,44,56,75,19,202,122,44,55,75,19,202,122,44,54,75,19,202,122,44,53,75,19,202,122,44,52,75,19,202,122,44,51,75,19,202,122,44,50,75,19,202,122,44,49,75,19,202,122,44,48,75,19,202,122,44,47,75,19,202,122,44,46,75,19,202,122,44,84,20,2,202,122,44,-39,21,2,202,122,44,45,75,19,202,122,44,44,75,19,202,122,44,43,75,19,202,122,44,42,75,19,202,122,44,41,75,19,202,122,44,40,75,19,202,122,44,39,75,19,202,122,44,38,75,19,202,122,44,37,75,19,202,122,44,36,75,19,202,122,44,35,75,19,202,122,44,34,75,19,202,122,44,33,75,19,202,122,44,32,75,19,202,122,44,31,75,19,202,122,44,30,75,19,202,122,44,29,75,19,202,122,44,28,75,19,202,122,44,27,75,19,202,122,44,26,75,19,202,122,44,25,75,19,202,122,44,24,75,19,202,122,44,23,75,19,202,122,44,22,75,19,202,122,44,21,75,19,202,122,44,20,75,19,202,122,44,19,75,19,202,122,44,18,75,19,202,122,44,17,75,19,202,122,44,16,75,19,202,122,44,15,75,19,202,122,44,14,75,19,202,122,44,13,75,19,202,122,44,12,75,19,202,122,44,11,75,19,202,122,44,10,75,19,202,122,44,9,75,19,202,122,44,8,75,19,202,122,44,7,75,19,202,122,44,6,75,19,202,122,44,5,75,19,202,122,44,4,75,19,202,122,44,3,75,19,202,122,44,2,75,19,202,122,44,1,75,19,202,122,44,0,75,19,202,122,44,-1,75,19,202,122,44,-2,75,19,202,122,44,-3,75,19,202,122,44,-4,75,19,202,122,44,-5,75,19,202,122,44,-6,75,19,202,122,44,-7,75,19,202,122,44,-8,75,19,202,122,44,-9,75,19,202,122,44,-10,75,19,202,122,44,-11,75,19,202,122,44,-12,75,19,202,122,44,-13,75,19,202,122,44,-14,75,19,202,122,44,-15,75,19,202,122,44,-16,75,19,202,122,44,-17,75,19,202,122,44,-18,75,19,202,122,44,-19,75,19,202,122,44,-20,75,19,202,122,44,-21,75,19,202,122,44,-22,75,19,202,122,44,-23,75,19,202,122,44,-24,75,19,202,122,44,-25,75,19,202,122,44,-26,75,19,202,122,44,-27,75,19,202,122,44,-28,75,19,202,122,44,-29,75,19,202,122,44,-30,75,19,202,122,44,75,74,19,202,122,44,-30,74,19,202,122,44,75,73,19,202,122,44,-30,73,19,202,122,44,75,72,19,202,122,44,-30,72,19,202,122,44,75,71,19,202,122,44,-30,71,19,202,122,44,75,70,19,202,122,44,-30,70,19,202,122,44,75,69,19,202,122,44,-30,69,19,202,122,44,75,68,19,202,122,44,-30,68,19,202,122,44,75,67,19,202,122,44,-30,67,19,202,122,44,75,66,19,202,122,44,-30,66,19,202,122,44,75,65,19,202,122,44,-30,65,19,202,122,44,75,64,19,202,122,44,-30,64,19,202,122,44,75,63,19,202,122,44,-30,63,19,202,122,44,75,62,19,202,122,44,-30,62,19,202,122,44,75,61,19,202,122,44,-30,61,19,202,122,44,75,60,19,202,122,44,-30,60,19,202,122,44,75,59,19,202,122,44,-30,59,19,202,122,44,75,58,19,202,122,44,-30,58,19,202,122,44,75,57,19,202,122,44,-30,57,19,202,122,44,75,56,19,202,122,44,-30,56,19,202,122,44,75,55,19,202,122,44,-30,55,19,202,122,44,75,54,19,202,122,44,-30,54,19,202,122,44,75,53,19,202,122,44,-30,53,19,202,122,44,75,52,19,202,122,44,-30,52,19,202,122,44,84,21,2,202,122,44,-39,22,2,202,122,44,75,51,19,202,122,44,-30,51,19,202,122,44,75,50,19,202,122,44,-30,50,19,202,122,44,75,49,19,202,122,44,-30,49,19,202,122,44,75,48,19,202,122,44,-30,48,19,202,122,44,75,47,19,202,122,44,-30,47,19,202,122,44,75,46,19,202,122,44,-30,46,19,202,122,44,75,45,19,202,122,44,-30,45,19,202,122,44,75,44,19,202,122,44,-30,44,19,202,122,44,75,43,19,202,122,44,-30,43,19,202,122,44,75,42,19,202,122,44,-30,42,19,202,122,44,75,41,19,202,122,44,-30,41,19,202,122,44,75,40,19,202,122,44,-30,40,19,202,122,44,75,39,19,202,122,44,-30,39,19,202,122,44,75,38,19,202,122,44,-30,38,19,202,122,44,75,37,19,202,122,44,-30,37,19,202,122,44,75,36,19,202,122,44,-30,36,19,202,122,44,75,35,19,202,122,44,-30,35,19,202,122,44,75,34,19,202,122,44,-30,34,19,202,122,44,75,33,19,202,122,44,-30,33,19,202,122,44,75,32,19,202,122,44,-30,32,19,202,122,44,75,31,19,202,122,44,-30,31,19,202,122,44,75,30,19,202,122,44,-30,30,19,202,122,44,75,29,19,202,122,44,-30,29,19,202,122,44,75,28,19,202,122,44,-30,28,19,202,122,44,75,27,19,202,122,44,-30,27,19,202,122,44,75,26,19,202,122,44,-30,26,19,202,122,44,75,25,19,202,122,44,-30,25,19,202,122,44,75,24,19,202,122,44,-30,24,19,202,122,44,75,23,19,202,122,44,-30,23,19,202,122,44,75,22,19,202,122,44,-30,22,19,202,122,44,75,21,19,202,122,44,-30,21,19,202,122,44,75,20,19,202,122,44,-30,20,19,202,122,44,75,19,19,202,122,44,-30,19,19,202,122,44,75,18,19,202,122,44,-30,18,19,202,122,44,75,17,19,202,122,44,-30,17,19,202,122,44,75,16,19,202,122,44,-30,16,19,202,122,44,75,15,19,202,122,44,-30,15,19,202,122,44,75,14,19,202,122,44,-30,14,19,202,122,44,75,13,19,202,122,44,-30,13,19,202,122,44,75,12,19,202,122,44,-30,12,19,202,122,44,75,11,19,202,122,44,-30,11,19,202,122,44,75,10,19,202,122,44,-30,10,19,202,122,44,75,9,19,202,122,44,-30,9,19,202,122,44,75,8,19,202,122,44,-30,8,19,202,122,44,75,7,19,202,122,44,-30,7,19,202,122,44,75,6,19,202,122,44,-30,6,19,202,122,44,75,5,19,202,122,44,-30,5,19,202,122,44,75,4,19,202,122,44,-30,4,19,202,122,44,75,3,19,202,122,44,-30,3,19,202,122,44,75,2,19,202,122,44,-30,2,19,202,122,44,75,1,19,202,122,44,-30,1,19,202,122,44,75,0,19,202,122,44,-30,0,19,202,122,44,75,-1,19,202,122,44,-30,-1,19,202,122,44,75,-2,19,202,122,44,-30,-2,19,202,122,44,75,-3,19,202,122,44,-30,-3,19,202,122,44,75,-4,19,202,122,44,-30,-4,19,202,122,44,75,-5,19,202,122,44,-30,-5,19,202,122,44,75,-6,19,202,122,44,-30,-6,19,202,122,44,75,-7,19,202,122,44,-30,-7,19,202,122,44,75,-8,19,202,122,44,-30,-8,19,202,122,44,75,-9,19,202,122,44,-30,-9,19,202,122,44,84,22,2,202,122,44,-39,23,2,202,122,44,75,-10,19,202,122,44,-30,-10,19,202,122,44,75,-11,19,202,122,44,-30,-11,19,202,122,44,75,-12,19,202,122,44,-30,-12,19,202,122,44,75,-13,19,202,122,44,-30,-13,19,202,122,44,75,-14,19,202,122,44,-30,-14,19,202,122,44,75,-15,19,202,122,44,-30,-15,19,202,122,44,75,-16,19,202,122,44,-30,-16,19,202,122,44,75,-17,19,202,122,44,-30,-17,19,202,122,44,75,-18,19,202,122,44,-30,-18,19,202,122,44,75,-19,19,202,122,44,-30,-19,19,202,122,44,75,-20,19,202,122,44,-30,-20,19,202,122,44,75,-21,19,202,122,44,-30,-21,19,202,122,44,75,-22,19,202,122,44,-30,-22,19,202,122,44,75,-23,19,202,122,44,-30,-23,19,202,122,44,75,-24,19,202,122,44,-30,-24,19,202,122,44,75,-25,19,202,122,44,-30,-25,19,202,122,44,75,-26,19,202,122,44,-30,-26,19,202,122,44,75,-27,19,202,122,44,-30,-27,19,202,122,44,75,-28,19,202,122,44,-30,-28,19,202,122,44,75,-29,19,202,122,44,-30,-29,19,202,122,44,75,-30,19,202,122,44,74,-30,19,202,122,44,73,-30,19,202,122,44,72,-30,19,202,122,44,71,-30,19,202,122,44,70,-30,19,202,122,44,69,-30,19,202,122,44,68,-30,19,202,122,44,67,-30,19,202,122,44,66,-30,19,202,122,44,65,-30,19,202,122,44,64,-30,19,202,122,44,63,-30,19,202,122,44,62,-30,19,202,122,44,61,-30,19,202,122,44,60,-30,19,202,122,44,59,-30,19,202,122,44,58,-30,19,202,122,44,57,-30,19,202,122,44,56,-30,19,202,122,44,55,-30,19,202,122,44,54,-30,19,202,122,44,53,-30,19,202,122,44,52,-30,19,202,122,44,51,-30,19,202,122,44,50,-30,19,202,122,44,49,-30,19,202,122,44,48,-30,19,202,122,44,47,-30,19,202,122,44,46,-30,19,202,122,44,45,-30,19,202,122,44,44,-30,19,202,122,44,43,-30,19,202,122,44,42,-30,19,202,122,44,41,-30,19,202,122,44,40,-30,19,202,122,44,39,-30,19,202,122,44,38,-30,19,202,122,44,37,-30,19,202,122,44,36,-30,19,202,122,44,35,-30,19,202,122,44,34,-30,19,202,122,44,33,-30,19,202,122,44,32,-30,19,202,122,44,31,-30,19,202,122,44,30,-30,19,202,122,44,29,-30,19,202,122,44,28,-30,19,202,122,44,27,-30,19,202,122,44,26,-30,19,202,122,44,25,-30,19,202,122,44,24,-30,19,202,122,44,23,-30,19,202,122,44,22,-30,19,202,122,44,21,-30,19,202,122,44,20,-30,19,202,122,44,19,-30,19,202,122,44,18,-30,19,202,122,44,17,-30,19,202,122,44,16,-30,19,202,122,44,15,-30,19,202,122,44,14,-30,19,202,122,44,13,-30,19,202,122,44,12,-30,19,202,122,44,11,-30,19,202,122,44,10,-30,19,202,122,44,9,-30,19,202,122,44,8,-30,19,202,122,44,7,-30,19,202,122,44,6,-30,19,202,122,44,5,-30,19,202,122,44,4,-30,19,202,122,44,3,-30,19,202,122,44,2,-30,19,202,122,44,1,-30,19,202,122,44,0,-30,19,202,122,44,-1,-30,19,202,122,44,-2,-30,19,202,122,44,-3,-30,19,202,122,44,-4,-30,19,202,122,44,-5,-30,19,202,122,44,-6,-30,19,202,122,44,84,23,2,202,122,44,-39,24,2,202,122,44,-7,-30,19,202,122,44,-8,-30,19,202,122,44,-9,-30,19,202,122,44,-10,-30,19,202,122,44,-11,-30,19,202,122,44,-12,-30,19,202,122,44,-13,-30,19,202,122,44,-14,-30,19,202,122,44,-15,-30,19,202,122,44,-16,-30,19,202,122,44,-17,-30,19,202,122,44,-18,-30,19,202,122,44,-19,-30,19,202,122,44,-20,-30,19,202,122,44,-21,-30,19,202,122,44,-22,-30,19,202,122,44,-23,-30,19,202,122,44,-24,-30,19,202,122,44,-25,-30,19,202,122,44,-26,-30,19,202,122,44,-27,-30,19,202,122,44,-28,-30,19,202,122,44,-29,-30,19,202,122,44,-30,-30,19,202,122,44,76,76,18,202,122,44,75,76,18,202,122,44,74,76,18,202,122,44,73,76,18,202,122,44,72,76,18,202,122,44,71,76,18,202,122,44,70,76,18,202,122,44,69,76,18,202,122,44,68,76,18,202,122,44,67,76,18,202,122,44,66,76,18,202,122,44,65,76,18,202,122,44,64,76,18,202,122,44,63,76,18,202,122,44,62,76,18,202,122,44,61,76,18,202,122,44,60,76,18,202,122,44,59,76,18,202,122,44,58,76,18,202,122,44,57,76,18,202,122,44,56,76,18,202,122,44,55,76,18,202,122,44,54,76,18,202,122,44,53,76,18,202,122,44,52,76,18,202,122,44,51,76,18,202,122,44,50,76,18,202,122,44,49,76,18,202,122,44,48,76,18,202,122,44,47,76,18,202,122,44,46,76,18,202,122,44,45,76,18,202,122,44,44,76,18,202,122,44,43,76,18,202,122,44,42,76,18,202,122,44,41,76,18,202,122,44,40,76,18,202,122,44,39,76,18,202,122,44,38,76,18,202,122,44,37,76,18,202,122,44,36,76,18,202,122,44,35,76,18,202,122,44,34,76,18,202,122,44,33,76,18,202,122,44,32,76,18,202,122,44,31,76,18,202,122,44,30,76,18,202,122,44,29,76,18,202,122,44,28,76,18,202,122,44,27,76,18,202,122,44,26,76,18,202,122,44,25,76,18,202,122,44,24,76,18,202,122,44,23,76,18,202,122,44,22,76,18,202,122,44,21,76,18,202,122,44,20,76,18,202,122,44,19,76,18,202,122,44,18,76,18,202,122,44,17,76,18,202,122,44,16,76,18,202,122,44,15,76,18,202,122,44,14,76,18,202,122,44,13,76,18,202,122,44,12,76,18,202,122,44,11,76,18,202,122,44,10,76,18,202,122,44,9,76,18,202,122,44,8,76,18,202,122,44,7,76,18,202,122,44,6,76,18,202,122,44,5,76,18,202,122,44,4,76,18,202,122,44,3,76,18,202,122,44,2,76,18,202,122,44,1,76,18,202,122,44,0,76,18,202,122,44,-1,76,18,202,122,44,-2,76,18,202,122,44,-3,76,18,202,122,44,-4,76,18,202,122,44,-5,76,18,202,122,44,-6,76,18,202,122,44,-7,76,18,202,122,44,-8,76,18,202,122,44,-9,76,18,202,122,44,-10,76,18,202,122,44,-11,76,18,202,122,44,-12,76,18,202,122,44,-13,76,18,202,122,44,-14,76,18,202,122,44,-15,76,18,202,122,44,-16,76,18,202,122,44,-17,76,18,202,122,44,-18,76,18,202,122,44,-19,76,18,202,122,44,-20,76,18,202,122,44,-21,76,18,202,122,44,84,24,2,202,122,44,-39,25,2,202,122,44,-22,76,18,202,122,44,-23,76,18,202,122,44,-24,76,18,202,122,44,-25,76,18,202,122,44,-26,76,18,202,122,44,-27,76,18,202,122,44,-28,76,18,202,122,44,-29,76,18,202,122,44,-30,76,18,202,122,44,-31,76,18,202,122,44,76,75,18,202,122,44,-31,75,18,202,122,44,76,74,18,202,122,44,-31,74,18,202,122,44,76,73,18,202,122,44,-31,73,18,202,122,44,76,72,18,202,122,44,-31,72,18,202,122,44,76,71,18,202,122,44,-31,71,18,202,122,44,76,70,18,202,122,44,-31,70,18,202,122,44,76,69,18,202,122,44,-31,69,18,202,122,44,76,68,18,202,122,44,-31,68,18,202,122,44,76,67,18,202,122,44,-31,67,18,202,122,44,76,66,18,202,122,44,-31,66,18,202,122,44,76,65,18,202,122,44,-31,65,18,202,122,44,76,64,18,202,122,44,-31,64,18,202,122,44,76,63,18,202,122,44,-31,63,18,202,122,44,76,62,18,202,122,44,-31,62,18,202,122,44,76,61,18,202,122,44,-31,61,18,202,122,44,76,60,18,202,122,44,-31,60,18,202,122,44,76,59,18,202,122,44,-31,59,18,202,122,44,76,58,18,202,122,44,-31,58,18,202,122,44,76,57,18,202,122,44,-31,57,18,202,122,44,76,56,18,202,122,44,-31,56,18,202,122,44,76,55,18,202,122,44,-31,55,18,202,122,44,76,54,18,202,122,44,-31,54,18,202,122,44,76,53,18,202,122,44,-31,53,18,202,122,44,76,52,18,202,122,44,-31,52,18,202,122,44,76,51,18,202,122,44,-31,51,18,202,122,44,76,50,18,202,122,44,-31,50,18,202,122,44,76,49,18,202,122,44,-31,49,18,202,122,44,76,48,18,202,122,44,-31,48,18,202,122,44,76,47,18,202,122,44,-31,47,18,202,122,44,76,46,18,202,122,44,-31,46,18,202,122,44,76,45,18,202,122,44,-31,45,18,202,122,44,76,44,18,202,122,44,-31,44,18,202,122,44,76,43,18,202,122,44,-31,43,18,202,122,44,76,42,18,202,122,44,-31,42,18,202,122,44,76,41,18,202,122,44,-31,41,18,202,122,44,76,40,18,202,122,44,-31,40,18,202,122,44,76,39,18,202,122,44,-31,39,18,202,122,44,76,38,18,202,122,44,-31,38,18,202,122,44,76,37,18,202,122,44,-31,37,18,202,122,44,76,36,18,202,122,44,-31,36,18,202,122,44,76,35,18,202,122,44,-31,35,18,202,122,44,76,34,18,202,122,44,-31,34,18,202,122,44,76,33,18,202,122,44,-31,33,18,202,122,44,76,32,18,202,122,44,-31,32,18,202,122,44,76,31,18,202,122,44,-31,31,18,202,122,44,76,30,18,202,122,44,-31,30,18,202,122,44,76,29,18,202,122,44,-31,29,18,202,122,44,76,28,18,202,122,44,-31,28,18,202,122,44,76,27,18,202,122,44,-31,27,18,202,122,44,76,26,18,202,122,44,-31,26,18,202,122,44,76,25,18,202,122,44,-31,25,18,202,122,44,76,24,18,202,122,44,-31,24,18,202,122,44,76,23,18,202,122,44,-31,23,18,202,122,44,76,22,18,202,122,44,-31,22,18,202,122,44,76,21,18,202,122,44,-31,21,18,202,122,44,76,20,18,202,122,44,-31,20,18,202,122,44,84,25,2,202,122,44,-39,26,2,202,122,44,76,19,18,202,122,44,-31,19,18,202,122,44,76,18,18,202,122,44,-31,18,18,202,122,44,76,17,18,202,122,44,-31,17,18,202,122,44,76,16,18,202,122,44,-31,16,18,202,122,44,76,15,18,202,122,44,-31,15,18,202,122,44,76,14,18,202,122,44,-31,14,18,202,122,44,76,13,18,202,122,44,-31,13,18,202,122,44,76,12,18,202,122,44,-31,12,18,202,122,44,76,11,18,202,122,44,-31,11,18,202,122,44,76,10,18,202,122,44,-31,10,18,202,122,44,76,9,18,202,122,44,-31,9,18,202,122,44,76,8,18,202,122,44,-31,8,18,202,122,44,76,7,18,202,122,44,-31,7,18,202,122,44,76,6,18,202,122,44,-31,6,18,202,122,44,76,5,18,202,122,44,-31,5,18,202,122,44,76,4,18,202,122,44,-31,4,18,202,122,44,76,3,18,202,122,44,-31,3,18,202,122,44,76,2,18,202,122,44,-31,2,18,202,122,44,76,1,18,202,122,44,-31,1,18,202,122,44,76,0,18,202,122,44,-31,0,18,202,122,44,76,-1,18,202,122,44,-31,-1,18,202,122,44,76,-2,18,202,122,44,-31,-2,18,202,122,44,76,-3,18,202,122,44,-31,-3,18,202,122,44,76,-4,18,202,122,44,-31,-4,18,202,122,44,76,-5,18,202,122,44,-31,-5,18,202,122,44,76,-6,18,202,122,44,-31,-6,18,202,122,44,76,-7,18,202,122,44,-31,-7,18,202,122,44,76,-8,18,202,122,44,-31,-8,18,202,122,44,76,-9,18,202,122,44,-31,-9,18,202,122,44,76,-10,18,202,122,44,-31,-10,18,202,122,44,76,-11,18,202,122,44,-31,-11,18,202,122,44,76,-12,18,202,122,44,-31,-12,18,202,122,44,76,-13,18,202,122,44,-31,-13,18,202,122,44,76,-14,18,202,122,44,-31,-14,18,202,122,44,76,-15,18,202,122,44,-31,-15,18,202,122,44,76,-16,18,202,122,44,-31,-16,18,202,122,44,76,-17,18,202,122,44,-31,-17,18,202,122,44,76,-18,18,202,122,44,-31,-18,18,202,122,44,76,-19,18,202,122,44,-31,-19,18,202,122,44,76,-20,18,202,122,44,-31,-20,18,202,122,44,76,-21,18,202,122,44,-31,-21,18,202,122,44,76,-22,18,202,122,44,-31,-22,18,202,122,44,76,-23,18,202,122,44,-31,-23,18,202,122,44,76,-24,18,202,122,44,-31,-24,18,202,122,44,76,-25,18,202,122,44,-31,-25,18,202,122,44,76,-26,18,202,122,44,-31,-26,18,202,122,44,76,-27,18,202,122,44,-31,-27,18,202,122,44,76,-28,18,202,122,44,-31,-28,18,202,122,44,76,-29,18,202,122,44,-31,-29,18,202,122,44,76,-30,18,202,122,44,-31,-30,18,202,122,44,76,-31,18,202,122,44,75,-31,18,202,122,44,74,-31,18,202,122,44,73,-31,18,202,122,44,72,-31,18,202,122,44,71,-31,18,202,122,44,70,-31,18,202,122,44,69,-31,18,202,122,44,68,-31,18,202,122,44,67,-31,18,202,122,44,66,-31,18,202,122,44,65,-31,18,202,122,44,64,-31,18,202,122,44,63,-31,18,202,122,44,62,-31,18,202,122,44,61,-31,18,202,122,44,60,-31,18,202,122,44,59,-31,18,202,122,44,58,-31,18,202,122,44,57,-31,18,202,122,44,56,-31,18,202,122,44,55,-31,18,202,122,44,84,26,2,202,122,44,-39,27,2,202,122,44,54,-31,18,202,122,44,53,-31,18,202,122,44,52,-31,18,202,122,44,51,-31,18,202,122,44,50,-31,18,202,122,44,49,-31,18,202,122,44,48,-31,18,202,122,44,47,-31,18,202,122,44,46,-31,18,202,122,44,45,-31,18,202,122,44,44,-31,18,202,122,44,43,-31,18,202,122,44,42,-31,18,202,122,44,41,-31,18,202,122,44,40,-31,18,202,122,44,39,-31,18,202,122,44,38,-31,18,202,122,44,37,-31,18,202,122,44,36,-31,18,202,122,44,35,-31,18,202,122,44,34,-31,18,202,122,44,33,-31,18,202,122,44,32,-31,18,202,122,44,31,-31,18,202,122,44,30,-31,18,202,122,44,29,-31,18,202,122,44,28,-31,18,202,122,44,27,-31,18,202,122,44,26,-31,18,202,122,44,25,-31,18,202,122,44,24,-31,18,202,122,44,23,-31,18,202,122,44,22,-31,18,202,122,44,21,-31,18,202,122,44,20,-31,18,202,122,44,19,-31,18,202,122,44,18,-31,18,202,122,44,17,-31,18,202,122,44,16,-31,18,202,122,44,15,-31,18,202,122,44,14,-31,18,202,122,44,13,-31,18,202,122,44,12,-31,18,202,122,44,11,-31,18,202,122,44,10,-31,18,202,122,44,9,-31,18,202,122,44,8,-31,18,202,122,44,7,-31,18,202,122,44,6,-31,18,202,122,44,5,-31,18,202,122,44,4,-31,18,202,122,44,3,-31,18,202,122,44,2,-31,18,202,122,44,1,-31,18,202,122,44,0,-31,18,202,122,44,-1,-31,18,202,122,44,-2,-31,18,202,122,44,-3,-31,18,202,122,44,-4,-31,18,202,122,44,-5,-31,18,202,122,44,-6,-31,18,202,122,44,-7,-31,18,202,122,44,-8,-31,18,202,122,44,-9,-31,18,202,122,44,-10,-31,18,202,122,44,-11,-31,18,202,122,44,-12,-31,18,202,122,44,-13,-31,18,202,122,44,-14,-31,18,202,122,44,-15,-31,18,202,122,44,-16,-31,18,202,122,44,-17,-31,18,202,122,44,-18,-31,18,202,122,44,-19,-31,18,202,122,44,-20,-31,18,202,122,44,-21,-31,18,202,122,44,-22,-31,18,202,122,44,-23,-31,18,202,122,44,-24,-31,18,202,122,44,-25,-31,18,202,122,44,-26,-31,18,202,122,44,-27,-31,18,202,122,44,-28,-31,18,202,122,44,-29,-31,18,202,122,44,-30,-31,18,202,122,44,-31,-31,18,202,122,44,76,76,17,202,122,44,75,76,17,202,122,44,74,76,17,202,122,44,73,76,17,202,122,44,72,76,17,202,122,44,71,76,17,202,122,44,70,76,17,202,122,44,69,76,17,202,122,44,68,76,17,202,122,44,67,76,17,202,122,44,66,76,17,202,122,44,65,76,17,202,122,44,64,76,17,202,122,44,63,76,17,202,122,44,62,76,17,202,122,44,61,76,17,202,122,44,60,76,17,202,122,44,59,76,17,202,122,44,58,76,17,202,122,44,57,76,17,202,122,44,56,76,17,202,122,44,55,76,17,202,122,44,54,76,17,202,122,44,53,76,17,202,122,44,52,76,17,202,122,44,51,76,17,202,122,44,50,76,17,202,122,44,49,76,17,202,122,44,48,76,17,202,122,44,47,76,17,202,122,44,46,76,17,202,122,44,45,76,17,202,122,44,44,76,17,202,122,44,43,76,17,202,122,44,42,76,17,202,122,44,41,76,17,202,122,44,84,27,2,202,122,44,-39,28,2,202,122,44,40,76,17,202,122,44,39,76,17,202,122,44,38,76,17,202,122,44,37,76,17,202,122,44,36,76,17,202,122,44,35,76,17,202,122,44,34,76,17,202,122,44,33,76,17,202,122,44,32,76,17,202,122,44,31,76,17,202,122,44,30,76,17,202,122,44,29,76,17,202,122,44,28,76,17,202,122,44,27,76,17,202,122,44,26,76,17,202,122,44,25,76,17,202,122,44,24,76,17,202,122,44,23,76,17,202,122,44,22,76,17,202,122,44,21,76,17,202,122,44,20,76,17,202,122,44,19,76,17,202,122,44,18,76,17,202,122,44,17,76,17,202,122,44,16,76,17,202,122,44,15,76,17,202,122,44,14,76,17,202,122,44,13,76,17,202,122,44,12,76,17,202,122,44,11,76,17,202,122,44,10,76,17,202,122,44,9,76,17,202,122,44,8,76,17,202,122,44,7,76,17,202,122,44,6,76,17,202,122,44,5,76,17,202,122,44,4,76,17,202,122,44,3,76,17,202,122,44,2,76,17,202,122,44,1,76,17,202,122,44,0,76,17,202,122,44,-1,76,17,202,122,44,-2,76,17,202,122,44,-3,76,17,202,122,44,-4,76,17,202,122,44,-5,76,17,202,122,44,-6,76,17,202,122,44,-7,76,17,202,122,44,-8,76,17,202,122,44,-9,76,17,202,122,44,-10,76,17,202,122,44,-11,76,17,202,122,44,-12,76,17,202,122,44,-13,76,17,202,122,44,-14,76,17,202,122,44,-15,76,17,202,122,44,-16,76,17,202,122,44,-17,76,17,202,122,44,-18,76,17,202,122,44,-19,76,17,202,122,44,-20,76,17,202,122,44,-21,76,17,202,122,44,-22,76,17,202,122,44,-23,76,17,202,122,44,-24,76,17,202,122,44,-25,76,17,202,122,44,-26,76,17,202,122,44,-27,76,17,202,122,44,-28,76,17,202,122,44,-29,76,17,202,122,44,-30,76,17,202,122,44,-31,76,17,202,122,44,76,75,17,202,122,44,-31,75,17,202,122,44,76,74,17,202,122,44,-31,74,17,202,122,44,76,73,17,202,122,44,-31,73,17,202,122,44,76,72,17,202,122,44,-31,72,17,202,122,44,76,71,17,202,122,44,-31,71,17,202,122,44,76,70,17,202,122,44,-31,70,17,202,122,44,76,69,17,202,122,44,-31,69,17,202,122,44,76,68,17,202,122,44,-31,68,17,202,122,44,76,67,17,202,122,44,-31,67,17,202,122,44,76,66,17,202,122,44,-31,66,17,202,122,44,76,65,17,202,122,44,-31,65,17,202,122,44,76,64,17,202,122,44,-31,64,17,202,122,44,76,63,17,202,122,44,-31,63,17,202,122,44,76,62,17,202,122,44,-31,62,17,202,122,44,76,61,17,202,122,44,-31,61,17,202,122,44,76,60,17,202,122,44,-31,60,17,202,122,44,76,59,17,202,122,44,-31,59,17,202,122,44,76,58,17,202,122,44,-31,58,17,202,122,44,76,57,17,202,122,44,-31,57,17,202,122,44,76,56,17,202,122,44,-31,56,17,202,122,44,76,55,17,202,122,44,-31,55,17,202,122,44,76,54,17,202,122,44,-31,54,17,202,122,44,76,53,17,202,122,44,-31,53,17,202,122,44,76,52,17,202,122,44,-31,52,17,202,122,44,76,51,17,202,122,44,-31,51,17,202,122,44,84,28,2,202,122,44,-39,29,2,202,122,44,76,50,17,202,122,44,-31,50,17,202,122,44,76,49,17,202,122,44,-31,49,17,202,122,44,76,48,17,202,122,44,-31,48,17,202,122,44,76,47,17,202,122,44,-31,47,17,202,122,44,76,46,17,202,122,44,-31,46,17,202,122,44,76,45,17,202,122,44,-31,45,17,202,122,44,76,44,17,202,122,44,-31,44,17,202,122,44,76,43,17,202,122,44,-31,43,17,202,122,44,76,42,17,202,122,44,-31,42,17,202,122,44,76,41,17,202,122,44,-31,41,17,202,122,44,76,40,17,202,122,44,-31,40,17,202,122,44,76,39,17,202,122,44,-31,39,17,202,122,44,76,38,17,202,122,44,-31,38,17,202,122,44,76,37,17,202,122,44,-31,37,17,202,122,44,76,36,17,202,122,44,-31,36,17,202,122,44,76,35,17,202,122,44,-31,35,17,202,122,44,76,34,17,202,122,44,-31,34,17,202,122,44,76,33,17,202,122,44,-31,33,17,202,122,44,76,32,17,202,122,44,-31,32,17,202,122,44,76,31,17,202,122,44,-31,31,17,202,122,44,76,30,17,202,122,44,-31,30,17,202,122,44,76,29,17,202,122,44,-31,29,17,202,122,44,76,28,17,202,122,44,-31,28,17,202,122,44,76,27,17,202,122,44,-31,27,17,202,122,44,76,26,17,202,122,44,-31,26,17,202,122,44,76,25,17,202,122,44,-31,25,17,202,122,44,76,24,17,202,122,44,-31,24,17,202,122,44,76,23,17,202,122,44,-31,23,17,202,122,44,76,22,17,202,122,44,-31,22,17,202,122,44,76,21,17,202,122,44,-31,21,17,202,122,44,76,20,17,202,122,44,-31,20,17,202,122,44,76,19,17,202,122,44,-31,19,17,202,122,44,76,18,17,202,122,44,-31,18,17,202,122,44,76,17,17,202,122,44,-31,17,17,202,122,44,76,16,17,202,122,44,-31,16,17,202,122,44,76,15,17,202,122,44,-31,15,17,202,122,44,76,14,17,202,122,44,-31,14,17,202,122,44,76,13,17,202,122,44,-31,13,17,202,122,44,76,12,17,202,122,44,-31,12,17,202,122,44,76,11,17,202,122,44,-31,11,17,202,122,44,76,10,17,202,122,44,-31,10,17,202,122,44,76,9,17,202,122,44,-31,9,17,202,122,44,76,8,17,202,122,44,-31,8,17,202,122,44,76,7,17,202,122,44,-31,7,17,202,122,44,76,6,17,202,122,44,-31,6,17,202,122,44,76,5,17,202,122,44,-31,5,17,202,122,44,76,4,17,202,122,44,-31,4,17,202,122,44,76,3,17,202,122,44,-31,3,17,202,122,44,76,2,17,202,122,44,-31,2,17,202,122,44,76,1,17,202,122,44,-31,1,17,202,122,44,76,0,17,202,122,44,-31,0,17,202,122,44,76,-1,17,202,122,44,-31,-1,17,202,122,44,76,-2,17,202,122,44,-31,-2,17,202,122,44,76,-3,17,202,122,44,-31,-3,17,202,122,44,76,-4,17,202,122,44,-31,-4,17,202,122,44,76,-5,17,202,122,44,-31,-5,17,202,122,44,76,-6,17,202,122,44,-31,-6,17,202,122,44,76,-7,17,202,122,44,-31,-7,17,202,122,44,76,-8,17,202,122,44,-31,-8,17,202,122,44,76,-9,17,202,122,44,-31,-9,17,202,122,44,76,-10,17,202,122,44,-31,-10,17,202,122,44,84,29,2,202,122,44,-39,30,2,202,122,44,76,-11,17,202,122,44,-31,-11,17,202,122,44,76,-12,17,202,122,44,-31,-12,17,202,122,44,76,-13,17,202,122,44,-31,-13,17,202,122,44,76,-14,17,202,122,44,-31,-14,17,202,122,44,76,-15,17,202,122,44,-31,-15,17,202,122,44,76,-16,17,202,122,44,-31,-16,17,202,122,44,76,-17,17,202,122,44,-31,-17,17,202,122,44,76,-18,17,202,122,44,-31,-18,17,202,122,44,76,-19,17,202,122,44,-31,-19,17,202,122,44,76,-20,17,202,122,44,-31,-20,17,202,122,44,76,-21,17,202,122,44,-31,-21,17,202,122,44,76,-22,17,202,122,44,-31,-22,17,202,122,44,76,-23,17,202,122,44,-31,-23,17,202,122,44,76,-24,17,202,122,44,-31,-24,17,202,122,44,76,-25,17,202,122,44,-31,-25,17,202,122,44,76,-26,17,202,122,44,-31,-26,17,202,122,44,76,-27,17,202,122,44,-31,-27,17,202,122,44,76,-28,17,202,122,44,-31,-28,17,202,122,44,76,-29,17,202,122,44,-31,-29,17,202,122,44,76,-30,17,202,122,44,-31,-30,17,202,122,44,76,-31,17,202,122,44,75,-31,17,202,122,44,74,-31,17,202,122,44,73,-31,17,202,122,44,72,-31,17,202,122,44,71,-31,17,202,122,44,70,-31,17,202,122,44,69,-31,17,202,122,44,68,-31,17,202,122,44,67,-31,17,202,122,44,66,-31,17,202,122,44,65,-31,17,202,122,44,64,-31,17,202,122,44,63,-31,17,202,122,44,62,-31,17,202,122,44,61,-31,17,202,122,44,60,-31,17,202,122,44,59,-31,17,202,122,44,58,-31,17,202,122,44,57,-31,17,202,122,44,56,-31,17,202,122,44,55,-31,17,202,122,44,54,-31,17,202,122,44,53,-31,17,202,122,44,52,-31,17,202,122,44,51,-31,17,202,122,44,50,-31,17,202,122,44,49,-31,17,202,122,44,48,-31,17,202,122,44,47,-31,17,202,122,44,46,-31,17,202,122,44,45,-31,17,202,122,44,44,-31,17,202,122,44,43,-31,17,202,122,44,42,-31,17,202,122,44,41,-31,17,202,122,44,40,-31,17,202,122,44,39,-31,17,202,122,44,38,-31,17,202,122,44,37,-31,17,202,122,44,36,-31,17,202,122,44,35,-31,17,202,122,44,34,-31,17,202,122,44,33,-31,17,202,122,44,32,-31,17,202,122,44,31,-31,17,202,122,44,30,-31,17,202,122,44,29,-31,17,202,122,44,28,-31,17,202,122,44,27,-31,17,202,122,44,26,-31,17,202,122,44,25,-31,17,202,122,44,24,-31,17,202,122,44,23,-31,17,202,122,44,22,-31,17,202,122,44,21,-31,17,202,122,44,20,-31,17,202,122,44,19,-31,17,202,122,44,18,-31,17,202,122,44,17,-31,17,202,122,44,16,-31,17,202,122,44,15,-31,17,202,122,44,14,-31,17,202,122,44,13,-31,17,202,122,44,12,-31,17,202,122,44,11,-31,17,202,122,44,10,-31,17,202,122,44,9,-31,17,202,122,44,8,-31,17,202,122,44,7,-31,17,202,122,44,6,-31,17,202,122,44,5,-31,17,202,122,44,4,-31,17,202,122,44,3,-31,17,202,122,44,2,-31,17,202,122,44,1,-31,17,202,122,44,0,-31,17,202,122,44,-1,-31,17,202,122,44,-2,-31,17,202,122,44,-3,-31,17,202,122,44,-4,-31,17,202,122,44,-5,-31,17,202,122,44,84,30,2,202,122,44,-39,31,2,202,122,44,-6,-31,17,202,122,44,-7,-31,17,202,122,44,-8,-31,17,202,122,44,-9,-31,17,202,122,44,-10,-31,17,202,122,44,-11,-31,17,202,122,44,-12,-31,17,202,122,44,-13,-31,17,202,122,44,-14,-31,17,202,122,44,-15,-31,17,202,122,44,-16,-31,17,202,122,44,-17,-31,17,202,122,44,-18,-31,17,202,122,44,-19,-31,17,202,122,44,-20,-31,17,202,122,44,-21,-31,17,202,122,44,-22,-31,17,202,122,44,-23,-31,17,202,122,44,-24,-31,17,202,122,44,-25,-31,17,202,122,44,-26,-31,17,202,122,44,-27,-31,17,202,122,44,-28,-31,17,202,122,44,-29,-31,17,202,122,44,-30,-31,17,202,122,44,-31,-31,17,202,122,44,77,77,16,202,122,44,76,77,16,202,122,44,75,77,16,202,122,44,74,77,16,202,122,44,73,77,16,202,122,44,72,77,16,202,122,44,71,77,16,202,122,44,70,77,16,202,122,44,69,77,16,202,122,44,68,77,16,202,122,44,67,77,16,202,122,44,66,77,16,202,122,44,65,77,16,202,122,44,64,77,16,202,122,44,63,77,16,202,122,44,62,77,16,202,122,44,61,77,16,202,122,44,60,77,16,202,122,44,59,77,16,202,122,44,58,77,16,202,122,44,57,77,16,202,122,44,56,77,16,202,122,44,55,77,16,202,122,44,54,77,16,202,122,44,53,77,16,202,122,44,52,77,16,202,122,44,51,77,16,202,122,44,50,77,16,202,122,44,49,77,16,202,122,44,48,77,16,202,122,44,47,77,16,202,122,44,46,77,16,202,122,44,45,77,16,202,122,44,44,77,16,202,122,44,43,77,16,202,122,44,42,77,16,202,122,44,41,77,16,202,122,44,40,77,16,202,122,44,39,77,16,202,122,44,38,77,16,202,122,44,37,77,16,202,122,44,36,77,16,202,122,44,35,77,16,202,122,44,34,77,16,202,122,44,33,77,16,202,122,44,32,77,16,202,122,44,31,77,16,202,122,44,30,77,16,202,122,44,29,77,16,202,122,44,28,77,16,202,122,44,27,77,16,202,122,44,26,77,16,202,122,44,25,77,16,202,122,44,24,77,16,202,122,44,23,77,16,202,122,44,22,77,16,202,122,44,21,77,16,202,122,44,20,77,16,202,122,44,19,77,16,202,122,44,18,77,16,202,122,44,17,77,16,202,122,44,16,77,16,202,122,44,15,77,16,202,122,44,14,77,16,202,122,44,13,77,16,202,122,44,12,77,16,202,122,44,11,77,16,202,122,44,10,77,16,202,122,44,9,77,16,202,122,44,8,77,16,202,122,44,7,77,16,202,122,44,6,77,16,202,122,44,5,77,16,202,122,44,4,77,16,202,122,44,3,77,16,202,122,44,2,77,16,202,122,44,1,77,16,202,122,44,0,77,16,202,122,44,-1,77,16,202,122,44,-2,77,16,202,122,44,-3,77,16,202,122,44,-4,77,16,202,122,44,-5,77,16,202,122,44,-6,77,16,202,122,44,-7,77,16,202,122,44,-8,77,16,202,122,44,-9,77,16,202,122,44,-10,77,16,202,122,44,-11,77,16,202,122,44,-12,77,16,202,122,44,-13,77,16,202,122,44,-14,77,16,202,122,44,-15,77,16,202,122,44,-16,77,16,202,122,44,-17,77,16,202,122,44,-18,77,16,202,122,44,84,31,2,202,122,44,-39,32,2,202,122,44,-19,77,16,202,122,44,-20,77,16,202,122,44,-21,77,16,202,122,44,-22,77,16,202,122,44,-23,77,16,202,122,44,-24,77,16,202,122,44,-25,77,16,202,122,44,-26,77,16,202,122,44,-27,77,16,202,122,44,-28,77,16,202,122,44,-29,77,16,202,122,44,-30,77,16,202,122,44,-31,77,16,202,122,44,-32,77,16,202,122,44,77,76,16,202,122,44,-32,76,16,202,122,44,77,75,16,202,122,44,-32,75,16,202,122,44,77,74,16,202,122,44,-32,74,16,202,122,44,77,73,16,202,122,44,-32,73,16,202,122,44,77,72,16,202,122,44,-32,72,16,202,122,44,77,71,16,202,122,44,-32,71,16,202,122,44,77,70,16,202,122,44,-32,70,16,202,122,44,77,69,16,202,122,44,-32,69,16,202,122,44,77,68,16,202,122,44,-32,68,16,202,122,44,77,67,16,202,122,44,-32,67,16,202,122,44,77,66,16,202,122,44,-32,66,16,202,122,44,77,65,16,202,122,44,-32,65,16,202,122,44,77,64,16,202,122,44,-32,64,16,202,122,44,77,63,16,202,122,44,-32,63,16,202,122,44,77,62,16,202,122,44,-32,62,16,202,122,44,77,61,16,202,122,44,-32,61,16,202,122,44,77,60,16,202,122,44,-32,60,16,202,122,44,77,59,16,202,122,44,-32,59,16,202,122,44,77,58,16,202,122,44,-32,58,16,202,122,44,77,57,16,202,122,44,-32,57,16,202,122,44,77,56,16,202,122,44,-32,56,16,202,122,44,77,55,16,202,122,44,-32,55,16,202,122,44,77,54,16,202,122,44,-32,54,16,202,122,44,77,53,16,202,122,44,-32,53,16,202,122,44,77,52,16,202,122,44,-32,52,16,202,122,44,77,51,16,202,122,44,-32,51,16,202,122,44,77,50,16,202,122,44,-32,50,16,202,122,44,77,49,16,202,122,44,-32,49,16,202,122,44,77,48,16,202,122,44,-32,48,16,202,122,44,77,47,16,202,122,44,-32,47,16,202,122,44,77,46,16,202,122,44,-32,46,16,202,122,44,77,45,16,202,122,44,-32,45,16,202,122,44,77,44,16,202,122,44,-32,44,16,202,122,44,77,43,16,202,122,44,-32,43,16,202,122,44,77,42,16,202,122,44,-32,42,16,202,122,44,77,41,16,202,122,44,-32,41,16,202,122,44,77,40,16,202,122,44,-32,40,16,202,122,44,77,39,16,202,122,44,-32,39,16,202,122,44,77,38,16,202,122,44,-32,38,16,202,122,44,77,37,16,202,122,44,-32,37,16,202,122,44,77,36,16,202,122,44,-32,36,16,202,122,44,77,35,16,202,122,44,-32,35,16,202,122,44,77,34,16,202,122,44,-32,34,16,202,122,44,77,33,16,202,122,44,-32,33,16,202,122,44,77,32,16,202,122,44,-32,32,16,202,122,44,77,31,16,202,122,44,-32,31,16,202,122,44,77,30,16,202,122,44,-32,30,16,202,122,44,77,29,16,202,122,44,-32,29,16,202,122,44,77,28,16,202,122,44,-32,28,16,202,122,44,77,27,16,202,122,44,-32,27,16,202,122,44,77,26,16,202,122,44,-32,26,16,202,122,44,77,25,16,202,122,44,-32,25,16,202,122,44,77,24,16,202,122,44,-32,24,16,202,122,44,77,23,16,202,122,44,-32,23,16,202,122,44,84,32,2,202,122,44,-39,33,2,202,122,44,77,22,16,202,122,44,-32,22,16,202,122,44,77,21,16,202,122,44,-32,21,16,202,122,44,77,20,16,202,122,44,-32,20,16,202,122,44,77,19,16,202,122,44,-32,19,16,202,122,44,77,18,16,202,122,44,-32,18,16,202,122,44,77,17,16,202,122,44,-32,17,16,202,122,44,77,16,16,202,122,44,-32,16,16,202,122,44,77,15,16,202,122,44,-32,15,16,202,122,44,77,14,16,202,122,44,-32,14,16,202,122,44,77,13,16,202,122,44,-32,13,16,202,122,44,77,12,16,202,122,44,-32,12,16,202,122,44,77,11,16,202,122,44,-32,11,16,202,122,44,77,10,16,202,122,44,-32,10,16,202,122,44,77,9,16,202,122,44,-32,9,16,202,122,44,77,8,16,202,122,44,-32,8,16,202,122,44,77,7,16,202,122,44,-32,7,16,202,122,44,77,6,16,202,122,44,-32,6,16,202,122,44,77,5,16,202,122,44,-32,5,16,202,122,44,77,4,16,202,122,44,-32,4,16,202,122,44,77,3,16,202,122,44,-32,3,16,202,122,44,77,2,16,202,122,44,-32,2,16,202,122,44,77,1,16,202,122,44,-32,1,16,202,122,44,77,0,16,202,122,44,-32,0,16,202,122,44,77,-1,16,202,122,44,-32,-1,16,202,122,44,77,-2,16,202,122,44,-32,-2,16,202,122,44,77,-3,16,202,122,44,-32,-3,16,202,122,44,77,-4,16,202,122,44,-32,-4,16,202,122,44,77,-5,16,202,122,44,-32,-5,16,202,122,44,77,-6,16,202,122,44,-32,-6,16,202,122,44,77,-7,16,202,122,44,-32,-7,16,202,122,44,77,-8,16,202,122,44,-32,-8,16,202,122,44,77,-9,16,202,122,44,-32,-9,16,202,122,44,77,-10,16,202,122,44,-32,-10,16,202,122,44,77,-11,16,202,122,44,-32,-11,16,202,122,44,77,-12,16,202,122,44,-32,-12,16,202,122,44,77,-13,16,202,122,44,-32,-13,16,202,122,44,77,-14,16,202,122,44,-32,-14,16,202,122,44,77,-15,16,202,122,44,-32,-15,16,202,122,44,77,-16,16,202,122,44,-32,-16,16,202,122,44,77,-17,16,202,122,44,-32,-17,16,202,122,44,77,-18,16,202,122,44,-32,-18,16,202,122,44,77,-19,16,202,122,44,-32,-19,16,202,122,44,77,-20,16,202,122,44,-32,-20,16,202,122,44,77,-21,16,202,122,44,-32,-21,16,202,122,44,77,-22,16,202,122,44,-32,-22,16,202,122,44,77,-23,16,202,122,44,-32,-23,16,202,122,44,77,-24,16,202,122,44,-32,-24,16,202,122,44,77,-25,16,202,122,44,-32,-25,16,202,122,44,77,-26,16,202,122,44,-32,-26,16,202,122,44,77,-27,16,202,122,44,-32,-27,16,202,122,44,77,-28,16,202,122,44,-32,-28,16,202,122,44,77,-29,16,202,122,44,-32,-29,16,202,122,44,77,-30,16,202,122,44,-32,-30,16,202,122,44,77,-31,16,202,122,44,-32,-31,16,202,122,44,77,-32,16,202,122,44,76,-32,16,202,122,44,75,-32,16,202,122,44,74,-32,16,202,122,44,73,-32,16,202,122,44,72,-32,16,202,122,44,71,-32,16,202,122,44,70,-32,16,202,122,44,69,-32,16,202,122,44,68,-32,16,202,122,44,67,-32,16,202,122,44,66,-32,16,202,122,44,65,-32,16,202,122,44,64,-32,16,202,122,44,84,33,2,202,122,44,-39,34,2,202,122,44,63,-32,16,202,122,44,62,-32,16,202,122,44,61,-32,16,202,122,44,60,-32,16,202,122,44,59,-32,16,202,122,44,58,-32,16,202,122,44,57,-32,16,202,122,44,56,-32,16,202,122,44,55,-32,16,202,122,44,54,-32,16,202,122,44,53,-32,16,202,122,44,52,-32,16,202,122,44,51,-32,16,202,122,44,50,-32,16,202,122,44,49,-32,16,202,122,44,48,-32,16,202,122,44,47,-32,16,202,122,44,46,-32,16,202,122,44,45,-32,16,202,122,44,44,-32,16,202,122,44,43,-32,16,202,122,44,42,-32,16,202,122,44,41,-32,16,202,122,44,40,-32,16,202,122,44,39,-32,16,202,122,44,38,-32,16,202,122,44,37,-32,16,202,122,44,36,-32,16,202,122,44,35,-32,16,202,122,44,34,-32,16,202,122,44,33,-32,16,202,122,44,32,-32,16,202,122,44,31,-32,16,202,122,44,30,-32,16,202,122,44,29,-32,16,202,122,44,28,-32,16,202,122,44,27,-32,16,202,122,44,26,-32,16,202,122,44,25,-32,16,202,122,44,24,-32,16,202,122,44,23,-32,16,202,122,44,22,-32,16,202,122,44,21,-32,16,202,122,44,20,-32,16,202,122,44,19,-32,16,202,122,44,18,-32,16,202,122,44,17,-32,16,202,122,44,16,-32,16,202,122,44,15,-32,16,202,122,44,14,-32,16,202,122,44,13,-32,16,202,122,44,12,-32,16,202,122,44,11,-32,16,202,122,44,10,-32,16,202,122,44,9,-32,16,202,122,44,8,-32,16,202,122,44,7,-32,16,202,122,44,6,-32,16,202,122,44,5,-32,16,202,122,44,4,-32,16,202,122,44,3,-32,16,202,122,44,2,-32,16,202,122,44,1,-32,16,202,122,44,0,-32,16,202,122,44,-1,-32,16,202,122,44,-2,-32,16,202,122,44,-3,-32,16,202,122,44,-4,-32,16,202,122,44,-5,-32,16,202,122,44,-6,-32,16,202,122,44,-7,-32,16,202,122,44,-8,-32,16,202,122,44,-9,-32,16,202,122,44,-10,-32,16,202,122,44,-11,-32,16,202,122,44,-12,-32,16,202,122,44,-13,-32,16,202,122,44,-14,-32,16,202,122,44,-15,-32,16,202,122,44,-16,-32,16,202,122,44,-17,-32,16,202,122,44,-18,-32,16,202,122,44,-19,-32,16,202,122,44,-20,-32,16,202,122,44,-21,-32,16,202,122,44,-22,-32,16,202,122,44,-23,-32,16,202,122,44,-24,-32,16,202,122,44,-25,-32,16,202,122,44,-26,-32,16,202,122,44,-27,-32,16,202,122,44,-28,-32,16,202,122,44,-29,-32,16,202,122,44,-30,-32,16,202,122,44,-31,-32,16,202,122,44,-32,-32,16,202,122,44,77,77,15,202,122,44,76,77,15,202,122,44,75,77,15,202,122,44,74,77,15,202,122,44,73,77,15,202,122,44,72,77,15,202,122,44,71,77,15,202,122,44,70,77,15,202,122,44,69,77,15,202,122,44,68,77,15,202,122,44,67,77,15,202,122,44,66,77,15,202,122,44,65,77,15,202,122,44,64,77,15,202,122,44,63,77,15,202,122,44,62,77,15,202,122,44,61,77,15,202,122,44,60,77,15,202,122,44,59,77,15,202,122,44,58,77,15,202,122,44,57,77,15,202,122,44,56,77,15,202,122,44,55,77,15,202,122,44,54,77,15,202,122,44,53,77,15,202,122,44,52,77,15,202,122,44,84,34,2,202,122,44,-39,35,2,202,122,44,51,77,15,202,122,44,50,77,15,202,122,44,49,77,15,202,122,44,48,77,15,202,122,44,47,77,15,202,122,44,46,77,15,202,122,44,45,77,15,202,122,44,44,77,15,202,122,44,43,77,15,202,122,44,42,77,15,202,122,44,41,77,15,202,122,44,40,77,15,202,122,44,39,77,15,202,122,44,38,77,15,202,122,44,37,77,15,202,122,44,36,77,15,202,122,44,35,77,15,202,122,44,34,77,15,202,122,44,33,77,15,202,122,44,32,77,15,202,122,44,31,77,15,202,122,44,30,77,15,202,122,44,29,77,15,202,122,44,28,77,15,202,122,44,27,77,15,202,122,44,26,77,15,202,122,44,25,77,15,202,122,44,24,77,15,202,122,44,23,77,15,202,122,44,22,77,15,202,122,44,21,77,15,202,122,44,20,77,15,202,122,44,19,77,15,202,122,44,18,77,15,202,122,44,17,77,15,202,122,44,16,77,15,202,122,44,15,77,15,202,122,44,14,77,15,202,122,44,13,77,15,202,122,44,12,77,15,202,122,44,11,77,15,202,122,44,10,77,15,202,122,44,9,77,15,202,122,44,8,77,15,202,122,44,7,77,15,202,122,44,6,77,15,202,122,44,5,77,15,202,122,44,4,77,15,202,122,44,3,77,15,202,122,44,2,77,15,202,122,44,1,77,15,202,122,44,0,77,15,202,122,44,-1,77,15,202,122,44,-2,77,15,202,122,44,-3,77,15,202,122,44,-4,77,15,202,122,44,-5,77,15,202,122,44,-6,77,15,202,122,44,-7,77,15,202,122,44,-8,77,15,202,122,44,-9,77,15,202,122,44,-10,77,15,202,122,44,-11,77,15,202,122,44,-12,77,15,202,122,44,-13,77,15,202,122,44,-14,77,15,202,122,44,-15,77,15,202,122,44,-16,77,15,202,122,44,-17,77,15,202,122,44,-18,77,15,202,122,44,-19,77,15,202,122,44,-20,77,15,202,122,44,-21,77,15,202,122,44,-22,77,15,202,122,44,-23,77,15,202,122,44,-24,77,15,202,122,44,-25,77,15,202,122,44,-26,77,15,202,122,44,-27,77,15,202,122,44,-28,77,15,202,122,44,-29,77,15,202,122,44,-30,77,15,202,122,44,-31,77,15,202,122,44,-32,77,15,202,122,44,77,76,15,202,122,44,-32,76,15,202,122,44,77,75,15,202,122,44,-32,75,15,202,122,44,77,74,15,202,122,44,-32,74,15,202,122,44,77,73,15,202,122,44,-32,73,15,202,122,44,77,72,15,202,122,44,-32,72,15,202,122,44,77,71,15,202,122,44,-32,71,15,202,122,44,77,70,15,202,122,44,-32,70,15,202,122,44,77,69,15,202,122,44,-32,69,15,202,122,44,77,68,15,202,122,44,-32,68,15,202,122,44,77,67,15,202,122,44,-32,67,15,202,122,44,77,66,15,202,122,44,-32,66,15,202,122,44,77,65,15,202,122,44,-32,65,15,202,122,44,77,64,15,202,122,44,-32,64,15,202,122,44,77,63,15,202,122,44,-32,63,15,202,122,44,77,62,15,202,122,44,-32,62,15,202,122,44,77,61,15,202,122,44,-32,61,15,202,122,44,77,60,15,202,122,44,-32,60,15,202,122,44,77,59,15,202,122,44,-32,59,15,202,122,44,77,58,15,202,122,44,-32,58,15,202,122,44,84,35,2,202,122,44,-39,36,2,202,122,44,77,57,15,202,122,44,-32,57,15,202,122,44,77,56,15,202,122,44,-32,56,15,202,122,44,77,55,15,202,122,44,-32,55,15,202,122,44,77,54,15,202,122,44,-32,54,15,202,122,44,77,53,15,202,122,44,-32,53,15,202,122,44,77,52,15,202,122,44,-32,52,15,202,122,44,77,51,15,202,122,44,-32,51,15,202,122,44,77,50,15,202,122,44,-32,50,15,202,122,44,77,49,15,202,122,44,-32,49,15,202,122,44,77,48,15,202,122,44,-32,48,15,202,122,44,77,47,15,202,122,44,-32,47,15,202,122,44,77,46,15,202,122,44,-32,46,15,202,122,44,77,45,15,202,122,44,-32,45,15,202,122,44,77,44,15,202,122,44,-32,44,15,202,122,44,77,43,15,202,122,44,-32,43,15,202,122,44,77,42,15,202,122,44,-32,42,15,202,122,44,77,41,15,202,122,44,-32,41,15,202,122,44,77,40,15,202,122,44,-32,40,15,202,122,44,77,39,15,202,122,44,-32,39,15,202,122,44,77,38,15,202,122,44,-32,38,15,202,122,44,77,37,15,202,122,44,-32,37,15,202,122,44,77,36,15,202,122,44,-32,36,15,202,122,44,77,35,15,202,122,44,-32,35,15,202,122,44,77,34,15,202,122,44,-32,34,15,202,122,44,77,33,15,202,122,44,-32,33,15,202,122,44,77,32,15,202,122,44,-32,32,15,202,122,44,77,31,15,202,122,44,-32,31,15,202,122,44,77,30,15,202,122,44,-32,30,15,202,122,44,77,29,15,202,122,44,-32,29,15,202,122,44,77,28,15,202,122,44,-32,28,15,202,122,44,77,27,15,202,122,44,-32,27,15,202,122,44,77,26,15,202,122,44,-32,26,15,202,122,44,77,25,15,202,122,44,-32,25,15,202,122,44,77,24,15,202,122,44,-32,24,15,202,122,44,77,23,15,202,122,44,-32,23,15,202,122,44,77,22,15,202,122,44,-32,22,15,202,122,44,77,21,15,202,122,44,-32,21,15,202,122,44,77,20,15,202,122,44,-32,20,15,202,122,44,77,19,15,202,122,44,-32,19,15,202,122,44,77,18,15,202,122,44,-32,18,15,202,122,44,77,17,15,202,122,44,-32,17,15,202,122,44,77,16,15,202,122,44,-32,16,15,202,122,44,77,15,15,202,122,44,-32,15,15,202,122,44,77,14,15,202,122,44,-32,14,15,202,122,44,77,13,15,202,122,44,-32,13,15,202,122,44,77,12,15,202,122,44,-32,12,15,202,122,44,77,11,15,202,122,44,-32,11,15,202,122,44,77,10,15,202,122,44,-32,10,15,202,122,44,77,9,15,202,122,44,-32,9,15,202,122,44,77,8,15,202,122,44,-32,8,15,202,122,44,77,7,15,202,122,44,-32,7,15,202,122,44,77,6,15,202,122,44,-32,6,15,202,122,44,77,5,15,202,122,44,-32,5,15,202,122,44,77,4,15,202,122,44,-32,4,15,202,122,44,77,3,15,202,122,44,-32,3,15,202,122,44,77,2,15,202,122,44,-32,2,15,202,122,44,77,1,15,202,122,44,-32,1,15,202,122,44,77,0,15,202,122,44,-32,0,15,202,122,44,77,-1,15,202,122,44,-32,-1,15,202,122,44,77,-2,15,202,122,44,-32,-2,15,202,122,44,77,-3,15,202,122,44,-32,-3,15,202,122,44,84,36,2,202,122,44,-39,37,2,202,122,44,77,-4,15,202,122,44,-32,-4,15,202,122,44,77,-5,15,202,122,44,-32,-5,15,202,122,44,77,-6,15,202,122,44,-32,-6,15,202,122,44,77,-7,15,202,122,44,-32,-7,15,202,122,44,77,-8,15,202,122,44,-32,-8,15,202,122,44,77,-9,15,202,122,44,-32,-9,15,202,122,44,77,-10,15,202,122,44,-32,-10,15,202,122,44,77,-11,15,202,122,44,-32,-11,15,202,122,44,77,-12,15,202,122,44,-32,-12,15,202,122,44,77,-13,15,202,122,44,-32,-13,15,202,122,44,77,-14,15,202,122,44,-32,-14,15,202,122,44,77,-15,15,202,122,44,-32,-15,15,202,122,44,77,-16,15,202,122,44,-32,-16,15,202,122,44,77,-17,15,202,122,44,-32,-17,15,202,122,44,77,-18,15,202,122,44,-32,-18,15,202,122,44,77,-19,15,202,122,44,-32,-19,15,202,122,44,77,-20,15,202,122,44,-32,-20,15,202,122,44,77,-21,15,202,122,44,-32,-21,15,202,122,44,77,-22,15,202,122,44,-32,-22,15,202,122,44,77,-23,15,202,122,44,-32,-23,15,202,122,44,77,-24,15,202,122,44,-32,-24,15,202,122,44,77,-25,15,202,122,44,-32,-25,15,202,122,44,77,-26,15,202,122,44,-32,-26,15,202,122,44,77,-27,15,202,122,44,-32,-27,15,202,122,44,77,-28,15,202,122,44,-32,-28,15,202,122,44,77,-29,15,202,122,44,-32,-29,15,202,122,44,77,-30,15,202,122,44,-32,-30,15,202,122,44,77,-31,15,202,122,44,-32,-31,15,202,122,44,77,-32,15,202,122,44,76,-32,15,202,122,44,75,-32,15,202,122,44,74,-32,15,202,122,44,73,-32,15,202,122,44,72,-32,15,202,122,44,71,-32,15,202,122,44,70,-32,15,202,122,44,69,-32,15,202,122,44,68,-32,15,202,122,44,67,-32,15,202,122,44,66,-32,15,202,122,44,65,-32,15,202,122,44,64,-32,15,202,122,44,63,-32,15,202,122,44,62,-32,15,202,122,44,61,-32,15,202,122,44,60,-32,15,202,122,44,59,-32,15,202,122,44,58,-32,15,202,122,44,57,-32,15,202,122,44,56,-32,15,202,122,44,55,-32,15,202,122,44,54,-32,15,202,122,44,53,-32,15,202,122,44,52,-32,15,202,122,44,51,-32,15,202,122,44,50,-32,15,202,122,44,49,-32,15,202,122,44,48,-32,15,202,122,44,47,-32,15,202,122,44,46,-32,15,202,122,44,45,-32,15,202,122,44,44,-32,15,202,122,44,43,-32,15,202,122,44,42,-32,15,202,122,44,41,-32,15,202,122,44,40,-32,15,202,122,44,39,-32,15,202,122,44,38,-32,15,202,122,44,37,-32,15,202,122,44,36,-32,15,202,122,44,35,-32,15,202,122,44,34,-32,15,202,122,44,33,-32,15,202,122,44,32,-32,15,202,122,44,31,-32,15,202,122,44,30,-32,15,202,122,44,29,-32,15,202,122,44,28,-32,15,202,122,44,27,-32,15,202,122,44,26,-32,15,202,122,44,25,-32,15,202,122,44,24,-32,15,202,122,44,23,-32,15,202,122,44,22,-32,15,202,122,44,21,-32,15,202,122,44,20,-32,15,202,122,44,19,-32,15,202,122,44,18,-32,15,202,122,44,17,-32,15,202,122,44,16,-32,15,202,122,44,15,-32,15,202,122,44,14,-32,15,202,122,44,13,-32,15,202,122,44,12,-32,15,202,122,44,84,37,2,202,122,44,-39,38,2,202,122,44,11,-32,15,202,122,44,10,-32,15,202,122,44,9,-32,15,202,122,44,8,-32,15,202,122,44,7,-32,15,202,122,44,6,-32,15,202,122,44,5,-32,15,202,122,44,4,-32,15,202,122,44,3,-32,15,202,122,44,2,-32,15,202,122,44,1,-32,15,202,122,44,0,-32,15,202,122,44,-1,-32,15,202,122,44,-2,-32,15,202,122,44,-3,-32,15,202,122,44,-4,-32,15,202,122,44,-5,-32,15,202,122,44,-6,-32,15,202,122,44,-7,-32,15,202,122,44,-8,-32,15,202,122,44,-9,-32,15,202,122,44,-10,-32,15,202,122,44,-11,-32,15,202,122,44,-12,-32,15,202,122,44,-13,-32,15,202,122,44,-14,-32,15,202,122,44,-15,-32,15,202,122,44,-16,-32,15,202,122,44,-17,-32,15,202,122,44,-18,-32,15,202,122,44,-19,-32,15,202,122,44,-20,-32,15,202,122,44,-21,-32,15,202,122,44,-22,-32,15,202,122,44,-23,-32,15,202,122,44,-24,-32,15,202,122,44,-25,-32,15,202,122,44,-26,-32,15,202,122,44,-27,-32,15,202,122,44,-28,-32,15,202,122,44,-29,-32,15,202,122,44,-30,-32,15,202,122,44,-31,-32,15,202,122,44,-32,-32,15,202,122,44,78,78,14,202,122,44,77,78,14,202,122,44,76,78,14,202,122,44,75,78,14,202,122,44,74,78,14,202,122,44,73,78,14,202,122,44,72,78,14,202,122,44,71,78,14,202,122,44,70,78,14,202,122,44,69,78,14,202,122,44,68,78,14,202,122,44,67,78,14,202,122,44,66,78,14,202,122,44,65,78,14,202,122,44,64,78,14,202,122,44,63,78,14,202,122,44,62,78,14,202,122,44,61,78,14,202,122,44,60,78,14,202,122,44,59,78,14,202,122,44,58,78,14,202,122,44,57,78,14,202,122,44,56,78,14,202,122,44,55,78,14,202,122,44,54,78,14,202,122,44,53,78,14,202,122,44,52,78,14,202,122,44,51,78,14,202,122,44,50,78,14,202,122,44,49,78,14,202,122,44,48,78,14,202,122,44,47,78,14,202,122,44,46,78,14,202,122,44,45,78,14,202,122,44,44,78,14,202,122,44,43,78,14,202,122,44,42,78,14,202,122,44,41,78,14,202,122,44,40,78,14,202,122,44,39,78,14,202,122,44,38,78,14,202,122,44,37,78,14,202,122,44,36,78,14,202,122,44,35,78,14,202,122,44,34,78,14,202,122,44,33,78,14,202,122,44,32,78,14,202,122,44,31,78,14,202,122,44,30,78,14,202,122,44,29,78,14,202,122,44,28,78,14,202,122,44,27,78,14,202,122,44,26,78,14,202,122,44,25,78,14,202,122,44,24,78,14,202,122,44,23,78,14,202,122,44,22,78,14,202,122,44,21,78,14,202,122,44,20,78,14,202,122,44,19,78,14,202,122,44,18,78,14,202,122,44,17,78,14,202,122,44,16,78,14,202,122,44,15,78,14,202,122,44,14,78,14,202,122,44,13,78,14,202,122,44,12,78,14,202,122,44,11,78,14,202,122,44,10,78,14,202,122,44,9,78,14,202,122,44,8,78,14,202,122,44,7,78,14,202,122,44,6,78,14,202,122,44,5,78,14,202,122,44,4,78,14,202,122,44,3,78,14,202,122,44,2,78,14,202,122,44,1,78,14,202,122,44,84,38,2,202,122,44,-39,39,2,202,122,44,0,78,14,202,122,44,-1,78,14,202,122,44,-2,78,14,202,122,44,-3,78,14,202,122,44,-4,78,14,202,122,44,-5,78,14,202,122,44,-6,78,14,202,122,44,-7,78,14,202,122,44,-8,78,14,202,122,44,-9,78,14,202,122,44,-10,78,14,202,122,44,-11,78,14,202,122,44,-12,78,14,202,122,44,-13,78,14,202,122,44,-14,78,14,202,122,44,-15,78,14,202,122,44,-16,78,14,202,122,44,-17,78,14,202,122,44,-18,78,14,202,122,44,-19,78,14,202,122,44,-20,78,14,202,122,44,-21,78,14,202,122,44,-22,78,14,202,122,44,-23,78,14,202,122,44,-24,78,14,202,122,44,-25,78,14,202,122,44,-26,78,14,202,122,44,-27,78,14,202,122,44,-28,78,14,202,122,44,-29,78,14,202,122,44,-30,78,14,202,122,44,-31,78,14,202,122,44,-32,78,14,202,122,44,-33,78,14,202,122,44,78,77,14,202,122,44,-33,77,14,202,122,44,78,76,14,202,122,44,-33,76,14,202,122,44,78,75,14,202,122,44,-33,75,14,202,122,44,78,74,14,202,122,44,-33,74,14,202,122,44,78,73,14,202,122,44,-33,73,14,202,122,44,78,72,14,202,122,44,-33,72,14,202,122,44,78,71,14,202,122,44,-33,71,14,202,122,44,78,70,14,202,122,44,-33,70,14,202,122,44,78,69,14,202,122,44,-33,69,14,202,122,44,78,68,14,202,122,44,-33,68,14,202,122,44,78,67,14,202,122,44,-33,67,14,202,122,44,78,66,14,202,122,44,-33,66,14,202,122,44,78,65,14,202,122,44,-33,65,14,202,122,44,78,64,14,202,122,44,-33,64,14,202,122,44,78,63,14,202,122,44,-33,63,14,202,122,44,78,62,14,202,122,44,-33,62,14,202,122,44,78,61,14,202,122,44,-33,61,14,202,122,44,78,60,14,202,122,44,-33,60,14,202,122,44,78,59,14,202,122,44,-33,59,14,202,122,44,78,58,14,202,122,44,-33,58,14,202,122,44,78,57,14,202,122,44,-33,57,14,202,122,44,78,56,14,202,122,44,-33,56,14,202,122,44,78,55,14,202,122,44,-33,55,14,202,122,44,78,54,14,202,122,44,-33,54,14,202,122,44,78,53,14,202,122,44,-33,53,14,202,122,44,78,52,14,202,122,44,-33,52,14,202,122,44,78,51,14,202,122,44,-33,51,14,202,122,44,78,50,14,202,122,44,-33,50,14,202,122,44,78,49,14,202,122,44,-33,49,14,202,122,44,78,48,14,202,122,44,-33,48,14,202,122,44,78,47,14,202,122,44,-33,47,14,202,122,44,78,46,14,202,122,44,-33,46,14,202,122,44,78,45,14,202,122,44,-33,45,14,202,122,44,78,44,14,202,122,44,-33,44,14,202,122,44,78,43,14,202,122,44,-33,43,14,202,122,44,78,42,14,202,122,44,-33,42,14,202,122,44,78,41,14,202,122,44,-33,41,14,202,122,44,78,40,14,202,122,44,-33,40,14,202,122,44,78,39,14,202,122,44,-33,39,14,202,122,44,78,38,14,202,122,44,-33,38,14,202,122,44,78,37,14,202,122,44,-33,37,14,202,122,44,78,36,14,202,122,44,-33,36,14,202,122,44,78,35,14,202,122,44,-33,35,14,202,122,44,78,34,14,202,122,44,-33,34,14,202,122,44,84,39,2,202,122,44,-39,40,2,202,122,44,78,33,14,202,122,44,-33,33,14,202,122,44,78,32,14,202,122,44,-33,32,14,202,122,44,78,31,14,202,122,44,-33,31,14,202,122,44,78,30,14,202,122,44,-33,30,14,202,122,44,78,29,14,202,122,44,-33,29,14,202,122,44,78,28,14,202,122,44,-33,28,14,202,122,44,78,27,14,202,122,44,-33,27,14,202,122,44,78,26,14,202,122,44,-33,26,14,202,122,44,78,25,14,202,122,44,-33,25,14,202,122,44,78,24,14,202,122,44,-33,24,14,202,122,44,78,23,14,202,122,44,-33,23,14,202,122,44,78,22,14,202,122,44,-33,22,14,202,122,44,78,21,14,202,122,44,-33,21,14,202,122,44,78,20,14,202,122,44,-33,20,14,202,122,44,78,19,14,202,122,44,-33,19,14,202,122,44,78,18,14,202,122,44,-33,18,14,202,122,44,78,17,14,202,122,44,-33,17,14,202,122,44,78,16,14,202,122,44,-33,16,14,202,122,44,78,15,14,202,122,44,-33,15,14,202,122,44,78,14,14,202,122,44,-33,14,14,202,122,44,78,13,14,202,122,44,-33,13,14,202,122,44,78,12,14,202,122,44,-33,12,14,202,122,44,78,11,14,202,122,44,-33,11,14,202,122,44,78,10,14,202,122,44,-33,10,14,202,122,44,78,9,14,202,122,44,-33,9,14,202,122,44,78,8,14,202,122,44,-33,8,14,202,122,44,78,7,14,202,122,44,-33,7,14,202,122,44,78,6,14,202,122,44,-33,6,14,202,122,44,78,5,14,202,122,44,-33,5,14,202,122,44,78,4,14,202,122,44,-33,4,14,202,122,44,78,3,14,202,122,44,-33,3,14,202,122,44,78,2,14,202,122,44,-33,2,14,202,122,44,78,1,14,202,122,44,-33,1,14,202,122,44,78,0,14,202,122,44,-33,0,14,202,122,44,78,-1,14,202,122,44,-33,-1,14,202,122,44,78,-2,14,202,122,44,-33,-2,14,202,122,44,78,-3,14,202,122,44,-33,-3,14,202,122,44,78,-4,14,202,122,44,-33,-4,14,202,122,44,78,-5,14,202,122,44,-33,-5,14,202,122,44,78,-6,14,202,122,44,-33,-6,14,202,122,44,78,-7,14,202,122,44,-33,-7,14,202,122,44,78,-8,14,202,122,44,-33,-8,14,202,122,44,78,-9,14,202,122,44,-33,-9,14,202,122,44,78,-10,14,202,122,44,-33,-10,14,202,122,44,78,-11,14,202,122,44,-33,-11,14,202,122,44,78,-12,14,202,122,44,-33,-12,14,202,122,44,78,-13,14,202,122,44,-33,-13,14,202,122,44,78,-14,14,202,122,44,-33,-14,14,202,122,44,78,-15,14,202,122,44,-33,-15,14,202,122,44,78,-16,14,202,122,44,-33,-16,14,202,122,44,78,-17,14,202,122,44,-33,-17,14,202,122,44,78,-18,14,202,122,44,-33,-18,14,202,122,44,78,-19,14,202,122,44,-33,-19,14,202,122,44,78,-20,14,202,122,44,-33,-20,14,202,122,44,78,-21,14,202,122,44,-33,-21,14,202,122,44,78,-22,14,202,122,44,-33,-22,14,202,122,44,78,-23,14,202,122,44,-33,-23,14,202,122,44,78,-24,14,202,122,44,-33,-24,14,202,122,44,78,-25,14,202,122,44,-33,-25,14,202,122,44,78,-26,14,202,122,44,-33,-26,14,202,122,44,78,-27,14,202,122,44,-33,-27,14,202,122,44,84,40,2,202,122,44,-39,41,2,202,122,44,78,-28,14,202,122,44,-33,-28,14,202,122,44,78,-29,14,202,122,44,-33,-29,14,202,122,44,78,-30,14,202,122,44,-33,-30,14,202,122,44,78,-31,14,202,122,44,-33,-31,14,202,122,44,78,-32,14,202,122,44,-33,-32,14,202,122,44,78,-33,14,202,122,44,77,-33,14,202,122,44,76,-33,14,202,122,44,75,-33,14,202,122,44,74,-33,14,202,122,44,73,-33,14,202,122,44,72,-33,14,202,122,44,71,-33,14,202,122,44,70,-33,14,202,122,44,69,-33,14,202,122,44,68,-33,14,202,122,44,67,-33,14,202,122,44,66,-33,14,202,122,44,65,-33,14,202,122,44,64,-33,14,202,122,44,63,-33,14,202,122,44,62,-33,14,202,122,44,61,-33,14,202,122,44,60,-33,14,202,122,44,59,-33,14,202,122,44,58,-33,14,202,122,44,57,-33,14,202,122,44,56,-33,14,202,122,44,55,-33,14,202,122,44,54,-33,14,202,122,44,53,-33,14,202,122,44,52,-33,14,202,122,44,51,-33,14,202,122,44,50,-33,14,202,122,44,49,-33,14,202,122,44,48,-33,14,202,122,44,47,-33,14,202,122,44,46,-33,14,202,122,44,45,-33,14,202,122,44,44,-33,14,202,122,44,43,-33,14,202,122,44,42,-33,14,202,122,44,41,-33,14,202,122,44,40,-33,14,202,122,44,39,-33,14,202,122,44,38,-33,14,202,122,44,37,-33,14,202,122,44,36,-33,14,202,122,44,35,-33,14,202,122,44,34,-33,14,202,122,44,33,-33,14,202,122,44,32,-33,14,202,122,44,31,-33,14,202,122,44,30,-33,14,202,122,44,29,-33,14,202,122,44,28,-33,14,202,122,44,27,-33,14,202,122,44,26,-33,14,202,122,44,25,-33,14,202,122,44,24,-33,14,202,122,44,23,-33,14,202,122,44,22,-33,14,202,122,44,21,-33,14,202,122,44,20,-33,14,202,122,44,19,-33,14,202,122,44,18,-33,14,202,122,44,17,-33,14,202,122,44,16,-33,14,202,122,44,15,-33,14,202,122,44,14,-33,14,202,122,44,13,-33,14,202,122,44,12,-33,14,202,122,44,11,-33,14,202,122,44,10,-33,14,202,122,44,9,-33,14,202,122,44,8,-33,14,202,122,44,7,-33,14,202,122,44,6,-33,14,202,122,44,5,-33,14,202,122,44,4,-33,14,202,122,44,3,-33,14,202,122,44,2,-33,14,202,122,44,1,-33,14,202,122,44,0,-33,14,202,122,44,-1,-33,14,202,122,44,-2,-33,14,202,122,44,-3,-33,14,202,122,44,-4,-33,14,202,122,44,-5,-33,14,202,122,44,-6,-33,14,202,122,44,-7,-33,14,202,122,44,-8,-33,14,202,122,44,-9,-33,14,202,122,44,-10,-33,14,202,122,44,-11,-33,14,202,122,44,-12,-33,14,202,122,44,-13,-33,14,202,122,44,-14,-33,14,202,122,44,-15,-33,14,202,122,44,-16,-33,14,202,122,44,-17,-33,14,202,122,44,-18,-33,14,202,122,44,-19,-33,14,202,122,44,-20,-33,14,202,122,44,-21,-33,14,202,122,44,-22,-33,14,202,122,44,-23,-33,14,202,122,44,-24,-33,14,202,122,44,-25,-33,14,202,122,44,-26,-33,14,202,122,44,-27,-33,14,202,122,44,-28,-33,14,202,122,44,-29,-33,14,202,122,44,-30,-33,14,202,122,44,-31,-33,14,202,122,44,-32,-33,14,202,122,44,-33,-33,14,202,122,44,84,41,2,202,122,44,-39,42,2,202,122,44,78,78,13,202,122,44,77,78,13,202,122,44,76,78,13,202,122,44,75,78,13,202,122,44,74,78,13,202,122,44,73,78,13,202,122,44,72,78,13,202,122,44,71,78,13,202,122,44,70,78,13,202,122,44,69,78,13,202,122,44,68,78,13,202,122,44,67,78,13,202,122,44,66,78,13,202,122,44,65,78,13,202,122,44,64,78,13,202,122,44,63,78,13,202,122,44,62,78,13,202,122,44,61,78,13,202,122,44,60,78,13,202,122,44,59,78,13,202,122,44,58,78,13,202,122,44,57,78,13,202,122,44,56,78,13,202,122,44,55,78,13,202,122,44,54,78,13,202,122,44,53,78,13,202,122,44,52,78,13,202,122,44,51,78,13,202,122,44,50,78,13,202,122,44,49,78,13,202,122,44,48,78,13,202,122,44,47,78,13,202,122,44,46,78,13,202,122,44,45,78,13,202,122,44,44,78,13,202,122,44,43,78,13,202,122,44,42,78,13,202,122,44,41,78,13,202,122,44,40,78,13,202,122,44,39,78,13,202,122,44,38,78,13,202,122,44,37,78,13,202,122,44,36,78,13,202,122,44,35,78,13,202,122,44,34,78,13,202,122,44,33,78,13,202,122,44,32,78,13,202,122,44,31,78,13,202,122,44,30,78,13,202,122,44,29,78,13,202,122,44,28,78,13,202,122,44,27,78,13,202,122,44,26,78,13,202,122,44,25,78,13,202,122,44,24,78,13,202,122,44,23,78,13,202,122,44,22,78,13,202,122,44,21,78,13,202,122,44,20,78,13,202,122,44,19,78,13,202,122,44,18,78,13,202,122,44,17,78,13,202,122,44,16,78,13,202,122,44,15,78,13,202,122,44,14,78,13,202,122,44,13,78,13,202,122,44,12,78,13,202,122,44,11,78,13,202,122,44,10,78,13,202,122,44,9,78,13,202,122,44,8,78,13,202,122,44,7,78,13,202,122,44,6,78,13,202,122,44,5,78,13,202,122,44,4,78,13,202,122,44,3,78,13,202,122,44,2,78,13,202,122,44,1,78,13,202,122,44,0,78,13,202,122,44,-1,78,13,202,122,44,-2,78,13,202,122,44,-3,78,13,202,122,44,-4,78,13,202,122,44,-5,78,13,202,122,44,-6,78,13,202,122,44,-7,78,13,202,122,44,-8,78,13,202,122,44,-9,78,13,202,122,44,-10,78,13,202,122,44,-11,78,13,202,122,44,-12,78,13,202,122,44,-13,78,13,202,122,44,-14,78,13,202,122,44,-15,78,13,202,122,44,-16,78,13,202,122,44,-17,78,13,202,122,44,-18,78,13,202,122,44,-19,78,13,202,122,44,-20,78,13,202,122,44,-21,78,13,202,122,44,-22,78,13,202,122,44,-23,78,13,202,122,44,-24,78,13,202,122,44,-25,78,13,202,122,44,-26,78,13,202,122,44,-27,78,13,202,122,44,-28,78,13,202,122,44,-29,78,13,202,122,44,-30,78,13,202,122,44,-31,78,13,202,122,44,-32,78,13,202,122,44,-33,78,13,202,122,44,78,77,13,202,122,44,-33,77,13,202,122,44,78,76,13,202,122,44,-33,76,13,202,122,44,78,75,13,202,122,44,-33,75,13,202,122,44,78,74,13,202,122,44,-33,74,13,202,122,44,78,73,13,202,122,44,-33,73,13,202,122,44,84,42,2,202,122,44,-39,43,2,202,122,44,78,72,13,202,122,44,-33,72,13,202,122,44,78,71,13,202,122,44,-33,71,13,202,122,44,78,70,13,202,122,44,-33,70,13,202,122,44,78,69,13,202,122,44,-33,69,13,202,122,44,78,68,13,202,122,44,-33,68,13,202,122,44,78,67,13,202,122,44,-33,67,13,202,122,44,78,66,13,202,122,44,-33,66,13,202,122,44,78,65,13,202,122,44,-33,65,13,202,122,44,78,64,13,202,122,44,-33,64,13,202,122,44,78,63,13,202,122,44,-33,63,13,202,122,44,78,62,13,202,122,44,-33,62,13,202,122,44,78,61,13,202,122,44,-33,61,13,202,122,44,78,60,13,202,122,44,-33,60,13,202,122,44,78,59,13,202,122,44,-33,59,13,202,122,44,78,58,13,202,122,44,-33,58,13,202,122,44,78,57,13,202,122,44,-33,57,13,202,122,44,78,56,13,202,122,44,-33,56,13,202,122,44,78,55,13,202,122,44,-33,55,13,202,122,44,78,54,13,202,122,44,-33,54,13,202,122,44,78,53,13,202,122,44,-33,53,13,202,122,44,78,52,13,202,122,44,-33,52,13,202,122,44,78,51,13,202,122,44,-33,51,13,202,122,44,78,50,13,202,122,44,-33,50,13,202,122,44,78,49,13,202,122,44,-33,49,13,202,122,44,78,48,13,202,122,44,-33,48,13,202,122,44,78,47,13,202,122,44,-33,47,13,202,122,44,78,46,13,202,122,44,-33,46,13,202,122,44,78,45,13,202,122,44,-33,45,13,202,122,44,78,44,13,202,122,44,-33,44,13,202,122,44,78,43,13,202,122,44,-33,43,13,202,122,44,78,42,13,202,122,44,-33,42,13,202,122,44,78,41,13,202,122,44,-33,41,13,202,122,44,78,40,13,202,122,44,-33,40,13,202,122,44,78,39,13,202,122,44,-33,39,13,202,122,44,78,38,13,202,122,44,-33,38,13,202,122,44,78,37,13,202,122,44,-33,37,13,202,122,44,78,36,13,202,122,44,-33,36,13,202,122,44,78,35,13,202,122,44,-33,35,13,202,122,44,78,34,13,202,122,44,-33,34,13,202,122,44,78,33,13,202,122,44,-33,33,13,202,122,44,78,32,13,202,122,44,-33,32,13,202,122,44,78,31,13,202,122,44,-33,31,13,202,122,44,78,30,13,202,122,44,-33,30,13,202,122,44,78,29,13,202,122,44,-33,29,13,202,122,44,78,28,13,202,122,44,-33,28,13,202,122,44,78,27,13,202,122,44,-33,27,13,202,122,44,78,26,13,202,122,44,-33,26,13,202,122,44,78,25,13,202,122,44,-33,25,13,202,122,44,78,24,13,202,122,44,-33,24,13,202,122,44,78,23,13,202,122,44,-33,23,13,202,122,44,78,22,13,202,122,44,-33,22,13,202,122,44,78,21,13,202,122,44,-33,21,13,202,122,44,78,20,13,202,122,44,-33,20,13,202,122,44,78,19,13,202,122,44,-33,19,13,202,122,44,78,18,13,202,122,44,-33,18,13,202,122,44,78,17,13,202,122,44,-33,17,13,202,122,44,78,16,13,202,122,44,-33,16,13,202,122,44,78,15,13,202,122,44,-33,15,13,202,122,44,78,14,13,202,122,44,-33,14,13,202,122,44,78,13,13,202,122,44,-33,13,13,202,122,44,78,12,13,202,122,44,-33,12,13,202,122,44,84,43,2,202,122,44,-39,44,2,202,122,44,78,11,13,202,122,44,-33,11,13,202,122,44,78,10,13,202,122,44,-33,10,13,202,122,44,78,9,13,202,122,44,-33,9,13,202,122,44,78,8,13,202,122,44,-33,8,13,202,122,44,78,7,13,202,122,44,-33,7,13,202,122,44,78,6,13,202,122,44,-33,6,13,202,122,44,78,5,13,202,122,44,-33,5,13,202,122,44,78,4,13,202,122,44,-33,4,13,202,122,44,78,3,13,202,122,44,-33,3,13,202,122,44,78,2,13,202,122,44,-33,2,13,202,122,44,78,1,13,202,122,44,-33,1,13,202,122,44,78,0,13,202,122,44,-33,0,13,202,122,44,78,-1,13,202,122,44,-33,-1,13,202,122,44,78,-2,13,202,122,44,-33,-2,13,202,122,44,78,-3,13,202,122,44,-33,-3,13,202,122,44,78,-4,13,202,122,44,-33,-4,13,202,122,44,78,-5,13,202,122,44,-33,-5,13,202,122,44,78,-6,13,202,122,44,-33,-6,13,202,122,44,78,-7,13,202,122,44,-33,-7,13,202,122,44,78,-8,13,202,122,44,-33,-8,13,202,122,44,78,-9,13,202,122,44,-33,-9,13,202,122,44,78,-10,13,202,122,44,-33,-10,13,202,122,44,78,-11,13,202,122,44,-33,-11,13,202,122,44,78,-12,13,202,122,44,-33,-12,13,202,122,44,78,-13,13,202,122,44,-33,-13,13,202,122,44,78,-14,13,202,122,44,-33,-14,13,202,122,44,78,-15,13,202,122,44,-33,-15,13,202,122,44,78,-16,13,202,122,44,-33,-16,13,202,122,44,78,-17,13,202,122,44,-33,-17,13,202,122,44,78,-18,13,202,122,44,-33,-18,13,202,122,44,78,-19,13,202,122,44,-33,-19,13,202,122,44,78,-20,13,202,122,44,-33,-20,13,202,122,44,78,-21,13,202,122,44,-33,-21,13,202,122,44,78,-22,13,202,122,44,-33,-22,13,202,122,44,78,-23,13,202,122,44,-33,-23,13,202,122,44,78,-24,13,202,122,44,-33,-24,13,202,122,44,78,-25,13,202,122,44,-33,-25,13,202,122,44,78,-26,13,202,122,44,-33,-26,13,202,122,44,78,-27,13,202,122,44,-33,-27,13,202,122,44,78,-28,13,202,122,44,-33,-28,13,202,122,44,78,-29,13,202,122,44,-33,-29,13,202,122,44,78,-30,13,202,122,44,-33,-30,13,202,122,44,78,-31,13,202,122,44,-33,-31,13,202,122,44,78,-32,13,202,122,44,-33,-32,13,202,122,44,78,-33,13,202,122,44,77,-33,13,202,122,44,76,-33,13,202,122,44,75,-33,13,202,122,44,74,-33,13,202,122,44,73,-33,13,202,122,44,72,-33,13,202,122,44,71,-33,13,202,122,44,70,-33,13,202,122,44,69,-33,13,202,122,44,68,-33,13,202,122,44,67,-33,13,202,122,44,66,-33,13,202,122,44,65,-33,13,202,122,44,64,-33,13,202,122,44,63,-33,13,202,122,44,62,-33,13,202,122,44,61,-33,13,202,122,44,60,-33,13,202,122,44,59,-33,13,202,122,44,58,-33,13,202,122,44,57,-33,13,202,122,44,56,-33,13,202,122,44,55,-33,13,202,122,44,54,-33,13,202,122,44,53,-33,13,202,122,44,52,-33,13,202,122,44,51,-33,13,202,122,44,50,-33,13,202,122,44,49,-33,13,202,122,44,48,-33,13,202,122,44,47,-33,13,202,122,44,46,-33,13,202,122,44,45,-33,13,202,122,44,84,44,2,202,122,44,-39,45,2,202,122,44,44,-33,13,202,122,44,43,-33,13,202,122,44,42,-33,13,202,122,44,41,-33,13,202,122,44,40,-33,13,202,122,44,39,-33,13,202,122,44,38,-33,13,202,122,44,37,-33,13,202,122,44,36,-33,13,202,122,44,35,-33,13,202,122,44,34,-33,13,202,122,44,33,-33,13,202,122,44,32,-33,13,202,122,44,31,-33,13,202,122,44,30,-33,13,202,122,44,29,-33,13,202,122,44,28,-33,13,202,122,44,27,-33,13,202,122,44,26,-33,13,202,122,44,25,-33,13,202,122,44,24,-33,13,202,122,44,23,-33,13,202,122,44,22,-33,13,202,122,44,21,-33,13,202,122,44,20,-33,13,202,122,44,19,-33,13,202,122,44,18,-33,13,202,122,44,17,-33,13,202,122,44,16,-33,13,202,122,44,15,-33,13,202,122,44,14,-33,13,202,122,44,13,-33,13,202,122,44,12,-33,13,202,122,44,11,-33,13,202,122,44,10,-33,13,202,122,44,9,-33,13,202,122,44,8,-33,13,202,122,44,7,-33,13,202,122,44,6,-33,13,202,122,44,5,-33,13,202,122,44,4,-33,13,202,122,44,3,-33,13,202,122,44,2,-33,13,202,122,44,1,-33,13,202,122,44,0,-33,13,202,122,44,-1,-33,13,202,122,44,-2,-33,13,202,122,44,-3,-33,13,202,122,44,-4,-33,13,202,122,44,-5,-33,13,202,122,44,-6,-33,13,202,122,44,-7,-33,13,202,122,44,-8,-33,13,202,122,44,-9,-33,13,202,122,44,-10,-33,13,202,122,44,-11,-33,13,202,122,44,-12,-33,13,202,122,44,-13,-33,13,202,122,44,-14,-33,13,202,122,44,-15,-33,13,202,122,44,-16,-33,13,202,122,44,-17,-33,13,202,122,44,-18,-33,13,202,122,44,-19,-33,13,202,122,44,-20,-33,13,202,122,44,-21,-33,13,202,122,44,-22,-33,13,202,122,44,-23,-33,13,202,122,44,-24,-33,13,202,122,44,-25,-33,13,202,122,44,-26,-33,13,202,122,44,-27,-33,13,202,122,44,-28,-33,13,202,122,44,-29,-33,13,202,122,44,-30,-33,13,202,122,44,-31,-33,13,202,122,44,-32,-33,13,202,122,44,-33,-33,13,202,122,44,79,79,12,202,122,44,78,79,12,202,122,44,77,79,12,202,122,44,76,79,12,202,122,44,75,79,12,202,122,44,74,79,12,202,122,44,73,79,12,202,122,44,72,79,12,202,122,44,71,79,12,202,122,44,70,79,12,202,122,44,69,79,12,202,122,44,68,79,12,202,122,44,67,79,12,202,122,44,66,79,12,202,122,44,65,79,12,202,122,44,64,79,12,202,122,44,63,79,12,202,122,44,62,79,12,202,122,44,61,79,12,202,122,44,60,79,12,202,122,44,59,79,12,202,122,44,58,79,12,202,122,44,57,79,12,202,122,44,56,79,12,202,122,44,55,79,12,202,122,44,54,79,12,202,122,44,53,79,12,202,122,44,52,79,12,202,122,44,51,79,12,202,122,44,50,79,12,202,122,44,49,79,12,202,122,44,48,79,12,202,122,44,47,79,12,202,122,44,46,79,12,202,122,44,45,79,12,202,122,44,44,79,12,202,122,44,43,79,12,202,122,44,42,79,12,202,122,44,41,79,12,202,122,44,40,79,12,202,122,44,39,79,12,202,122,44,38,79,12,202,122,44,37,79,12,202,122,44,36,79,12,202,122,44,84,45,2,202,122,44,-39,46,2,202,122,44,35,79,12,202,122,44,34,79,12,202,122,44,33,79,12,202,122,44,32,79,12,202,122,44,31,79,12,202,122,44,30,79,12,202,122,44,29,79,12,202,122,44,28,79,12,202,122,44,27,79,12,202,122,44,26,79,12,202,122,44,25,79,12,202,122,44,24,79,12,202,122,44,23,79,12,202,122,44,22,79,12,202,122,44,21,79,12,202,122,44,20,79,12,202,122,44,19,79,12,202,122,44,18,79,12,202,122,44,17,79,12,202,122,44,16,79,12,202,122,44,15,79,12,202,122,44,14,79,12,202,122,44,13,79,12,202,122,44,12,79,12,202,122,44,11,79,12,202,122,44,10,79,12,202,122,44,9,79,12,202,122,44,8,79,12,202,122,44,7,79,12,202,122,44,6,79,12,202,122,44,5,79,12,202,122,44,4,79,12,202,122,44,3,79,12,202,122,44,2,79,12,202,122,44,1,79,12,202,122,44,0,79,12,202,122,44,-1,79,12,202,122,44,-2,79,12,202,122,44,-3,79,12,202,122,44,-4,79,12,202,122,44,-5,79,12,202,122,44,-6,79,12,202,122,44,-7,79,12,202,122,44,-8,79,12,202,122,44,-9,79,12,202,122,44,-10,79,12,202,122,44,-11,79,12,202,122,44,-12,79,12,202,122,44,-13,79,12,202,122,44,-14,79,12,202,122,44,-15,79,12,202,122,44,-16,79,12,202,122,44,-17,79,12,202,122,44,-18,79,12,202,122,44,-19,79,12,202,122,44,-20,79,12,202,122,44,-21,79,12,202,122,44,-22,79,12,202,122,44,-23,79,12,202,122,44,-24,79,12,202,122,44,-25,79,12,202,122,44,-26,79,12,202,122,44,-27,79,12,202,122,44,-28,79,12,202,122,44,-29,79,12,202,122,44,-30,79,12,202,122,44,-31,79,12,202,122,44,-32,79,12,202,122,44,-33,79,12,202,122,44,-34,79,12,202,122,44,79,78,12,202,122,44,-34,78,12,202,122,44,79,77,12,202,122,44,-34,77,12,202,122,44,79,76,12,202,122,44,-34,76,12,202,122,44,79,75,12,202,122,44,-34,75,12,202,122,44,79,74,12,202,122,44,-34,74,12,202,122,44,79,73,12,202,122,44,-34,73,12,202,122,44,79,72,12,202,122,44,-34,72,12,202,122,44,79,71,12,202,122,44,-34,71,12,202,122,44,79,70,12,202,122,44,-34,70,12,202,122,44,79,69,12,202,122,44,-34,69,12,202,122,44,79,68,12,202,122,44,-34,68,12,202,122,44,79,67,12,202,122,44,-34,67,12,202,122,44,79,66,12,202,122,44,-34,66,12,202,122,44,79,65,12,202,122,44,-34,65,12,202,122,44,79,64,12,202,122,44,-34,64,12,202,122,44,79,63,12,202,122,44,-34,63,12,202,122,44,79,62,12,202,122,44,-34,62,12,202,122,44,79,61,12,202,122,44,-34,61,12,202,122,44,79,60,12,202,122,44,-34,60,12,202,122,44,79,59,12,202,122,44,-34,59,12,202,122,44,79,58,12,202,122,44,-34,58,12,202,122,44,79,57,12,202,122,44,-34,57,12,202,122,44,79,56,12,202,122,44,-34,56,12,202,122,44,79,55,12,202,122,44,-34,55,12,202,122,44,79,54,12,202,122,44,-34,54,12,202,122,44,79,53,12,202,122,44,-34,53,12,202,122,44,84,46,2,202,122,44,-39,47,2,202,122,44,79,52,12,202,122,44,-34,52,12,202,122,44,79,51,12,202,122,44,-34,51,12,202,122,44,79,50,12,202,122,44,-34,50,12,202,122,44,79,49,12,202,122,44,-34,49,12,202,122,44,79,48,12,202,122,44,-34,48,12,202,122,44,79,47,12,202,122,44,-34,47,12,202,122,44,79,46,12,202,122,44,-34,46,12,202,122,44,79,45,12,202,122,44,-34,45,12,202,122,44,79,44,12,202,122,44,-34,44,12,202,122,44,79,43,12,202,122,44,-34,43,12,202,122,44,79,42,12,202,122,44,-34,42,12,202,122,44,79,41,12,202,122,44,-34,41,12,202,122,44,79,40,12,202,122,44,-34,40,12,202,122,44,79,39,12,202,122,44,-34,39,12,202,122,44,79,38,12,202,122,44,-34,38,12,202,122,44,79,37,12,202,122,44,-34,37,12,202,122,44,79,36,12,202,122,44,-34,36,12,202,122,44,79,35,12,202,122,44,-34,35,12,202,122,44,79,34,12,202,122,44,-34,34,12,202,122,44,79,33,12,202,122,44,-34,33,12,202,122,44,79,32,12,202,122,44,-34,32,12,202,122,44,79,31,12,202,122,44,-34,31,12,202,122,44,79,30,12,202,122,44,-34,30,12,202,122,44,79,29,12,202,122,44,-34,29,12,202,122,44,79,28,12,202,122,44,-34,28,12,202,122,44,79,27,12,202,122,44,-34,27,12,202,122,44,79,26,12,202,122,44,-34,26,12,202,122,44,79,25,12,202,122,44,-34,25,12,202,122,44,79,24,12,202,122,44,-34,24,12,202,122,44,79,23,12,202,122,44,-34,23,12,202,122,44,79,22,12,202,122,44,-34,22,12,202,122,44,79,21,12,202,122,44,-34,21,12,202,122,44,79,20,12,202,122,44,-34,20,12,202,122,44,79,19,12,202,122,44,-34,19,12,202,122,44,79,18,12,202,122,44,-34,18,12,202,122,44,79,17,12,202,122,44,-34,17,12,202,122,44,79,16,12,202,122,44,-34,16,12,202,122,44,79,15,12,202,122,44,-34,15,12,202,122,44,79,14,12,202,122,44,-34,14,12,202,122,44,79,13,12,202,122,44,-34,13,12,202,122,44,79,12,12,202,122,44,-34,12,12,202,122,44,79,11,12,202,122,44,-34,11,12,202,122,44,79,10,12,202,122,44,-34,10,12,202,122,44,79,9,12,202,122,44,-34,9,12,202,122,44,79,8,12,202,122,44,-34,8,12,202,122,44,79,7,12,202,122,44,-34,7,12,202,122,44,79,6,12,202,122,44,-34,6,12,202,122,44,79,5,12,202,122,44,-34,5,12,202,122,44,79,4,12,202,122,44,-34,4,12,202,122,44,79,3,12,202,122,44,-34,3,12,202,122,44,79,2,12,202,122,44,-34,2,12,202,122,44,79,1,12,202,122,44,-34,1,12,202,122,44,79,0,12,202,122,44,-34,0,12,202,122,44,79,-1,12,202,122,44,-34,-1,12,202,122,44,79,-2,12,202,122,44,-34,-2,12,202,122,44,79,-3,12,202,122,44,-34,-3,12,202,122,44,79,-4,12,202,122,44,-34,-4,12,202,122,44,79,-5,12,202,122,44,-34,-5,12,202,122,44,79,-6,12,202,122,44,-34,-6,12,202,122,44,79,-7,12,202,122,44,-34,-7,12,202,122,44,79,-8,12,202,122,44,-34,-8,12,202,122,44,84,47,2,202,122,44,-39,48,2,202,122,44,79,-9,12,202,122,44,-34,-9,12,202,122,44,79,-10,12,202,122,44,-34,-10,12,202,122,44,79,-11,12,202,122,44,-34,-11,12,202,122,44,79,-12,12,202,122,44,-34,-12,12,202,122,44,79,-13,12,202,122,44,-34,-13,12,202,122,44,79,-14,12,202,122,44,-34,-14,12,202,122,44,79,-15,12,202,122,44,-34,-15,12,202,122,44,79,-16,12,202,122,44,-34,-16,12,202,122,44,79,-17,12,202,122,44,-34,-17,12,202,122,44,79,-18,12,202,122,44,-34,-18,12,202,122,44,79,-19,12,202,122,44,-34,-19,12,202,122,44,79,-20,12,202,122,44,-34,-20,12,202,122,44,79,-21,12,202,122,44,-34,-21,12,202,122,44,79,-22,12,202,122,44,-34,-22,12,202,122,44,79,-23,12,202,122,44,-34,-23,12,202,122,44,79,-24,12,202,122,44,-34,-24,12,202,122,44,79,-25,12,202,122,44,-34,-25,12,202,122,44,79,-26,12,202,122,44,-34,-26,12,202,122,44,79,-27,12,202,122,44,-34,-27,12,202,122,44,79,-28,12,202,122,44,-34,-28,12,202,122,44,79,-29,12,202,122,44,-34,-29,12,202,122,44,79,-30,12,202,122,44,-34,-30,12,202,122,44,79,-31,12,202,122,44,-34,-31,12,202,122,44,79,-32,12,202,122,44,-34,-32,12,202,122,44,79,-33,12,202,122,44,-34,-33,12,202,122,44,79,-34,12,202,122,44,78,-34,12,202,122,44,77,-34,12,202,122,44,76,-34,12,202,122,44,75,-34,12,202,122,44,74,-34,12,202,122,44,73,-34,12,202,122,44,72,-34,12,202,122,44,71,-34,12,202,122,44,70,-34,12,202,122,44,69,-34,12,202,122,44,68,-34,12,202,122,44,67,-34,12,202,122,44,66,-34,12,202,122,44,65,-34,12,202,122,44,64,-34,12,202,122,44,63,-34,12,202,122,44,62,-34,12,202,122,44,61,-34,12,202,122,44,60,-34,12,202,122,44,59,-34,12,202,122,44,58,-34,12,202,122,44,57,-34,12,202,122,44,56,-34,12,202,122,44,55,-34,12,202,122,44,54,-34,12,202,122,44,53,-34,12,202,122,44,52,-34,12,202,122,44,51,-34,12,202,122,44,50,-34,12,202,122,44,49,-34,12,202,122,44,48,-34,12,202,122,44,47,-34,12,202,122,44,46,-34,12,202,122,44,45,-34,12,202,122,44,44,-34,12,202,122,44,43,-34,12,202,122,44,42,-34,12,202,122,44,41,-34,12,202,122,44,40,-34,12,202,122,44,39,-34,12,202,122,44,38,-34,12,202,122,44,37,-34,12,202,122,44,36,-34,12,202,122,44,35,-34,12,202,122,44,34,-34,12,202,122,44,33,-34,12,202,122,44,32,-34,12,202,122,44,31,-34,12,202,122,44,30,-34,12,202,122,44,29,-34,12,202,122,44,28,-34,12,202,122,44,27,-34,12,202,122,44,26,-34,12,202,122,44,25,-34,12,202,122,44,24,-34,12,202,122,44,23,-34,12,202,122,44,22,-34,12,202,122,44,21,-34,12,202,122,44,20,-34,12,202,122,44,19,-34,12,202,122,44,18,-34,12,202,122,44,17,-34,12,202,122,44,16,-34,12,202,122,44,15,-34,12,202,122,44,14,-34,12,202,122,44,13,-34,12,202,122,44,12,-34,12,202,122,44,11,-34,12,202,122,44,10,-34,12,202,122,44,9,-34,12,202,122,44,8,-34,12,202,122,44,84,48,2,202,122,44,-39,49,2,202,122,44,7,-34,12,202,122,44,6,-34,12,202,122,44,5,-34,12,202,122,44,4,-34,12,202,122,44,3,-34,12,202,122,44,2,-34,12,202,122,44,1,-34,12,202,122,44,0,-34,12,202,122,44,-1,-34,12,202,122,44,-2,-34,12,202,122,44,-3,-34,12,202,122,44,-4,-34,12,202,122,44,-5,-34,12,202,122,44,-6,-34,12,202,122,44,-7,-34,12,202,122,44,-8,-34,12,202,122,44,-9,-34,12,202,122,44,-10,-34,12,202,122,44,-11,-34,12,202,122,44,-12,-34,12,202,122,44,-13,-34,12,202,122,44,-14,-34,12,202,122,44,-15,-34,12,202,122,44,-16,-34,12,202,122,44,-17,-34,12,202,122,44,-18,-34,12,202,122,44,-19,-34,12,202,122,44,-20,-34,12,202,122,44,-21,-34,12,202,122,44,-22,-34,12,202,122,44,-23,-34,12,202,122,44,-24,-34,12,202,122,44,-25,-34,12,202,122,44,-26,-34,12,202,122,44,-27,-34,12,202,122,44,-28,-34,12,202,122,44,-29,-34,12,202,122,44,-30,-34,12,202,122,44,-31,-34,12,202,122,44,-32,-34,12,202,122,44,-33,-34,12,202,122,44,-34,-34,12,202,122,44,79,79,11,202,122,44,78,79,11,202,122,44,77,79,11,202,122,44,76,79,11,202,122,44,75,79,11,202,122,44,74,79,11,202,122,44,73,79,11,202,122,44,72,79,11,202,122,44,71,79,11,202,122,44,70,79,11,202,122,44,69,79,11,202,122,44,68,79,11,202,122,44,67,79,11,202,122,44,66,79,11,202,122,44,65,79,11,202,122,44,64,79,11,202,122,44,63,79,11,202,122,44,62,79,11,202,122,44,61,79,11,202,122,44,60,79,11,202,122,44,59,79,11,202,122,44,58,79,11,202,122,44,57,79,11,202,122,44,56,79,11,202,122,44,55,79,11,202,122,44,54,79,11,202,122,44,53,79,11,202,122,44,52,79,11,202,122,44,51,79,11,202,122,44,50,79,11,202,122,44,49,79,11,202,122,44,48,79,11,202,122,44,47,79,11,202,122,44,46,79,11,202,122,44,45,79,11,202,122,44,44,79,11,202,122,44,43,79,11,202,122,44,42,79,11,202,122,44,41,79,11,202,122,44,40,79,11,202,122,44,39,79,11,202,122,44,38,79,11,202,122,44,37,79,11,202,122,44,36,79,11,202,122,44,35,79,11,202,122,44,34,79,11,202,122,44,33,79,11,202,122,44,32,79,11,202,122,44,31,79,11,202,122,44,30,79,11,202,122,44,29,79,11,202,122,44,28,79,11,202,122,44,27,79,11,202,122,44,26,79,11,202,122,44,25,79,11,202,122,44,24,79,11,202,122,44,23,79,11,202,122,44,22,79,11,202,122,44,21,79,11,202,122,44,20,79,11,202,122,44,19,79,11,202,122,44,18,79,11,202,122,44,17,79,11,202,122,44,16,79,11,202,122,44,15,79,11,202,122,44,14,79,11,202,122,44,13,79,11,202,122,44,12,79,11,202,122,44,11,79,11,202,122,44,10,79,11,202,122,44,9,79,11,202,122,44,8,79,11,202,122,44,7,79,11,202,122,44,6,79,11,202,122,44,5,79,11,202,122,44,4,79,11,202,122,44,3,79,11,202,122,44,2,79,11,202,122,44,1,79,11,202,122,44,0,79,11,202,122,44,84,49,2,202,122,44,-39,50,2,202,122,44,-1,79,11,202,122,44,-2,79,11,202,122,44,-3,79,11,202,122,44,-4,79,11,202,122,44,-5,79,11,202,122,44,-6,79,11,202,122,44,-7,79,11,202,122,44,-8,79,11,202,122,44,-9,79,11,202,122,44,-10,79,11,202,122,44,-11,79,11,202,122,44,-12,79,11,202,122,44,-13,79,11,202,122,44,-14,79,11,202,122,44,-15,79,11,202,122,44,-16,79,11,202,122,44,-17,79,11,202,122,44,-18,79,11,202,122,44,-19,79,11,202,122,44,-20,79,11,202,122,44,-21,79,11,202,122,44,-22,79,11,202,122,44,-23,79,11,202,122,44,-24,79,11,202,122,44,-25,79,11,202,122,44,-26,79,11,202,122,44,-27,79,11,202,122,44,-28,79,11,202,122,44,-29,79,11,202,122,44,-30,79,11,202,122,44,-31,79,11,202,122,44,-32,79,11,202,122,44,-33,79,11,202,122,44,-34,79,11,202,122,44,79,78,11,202,122,44,-34,78,11,202,122,44,79,77,11,202,122,44,-34,77,11,202,122,44,79,76,11,202,122,44,-34,76,11,202,122,44,79,75,11,202,122,44,-34,75,11,202,122,44,79,74,11,202,122,44,-34,74,11,202,122,44,79,73,11,202,122,44,-34,73,11,202,122,44,79,72,11,202,122,44,-34,72,11,202,122,44,79,71,11,202,122,44,-34,71,11,202,122,44,79,70,11,202,122,44,-34,70,11,202,122,44,79,69,11,202,122,44,-34,69,11,202,122,44,79,68,11,202,122,44,-34,68,11,202,122,44,79,67,11,202,122,44,-34,67,11,202,122,44,79,66,11,202,122,44,-34,66,11,202,122,44,79,65,11,202,122,44,-34,65,11,202,122,44,79,64,11,202,122,44,-34,64,11,202,122,44,79,63,11,202,122,44,-34,63,11,202,122,44,79,62,11,202,122,44,-34,62,11,202,122,44,79,61,11,202,122,44,-34,61,11,202,122,44,79,60,11,202,122,44,-34,60,11,202,122,44,79,59,11,202,122,44,-34,59,11,202,122,44,79,58,11,202,122,44,-34,58,11,202,122,44,79,57,11,202,122,44,-34,57,11,202,122,44,79,56,11,202,122,44,-34,56,11,202,122,44,79,55,11,202,122,44,-34,55,11,202,122,44,79,54,11,202,122,44,-34,54,11,202,122,44,79,53,11,202,122,44,-34,53,11,202,122,44,79,52,11,202,122,44,-34,52,11,202,122,44,79,51,11,202,122,44,-34,51,11,202,122,44,79,50,11,202,122,44,-34,50,11,202,122,44,79,49,11,202,122,44,-34,49,11,202,122,44,79,48,11,202,122,44,-34,48,11,202,122,44,79,47,11,202,122,44,-34,47,11,202,122,44,79,46,11,202,122,44,-34,46,11,202,122,44,79,45,11,202,122,44,-34,45,11,202,122,44,79,44,11,202,122,44,-34,44,11,202,122,44,79,43,11,202,122,44,-34,43,11,202,122,44,79,42,11,202,122,44,-34,42,11,202,122,44,79,41,11,202,122,44,-34,41,11,202,122,44,79,40,11,202,122,44,-34,40,11,202,122,44,79,39,11,202,122,44,-34,39,11,202,122,44,79,38,11,202,122,44,-34,38,11,202,122,44,79,37,11,202,122,44,-34,37,11,202,122,44,79,36,11,202,122,44,-34,36,11,202,122,44,79,35,11,202,122,44,-34,35,11,202,122,44,84,50,2,202,122,44,-39,51,2,202,122,44,79,34,11,202,122,44,-34,34,11,202,122,44,79,33,11,202,122,44,-34,33,11,202,122,44,79,32,11,202,122,44,-34,32,11,202,122,44,79,31,11,202,122,44,-34,31,11,202,122,44,79,30,11,202,122,44,-34,30,11,202,122,44,79,29,11,202,122,44,-34,29,11,202,122,44,79,28,11,202,122,44,-34,28,11,202,122,44,79,27,11,202,122,44,-34,27,11,202,122,44,79,26,11,202,122,44,-34,26,11,202,122,44,79,25,11,202,122,44,-34,25,11,202,122,44,79,24,11,202,122,44,-34,24,11,202,122,44,79,23,11,202,122,44,-34,23,11,202,122,44,79,22,11,202,122,44,-34,22,11,202,122,44,79,21,11,202,122,44,-34,21,11,202,122,44,79,20,11,202,122,44,-34,20,11,202,122,44,79,19,11,202,122,44,-34,19,11,202,122,44,79,18,11,202,122,44,-34,18,11,202,122,44,79,17,11,202,122,44,-34,17,11,202,122,44,79,16,11,202,122,44,-34,16,11,202,122,44,79,15,11,202,122,44,-34,15,11,202,122,44,79,14,11,202,122,44,-34,14,11,202,122,44,79,13,11,202,122,44,-34,13,11,202,122,44,79,12,11,202,122,44,-34,12,11,202,122,44,79,11,11,202,122,44,-34,11,11,202,122,44,79,10,11,202,122,44,-34,10,11,202,122,44,79,9,11,202,122,44,-34,9,11,202,122,44,79,8,11,202,122,44,-34,8,11,202,122,44,79,7,11,202,122,44,-34,7,11,202,122,44,79,6,11,202,122,44,-34,6,11,202,122,44,79,5,11,202,122,44,-34,5,11,202,122,44,79,4,11,202,122,44,-34,4,11,202,122,44,79,3,11,202,122,44,-34,3,11,202,122,44,79,2,11,202,122,44,-34,2,11,202,122,44,79,1,11,202,122,44,-34,1,11,202,122,44,79,0,11,202,122,44,-34,0,11,202,122,44,79,-1,11,202,122,44,-34,-1,11,202,122,44,79,-2,11,202,122,44,-34,-2,11,202,122,44,79,-3,11,202,122,44,-34,-3,11,202,122,44,79,-4,11,202,122,44,-34,-4,11,202,122,44,79,-5,11,202,122,44,-34,-5,11,202,122,44,79,-6,11,202,122,44,-34,-6,11,202,122,44,79,-7,11,202,122,44,-34,-7,11,202,122,44,79,-8,11,202,122,44,-34,-8,11,202,122,44,79,-9,11,202,122,44,-34,-9,11,202,122,44,79,-10,11,202,122,44,-34,-10,11,202,122,44,79,-11,11,202,122,44,-34,-11,11,202,122,44,79,-12,11,202,122,44,-34,-12,11,202,122,44,79,-13,11,202,122,44,-34,-13,11,202,122,44,79,-14,11,202,122,44,-34,-14,11,202,122,44,79,-15,11,202,122,44,-34,-15,11,202,122,44,79,-16,11,202,122,44,-34,-16,11,202,122,44,79,-17,11,202,122,44,-34,-17,11,202,122,44,79,-18,11,202,122,44,-34,-18,11,202,122,44,79,-19,11,202,122,44,-34,-19,11,202,122,44,79,-20,11,202,122,44,-34,-20,11,202,122,44,79,-21,11,202,122,44,-34,-21,11,202,122,44,79,-22,11,202,122,44,-34,-22,11,202,122,44,79,-23,11,202,122,44,-34,-23,11,202,122,44,79,-24,11,202,122,44,-34,-24,11,202,122,44,79,-25,11,202,122,44,-34,-25,11,202,122,44,79,-26,11,202,122,44,-34,-26,11,202,122,44,84,51,2,202,122,44,-39,52,2,202,122,44,79,-27,11,202,122,44,-34,-27,11,202,122,44,79,-28,11,202,122,44,-34,-28,11,202,122,44,79,-29,11,202,122,44,-34,-29,11,202,122,44,79,-30,11,202,122,44,-34,-30,11,202,122,44,79,-31,11,202,122,44,-34,-31,11,202,122,44,79,-32,11,202,122,44,-34,-32,11,202,122,44,79,-33,11,202,122,44,-34,-33,11,202,122,44,79,-34,11,202,122,44,78,-34,11,202,122,44,77,-34,11,202,122,44,76,-34,11,202,122,44,75,-34,11,202,122,44,74,-34,11,202,122,44,73,-34,11,202,122,44,72,-34,11,202,122,44,71,-34,11,202,122,44,70,-34,11,202,122,44,69,-34,11,202,122,44,68,-34,11,202,122,44,67,-34,11,202,122,44,66,-34,11,202,122,44,65,-34,11,202,122,44,64,-34,11,202,122,44,63,-34,11,202,122,44,62,-34,11,202,122,44,61,-34,11,202,122,44,60,-34,11,202,122,44,59,-34,11,202,122,44,58,-34,11,202,122,44,57,-34,11,202,122,44,56,-34,11,202,122,44,55,-34,11,202,122,44,54,-34,11,202,122,44,53,-34,11,202,122,44,52,-34,11,202,122,44,51,-34,11,202,122,44,50,-34,11,202,122,44,49,-34,11,202,122,44,48,-34,11,202,122,44,47,-34,11,202,122,44,46,-34,11,202,122,44,45,-34,11,202,122,44,44,-34,11,202,122,44,43,-34,11,202,122,44,42,-34,11,202,122,44,41,-34,11,202,122,44,40,-34,11,202,122,44,39,-34,11,202,122,44,38,-34,11,202,122,44,37,-34,11,202,122,44,36,-34,11,202,122,44,35,-34,11,202,122,44,34,-34,11,202,122,44,33,-34,11,202,122,44,32,-34,11,202,122,44,31,-34,11,202,122,44,30,-34,11,202,122,44,29,-34,11,202,122,44,28,-34,11,202,122,44,27,-34,11,202,122,44,26,-34,11,202,122,44,25,-34,11,202,122,44,24,-34,11,202,122,44,23,-34,11,202,122,44,22,-34,11,202,122,44,21,-34,11,202,122,44,20,-34,11,202,122,44,19,-34,11,202,122,44,18,-34,11,202,122,44,17,-34,11,202,122,44,16,-34,11,202,122,44,15,-34,11,202,122,44,14,-34,11,202,122,44,13,-34,11,202,122,44,12,-34,11,202,122,44,11,-34,11,202,122,44,10,-34,11,202,122,44,9,-34,11,202,122,44,8,-34,11,202,122,44,7,-34,11,202,122,44,6,-34,11,202,122,44,5,-34,11,202,122,44,4,-34,11,202,122,44,3,-34,11,202,122,44,2,-34,11,202,122,44,1,-34,11,202,122,44,0,-34,11,202,122,44,-1,-34,11,202,122,44,-2,-34,11,202,122,44,-3,-34,11,202,122,44,-4,-34,11,202,122,44,-5,-34,11,202,122,44,-6,-34,11,202,122,44,-7,-34,11,202,122,44,-8,-34,11,202,122,44,-9,-34,11,202,122,44,-10,-34,11,202,122,44,-11,-34,11,202,122,44,-12,-34,11,202,122,44,-13,-34,11,202,122,44,-14,-34,11,202,122,44,-15,-34,11,202,122,44,-16,-34,11,202,122,44,-17,-34,11,202,122,44,-18,-34,11,202,122,44,-19,-34,11,202,122,44,-20,-34,11,202,122,44,-21,-34,11,202,122,44,-22,-34,11,202,122,44,-23,-34,11,202,122,44,-24,-34,11,202,122,44,-25,-34,11,202,122,44,-26,-34,11,202,122,44,-27,-34,11,202,122,44,-28,-34,11,202,122,44,84,52,2,202,122,44,-39,53,2,202,122,44,-29,-34,11,202,122,44,-30,-34,11,202,122,44,-31,-34,11,202,122,44,-32,-34,11,202,122,44,-33,-34,11,202,122,44,-34,-34,11,202,122,44,80,80,10,202,122,44,79,80,10,202,122,44,78,80,10,202,122,44,77,80,10,202,122,44,76,80,10,202,122,44,75,80,10,202,122,44,74,80,10,202,122,44,73,80,10,202,122,44,72,80,10,202,122,44,71,80,10,202,122,44,70,80,10,202,122,44,69,80,10,202,122,44,68,80,10,202,122,44,67,80,10,202,122,44,66,80,10,202,122,44,65,80,10,202,122,44,64,80,10,202,122,44,63,80,10,202,122,44,62,80,10,202,122,44,61,80,10,202,122,44,60,80,10,202,122,44,59,80,10,202,122,44,58,80,10,202,122,44,57,80,10,202,122,44,56,80,10,202,122,44,55,80,10,202,122,44,54,80,10,202,122,44,53,80,10,202,122,44,52,80,10,202,122,44,51,80,10,202,122,44,50,80,10,202,122,44,49,80,10,202,122,44,48,80,10,202,122,44,47,80,10,202,122,44,46,80,10,202,122,44,45,80,10,202,122,44,44,80,10,202,122,44,43,80,10,202,122,44,42,80,10,202,122,44,41,80,10,202,122,44,40,80,10,202,122,44,39,80,10,202,122,44,38,80,10,202,122,44,37,80,10,202,122,44,36,80,10,202,122,44,35,80,10,202,122,44,34,80,10,202,122,44,33,80,10,202,122,44,32,80,10,202,122,44,31,80,10,202,122,44,30,80,10,202,122,44,29,80,10,202,122,44,28,80,10,202,122,44,27,80,10,202,122,44,26,80,10,202,122,44,25,80,10,202,122,44,24,80,10,202,122,44,23,80,10,202,122,44,22,80,10,202,122,44,21,80,10,202,122,44,20,80,10,202,122,44,19,80,10,202,122,44,18,80,10,202,122,44,17,80,10,202,122,44,16,80,10,202,122,44,15,80,10,202,122,44,14,80,10,202,122,44,13,80,10,202,122,44,12,80,10,202,122,44,11,80,10,202,122,44,10,80,10,202,122,44,9,80,10,202,122,44,8,80,10,202,122,44,7,80,10,202,122,44,6,80,10,202,122,44,5,80,10,202,122,44,4,80,10,202,122,44,3,80,10,202,122,44,2,80,10,202,122,44,1,80,10,202,122,44,0,80,10,202,122,44,-1,80,10,202,122,44,-2,80,10,202,122,44,-3,80,10,202,122,44,-4,80,10,202,122,44,-5,80,10,202,122,44,-6,80,10,202,122,44,-7,80,10,202,122,44,-8,80,10,202,122,44,-9,80,10,202,122,44,-10,80,10,202,122,44,-11,80,10,202,122,44,-12,80,10,202,122,44,-13,80,10,202,122,44,-14,80,10,202,122,44,-15,80,10,202,122,44,-16,80,10,202,122,44,-17,80,10,202,122,44,-18,80,10,202,122,44,-19,80,10,202,122,44,-20,80,10,202,122,44,-21,80,10,202,122,44,-22,80,10,202,122,44,-23,80,10,202,122,44,-24,80,10,202,122,44,-25,80,10,202,122,44,-26,80,10,202,122,44,-27,80,10,202,122,44,-28,80,10,202,122,44,-29,80,10,202,122,44,-30,80,10,202,122,44,-31,80,10,202,122,44,-32,80,10,202,122,44,-33,80,10,202,122,44,-34,80,10,202,122,44,-35,80,10,202,122,44,84,53,2,202,122,44,-39,54,2,202,122,44,80,79,10,202,122,44,-35,79,10,202,122,44,80,78,10,202,122,44,-35,78,10,202,122,44,80,77,10,202,122,44,-35,77,10,202,122,44,80,76,10,202,122,44,-35,76,10,202,122,44,80,75,10,202,122,44,-35,75,10,202,122,44,80,74,10,202,122,44,-35,74,10,202,122,44,80,73,10,202,122,44,-35,73,10,202,122,44,80,72,10,202,122,44,-35,72,10,202,122,44,80,71,10,202,122,44,-35,71,10,202,122,44,80,70,10,202,122,44,-35,70,10,202,122,44,80,69,10,202,122,44,-35,69,10,202,122,44,80,68,10,202,122,44,-35,68,10,202,122,44,80,67,10,202,122,44,-35,67,10,202,122,44,80,66,10,202,122,44,-35,66,10,202,122,44,80,65,10,202,122,44,-35,65,10,202,122,44,80,64,10,202,122,44,-35,64,10,202,122,44,80,63,10,202,122,44,-35,63,10,202,122,44,80,62,10,202,122,44,-35,62,10,202,122,44,80,61,10,202,122,44,-35,61,10,202,122,44,80,60,10,202,122,44,-35,60,10,202,122,44,80,59,10,202,122,44,-35,59,10,202,122,44,80,58,10,202,122,44,-35,58,10,202,122,44,80,57,10,202,122,44,-35,57,10,202,122,44,80,56,10,202,122,44,-35,56,10,202,122,44,80,55,10,202,122,44,-35,55,10,202,122,44,80,54,10,202,122,44,-35,54,10,202,122,44,80,53,10,202,122,44,-35,53,10,202,122,44,80,52,10,202,122,44,-35,52,10,202,122,44,80,51,10,202,122,44,-35,51,10,202,122,44,80,50,10,202,122,44,-35,50,10,202,122,44,80,49,10,202,122,44,-35,49,10,202,122,44,80,48,10,202,122,44,-35,48,10,202,122,44,80,47,10,202,122,44,-35,47,10,202,122,44,80,46,10,202,122,44,-35,46,10,202,122,44,80,45,10,202,122,44,-35,45,10,202,122,44,80,44,10,202,122,44,-35,44,10,202,122,44,80,43,10,202,122,44,-35,43,10,202,122,44,80,42,10,202,122,44,-35,42,10,202,122,44,80,41,10,202,122,44,-35,41,10,202,122,44,80,40,10,202,122,44,-35,40,10,202,122,44,80,39,10,202,122,44,-35,39,10,202,122,44,80,38,10,202,122,44,-35,38,10,202,122,44,80,37,10,202,122,44,-35,37,10,202,122,44,80,36,10,202,122,44,-35,36,10,202,122,44,80,35,10,202,122,44,-35,35,10,202,122,44,80,34,10,202,122,44,-35,34,10,202,122,44,80,33,10,202,122,44,-35,33,10,202,122,44,80,32,10,202,122,44,-35,32,10,202,122,44,80,31,10,202,122,44,-35,31,10,202,122,44,80,30,10,202,122,44,-35,30,10,202,122,44,80,29,10,202,122,44,-35,29,10,202,122,44,80,28,10,202,122,44,-35,28,10,202,122,44,80,27,10,202,122,44,-35,27,10,202,122,44,80,26,10,202,122,44,-35,26,10,202,122,44,80,25,10,202,122,44,-35,25,10,202,122,44,80,24,10,202,122,44,-35,24,10,202,122,44,80,23,10,202,122,44,-35,23,10,202,122,44,80,22,10,202,122,44,-35,22,10,202,122,44,80,21,10,202,122,44,-35,21,10,202,122,44,80,20,10,202,122,44,-35,20,10,202,122,44,80,19,10,202,122,44,-35,19,10,202,122,44,84,54,2,202,122,44,-39,55,2,202,122,44,80,18,10,202,122,44,-35,18,10,202,122,44,80,17,10,202,122,44,-35,17,10,202,122,44,80,16,10,202,122,44,-35,16,10,202,122,44,80,15,10,202,122,44,-35,15,10,202,122,44,80,14,10,202,122,44,-35,14,10,202,122,44,80,13,10,202,122,44,-35,13,10,202,122,44,80,12,10,202,122,44,-35,12,10,202,122,44,80,11,10,202,122,44,-35,11,10,202,122,44,80,10,10,202,122,44,-35,10,10,202,122,44,80,9,10,202,122,44,-35,9,10,202,122,44,80,8,10,202,122,44,-35,8,10,202,122,44,80,7,10,202,122,44,-35,7,10,202,122,44,80,6,10,202,122,44,-35,6,10,202,122,44,80,5,10,202,122,44,-35,5,10,202,122,44,80,4,10,202,122,44,-35,4,10,202,122,44,80,3,10,202,122,44,-35,3,10,202,122,44,80,2,10,202,122,44,-35,2,10,202,122,44,80,1,10,202,122,44,-35,1,10,202,122,44,80,0,10,202,122,44,-35,0,10,202,122,44,80,-1,10,202,122,44,-35,-1,10,202,122,44,80,-2,10,202,122,44,-35,-2,10,202,122,44,80,-3,10,202,122,44,-35,-3,10,202,122,44,80,-4,10,202,122,44,-35,-4,10,202,122,44,80,-5,10,202,122,44,-35,-5,10,202,122,44,80,-6,10,202,122,44,-35,-6,10,202,122,44,80,-7,10,202,122,44,-35,-7,10,202,122,44,80,-8,10,202,122,44,-35,-8,10,202,122,44,80,-9,10,202,122,44,-35,-9,10,202,122,44,80,-10,10,202,122,44,-35,-10,10,202,122,44,80,-11,10,202,122,44,-35,-11,10,202,122,44,80,-12,10,202,122,44,-35,-12,10,202,122,44,80,-13,10,202,122,44,-35,-13,10,202,122,44,80,-14,10,202,122,44,-35,-14,10,202,122,44,80,-15,10,202,122,44,-35,-15,10,202,122,44,80,-16,10,202,122,44,-35,-16,10,202,122,44,80,-17,10,202,122,44,-35,-17,10,202,122,44,80,-18,10,202,122,44,-35,-18,10,202,122,44,80,-19,10,202,122,44,-35,-19,10,202,122,44,80,-20,10,202,122,44,-35,-20,10,202,122,44,80,-21,10,202,122,44,-35,-21,10,202,122,44,80,-22,10,202,122,44,-35,-22,10,202,122,44,80,-23,10,202,122,44,-35,-23,10,202,122,44,80,-24,10,202,122,44,-35,-24,10,202,122,44,80,-25,10,202,122,44,-35,-25,10,202,122,44,80,-26,10,202,122,44,-35,-26,10,202,122,44,80,-27,10,202,122,44,-35,-27,10,202,122,44,80,-28,10,202,122,44,-35,-28,10,202,122,44,80,-29,10,202,122,44,-35,-29,10,202,122,44,80,-30,10,202,122,44,-35,-30,10,202,122,44,80,-31,10,202,122,44,-35,-31,10,202,122,44,80,-32,10,202,122,44,-35,-32,10,202,122,44,80,-33,10,202,122,44,-35,-33,10,202,122,44,80,-34,10,202,122,44,-35,-34,10,202,122,44,80,-35,10,202,122,44,79,-35,10,202,122,44,78,-35,10,202,122,44,77,-35,10,202,122,44,76,-35,10,202,122,44,75,-35,10,202,122,44,74,-35,10,202,122,44,73,-35,10,202,122,44,72,-35,10,202,122,44,71,-35,10,202,122,44,70,-35,10,202,122,44,69,-35,10,202,122,44,68,-35,10,202,122,44,67,-35,10,202,122,44,66,-35,10,202,122,44,65,-35,10,202,122,44,84,55,2,202,122,44,-39,56,2,202,122,44,64,-35,10,202,122,44,63,-35,10,202,122,44,62,-35,10,202,122,44,61,-35,10,202,122,44,60,-35,10,202,122,44,59,-35,10,202,122,44,58,-35,10,202,122,44,57,-35,10,202,122,44,56,-35,10,202,122,44,55,-35,10,202,122,44,54,-35,10,202,122,44,53,-35,10,202,122,44,52,-35,10,202,122,44,51,-35,10,202,122,44,50,-35,10,202,122,44,49,-35,10,202,122,44,48,-35,10,202,122,44,47,-35,10,202,122,44,46,-35,10,202,122,44,45,-35,10,202,122,44,44,-35,10,202,122,44,43,-35,10,202,122,44,42,-35,10,202,122,44,41,-35,10,202,122,44,40,-35,10,202,122,44,39,-35,10,202,122,44,38,-35,10,202,122,44,37,-35,10,202,122,44,36,-35,10,202,122,44,35,-35,10,202,122,44,34,-35,10,202,122,44,33,-35,10,202,122,44,32,-35,10,202,122,44,31,-35,10,202,122,44,30,-35,10,202,122,44,29,-35,10,202,122,44,28,-35,10,202,122,44,27,-35,10,202,122,44,26,-35,10,202,122,44,25,-35,10,202,122,44,24,-35,10,202,122,44,23,-35,10,202,122,44,22,-35,10,202,122,44,21,-35,10,202,122,44,20,-35,10,202,122,44,19,-35,10,202,122,44,18,-35,10,202,122,44,17,-35,10,202,122,44,16,-35,10,202,122,44,15,-35,10,202,122,44,14,-35,10,202,122,44,13,-35,10,202,122,44,12,-35,10,202,122,44,11,-35,10,202,122,44,10,-35,10,202,122,44,9,-35,10,202,122,44,8,-35,10,202,122,44,7,-35,10,202,122,44,6,-35,10,202,122,44,5,-35,10,202,122,44,4,-35,10,202,122,44,3,-35,10,202,122,44,2,-35,10,202,122,44,1,-35,10,202,122,44,0,-35,10,202,122,44,-1,-35,10,202,122,44,-2,-35,10,202,122,44,-3,-35,10,202,122,44,-4,-35,10,202,122,44,-5,-35,10,202,122,44,-6,-35,10,202,122,44,-7,-35,10,202,122,44,-8,-35,10,202,122,44,-9,-35,10,202,122,44,-10,-35,10,202,122,44,-11,-35,10,202,122,44,-12,-35,10,202,122,44,-13,-35,10,202,122,44,-14,-35,10,202,122,44,-15,-35,10,202,122,44,-16,-35,10,202,122,44,-17,-35,10,202,122,44,-18,-35,10,202,122,44,-19,-35,10,202,122,44,-20,-35,10,202,122,44,-21,-35,10,202,122,44,-22,-35,10,202,122,44,-23,-35,10,202,122,44,-24,-35,10,202,122,44,-25,-35,10,202,122,44,-26,-35,10,202,122,44,-27,-35,10,202,122,44,-28,-35,10,202,122,44,-29,-35,10,202,122,44,-30,-35,10,202,122,44,-31,-35,10,202,122,44,-32,-35,10,202,122,44,-33,-35,10,202,122,44,-34,-35,10,202,122,44,-35,-35,10,202,122,44,80,80,9,202,122,44,79,80,9,202,122,44,78,80,9,202,122,44,77,80,9,202,122,44,76,80,9,202,122,44,75,80,9,202,122,44,74,80,9,202,122,44,73,80,9,202,122,44,72,80,9,202,122,44,71,80,9,202,122,44,70,80,9,202,122,44,69,80,9,202,122,44,68,80,9,202,122,44,67,80,9,202,122,44,66,80,9,202,122,44,65,80,9,202,122,44,64,80,9,202,122,44,63,80,9,202,122,44,62,80,9,202,122,44,61,80,9,202,122,44,60,80,9,202,122,44,59,80,9,202,122,44,84,56,2,202,122,44,-39,57,2,202,122,44,58,80,9,202,122,44,57,80,9,202,122,44,56,80,9,202,122,44,55,80,9,202,122,44,54,80,9,202,122,44,53,80,9,202,122,44,52,80,9,202,122,44,51,80,9,202,122,44,50,80,9,202,122,44,49,80,9,202,122,44,48,80,9,202,122,44,47,80,9,202,122,44,46,80,9,202,122,44,45,80,9,202,122,44,44,80,9,202,122,44,43,80,9,202,122,44,42,80,9,202,122,44,41,80,9,202,122,44,40,80,9,202,122,44,39,80,9,202,122,44,38,80,9,202,122,44,37,80,9,202,122,44,36,80,9,202,122,44,35,80,9,202,122,44,34,80,9,202,122,44,33,80,9,202,122,44,32,80,9,202,122,44,31,80,9,202,122,44,30,80,9,202,122,44,29,80,9,202,122,44,28,80,9,202,122,44,27,80,9,202,122,44,26,80,9,202,122,44,25,80,9,202,122,44,24,80,9,202,122,44,23,80,9,202,122,44,22,80,9,202,122,44,21,80,9,202,122,44,20,80,9,202,122,44,19,80,9,202,122,44,18,80,9,202,122,44,17,80,9,202,122,44,16,80,9,202,122,44,15,80,9,202,122,44,14,80,9,202,122,44,13,80,9,202,122,44,12,80,9,202,122,44,11,80,9,202,122,44,10,80,9,202,122,44,9,80,9,202,122,44,8,80,9,202,122,44,7,80,9,202,122,44,6,80,9,202,122,44,5,80,9,202,122,44,4,80,9,202,122,44,3,80,9,202,122,44,2,80,9,202,122,44,1,80,9,202,122,44,0,80,9,202,122,44,-1,80,9,202,122,44,-2,80,9,202,122,44,-3,80,9,202,122,44,-4,80,9,202,122,44,-5,80,9,202,122,44,-6,80,9,202,122,44,-7,80,9,202,122,44,-8,80,9,202,122,44,-9,80,9,202,122,44,-10,80,9,202,122,44,-11,80,9,202,122,44,-12,80,9,202,122,44,-13,80,9,202,122,44,-14,80,9,202,122,44,-15,80,9,202,122,44,-16,80,9,202,122,44,-17,80,9,202,122,44,-18,80,9,202,122,44,-19,80,9,202,122,44,-20,80,9,202,122,44,-21,80,9,202,122,44,-22,80,9,202,122,44,-23,80,9,202,122,44,-24,80,9,202,122,44,-25,80,9,202,122,44,-26,80,9,202,122,44,-27,80,9,202,122,44,-28,80,9,202,122,44,-29,80,9,202,122,44,-30,80,9,202,122,44,-31,80,9,202,122,44,-32,80,9,202,122,44,-33,80,9,202,122,44,-34,80,9,202,122,44,-35,80,9,202,122,44,80,79,9,202,122,44,-35,79,9,202,122,44,80,78,9,202,122,44,-35,78,9,202,122,44,80,77,9,202,122,44,-35,77,9,202,122,44,80,76,9,202,122,44,-35,76,9,202,122,44,80,75,9,202,122,44,-35,75,9,202,122,44,80,74,9,202,122,44,-35,74,9,202,122,44,80,73,9,202,122,44,-35,73,9,202,122,44,80,72,9,202,122,44,-35,72,9,202,122,44,80,71,9,202,122,44,-35,71,9,202,122,44,80,70,9,202,122,44,-35,70,9,202,122,44,80,69,9,202,122,44,-35,69,9,202,122,44,80,68,9,202,122,44,-35,68,9,202,122,44,80,67,9,202,122,44,-35,67,9,202,122,44,80,66,9,202,122,44,-35,66,9,202,122,44,84,57,2,202,122,44,-39,58,2,202,122,44,80,65,9,202,122,44,-35,65,9,202,122,44,80,64,9,202,122,44,-35,64,9,202,122,44,80,63,9,202,122,44,-35,63,9,202,122,44,80,62,9,202,122,44,-35,62,9,202,122,44,80,61,9,202,122,44,-35,61,9,202,122,44,80,60,9,202,122,44,-35,60,9,202,122,44,80,59,9,202,122,44,-35,59,9,202,122,44,80,58,9,202,122,44,-35,58,9,202,122,44,80,57,9,202,122,44,-35,57,9,202,122,44,80,56,9,202,122,44,-35,56,9,202,122,44,80,55,9,202,122,44,-35,55,9,202,122,44,80,54,9,202,122,44,-35,54,9,202,122,44,80,53,9,202,122,44,-35,53,9,202,122,44,80,52,9,202,122,44,-35,52,9,202,122,44,80,51,9,202,122,44,-35,51,9,202,122,44,80,50,9,202,122,44,-35,50,9,202,122,44,80,49,9,202,122,44,-35,49,9,202,122,44,80,48,9,202,122,44,-35,48,9,202,122,44,80,47,9,202,122,44,-35,47,9,202,122,44,80,46,9,202,122,44,-35,46,9,202,122,44,80,45,9,202,122,44,-35,45,9,202,122,44,80,44,9,202,122,44,-35,44,9,202,122,44,80,43,9,202,122,44,-35,43,9,202,122,44,80,42,9,202,122,44,-35,42,9,202,122,44,80,41,9,202,122,44,-35,41,9,202,122,44,80,40,9,202,122,44,-35,40,9,202,122,44,80,39,9,202,122,44,-35,39,9,202,122,44,80,38,9,202,122,44,-35,38,9,202,122,44,80,37,9,202,122,44,-35,37,9,202,122,44,80,36,9,202,122,44,-35,36,9,202,122,44,80,35,9,202,122,44,-35,35,9,202,122,44,80,34,9,202,122,44,-35,34,9,202,122,44,80,33,9,202,122,44,-35,33,9,202,122,44,80,32,9,202,122,44,-35,32,9,202,122,44,80,31,9,202,122,44,-35,31,9,202,122,44,80,30,9,202,122,44,-35,30,9,202,122,44,80,29,9,202,122,44,-35,29,9,202,122,44,80,28,9,202,122,44,-35,28,9,202,122,44,80,27,9,202,122,44,-35,27,9,202,122,44,80,26,9,202,122,44,-35,26,9,202,122,44,80,25,9,202,122,44,-35,25,9,202,122,44,80,24,9,202,122,44,-35,24,9,202,122,44,80,23,9,202,122,44,-35,23,9,202,122,44,80,22,9,202,122,44,-35,22,9,202,122,44,80,21,9,202,122,44,-35,21,9,202,122,44,80,20,9,202,122,44,-35,20,9,202,122,44,80,19,9,202,122,44,-35,19,9,202,122,44,80,18,9,202,122,44,-35,18,9,202,122,44,80,17,9,202,122,44,-35,17,9,202,122,44,80,16,9,202,122,44,-35,16,9,202,122,44,80,15,9,202,122,44,-35,15,9,202,122,44,80,14,9,202,122,44,-35,14,9,202,122,44,80,13,9,202,122,44,-35,13,9,202,122,44,80,12,9,202,122,44,-35,12,9,202,122,44,80,11,9,202,122,44,-35,11,9,202,122,44,80,10,9,202,122,44,-35,10,9,202,122,44,80,9,9,202,122,44,-35,9,9,202,122,44,80,8,9,202,122,44,-35,8,9,202,122,44,80,7,9,202,122,44,-35,7,9,202,122,44,80,6,9,202,122,44,-35,6,9,202,122,44,80,5,9,202,122,44,-35,5,9,202,122,44,84,58,2,202,122,44,-39,59,2,202,122,44,80,4,9,202,122,44,-35,4,9,202,122,44,80,3,9,202,122,44,-35,3,9,202,122,44,80,2,9,202,122,44,-35,2,9,202,122,44,80,1,9,202,122,44,-35,1,9,202,122,44,80,0,9,202,122,44,-35,0,9,202,122,44,80,-1,9,202,122,44,-35,-1,9,202,122,44,80,-2,9,202,122,44,-35,-2,9,202,122,44,80,-3,9,202,122,44,-35,-3,9,202,122,44,80,-4,9,202,122,44,-35,-4,9,202,122,44,80,-5,9,202,122,44,-35,-5,9,202,122,44,80,-6,9,202,122,44,-35,-6,9,202,122,44,80,-7,9,202,122,44,-35,-7,9,202,122,44,80,-8,9,202,122,44,-35,-8,9,202,122,44,80,-9,9,202,122,44,-35,-9,9,202,122,44,80,-10,9,202,122,44,-35,-10,9,202,122,44,80,-11,9,202,122,44,-35,-11,9,202,122,44,80,-12,9,202,122,44,-35,-12,9,202,122,44,80,-13,9,202,122,44,-35,-13,9,202,122,44,80,-14,9,202,122,44,-35,-14,9,202,122,44,80,-15,9,202,122,44,-35,-15,9,202,122,44,80,-16,9,202,122,44,-35,-16,9,202,122,44,80,-17,9,202,122,44,-35,-17,9,202,122,44,80,-18,9,202,122,44,-35,-18,9,202,122,44,80,-19,9,202,122,44,-35,-19,9,202,122,44,80,-20,9,202,122,44,-35,-20,9,202,122,44,80,-21,9,202,122,44,-35,-21,9,202,122,44,80,-22,9,202,122,44,-35,-22,9,202,122,44,80,-23,9,202,122,44,-35,-23,9,202,122,44,80,-24,9,202,122,44,-35,-24,9,202,122,44,80,-25,9,202,122,44,-35,-25,9,202,122,44,80,-26,9,202,122,44,-35,-26,9,202,122,44,80,-27,9,202,122,44,-35,-27,9,202,122,44,80,-28,9,202,122,44,-35,-28,9,202,122,44,80,-29,9,202,122,44,-35,-29,9,202,122,44,80,-30,9,202,122,44,-35,-30,9,202,122,44,80,-31,9,202,122,44,-35,-31,9,202,122,44,80,-32,9,202,122,44,-35,-32,9,202,122,44,80,-33,9,202,122,44,-35,-33,9,202,122,44,80,-34,9,202,122,44,-35,-34,9,202,122,44,80,-35,9,202,122,44,79,-35,9,202,122,44,78,-35,9,202,122,44,77,-35,9,202,122,44,76,-35,9,202,122,44,75,-35,9,202,122,44,74,-35,9,202,122,44,73,-35,9,202,122,44,72,-35,9,202,122,44,71,-35,9,202,122,44,70,-35,9,202,122,44,69,-35,9,202,122,44,68,-35,9,202,122,44,67,-35,9,202,122,44,66,-35,9,202,122,44,65,-35,9,202,122,44,64,-35,9,202,122,44,63,-35,9,202,122,44,62,-35,9,202,122,44,61,-35,9,202,122,44,60,-35,9,202,122,44,59,-35,9,202,122,44,58,-35,9,202,122,44,57,-35,9,202,122,44,56,-35,9,202,122,44,55,-35,9,202,122,44,54,-35,9,202,122,44,53,-35,9,202,122,44,52,-35,9,202,122,44,51,-35,9,202,122,44,50,-35,9,202,122,44,49,-35,9,202,122,44,48,-35,9,202,122,44,47,-35,9,202,122,44,46,-35,9,202,122,44,45,-35,9,202,122,44,44,-35,9,202,122,44,43,-35,9,202,122,44,42,-35,9,202,122,44,41,-35,9,202,122,44,40,-35,9,202,122,44,39,-35,9,202,122,44,38,-35,9,202,122,44,37,-35,9,202,122,44,84,59,2,202,122,44,-39,60,2,202,122,44,36,-35,9,202,122,44,35,-35,9,202,122,44,34,-35,9,202,122,44,33,-35,9,202,122,44,32,-35,9,202,122,44,31,-35,9,202,122,44,30,-35,9,202,122,44,29,-35,9,202,122,44,28,-35,9,202,122,44,27,-35,9,202,122,44,26,-35,9,202,122,44,25,-35,9,202,122,44,24,-35,9,202,122,44,23,-35,9,202,122,44,22,-35,9,202,122,44,21,-35,9,202,122,44,20,-35,9,202,122,44,19,-35,9,202,122,44,18,-35,9,202,122,44,17,-35,9,202,122,44,16,-35,9,202,122,44,15,-35,9,202,122,44,14,-35,9,202,122,44,13,-35,9,202,122,44,12,-35,9,202,122,44,11,-35,9,202,122,44,10,-35,9,202,122,44,9,-35,9,202,122,44,8,-35,9,202,122,44,7,-35,9,202,122,44,6,-35,9,202,122,44,5,-35,9,202,122,44,4,-35,9,202,122,44,3,-35,9,202,122,44,2,-35,9,202,122,44,1,-35,9,202,122,44,0,-35,9,202,122,44,-1,-35,9,202,122,44,-2,-35,9,202,122,44,-3,-35,9,202,122,44,-4,-35,9,202,122,44,-5,-35,9,202,122,44,-6,-35,9,202,122,44,-7,-35,9,202,122,44,-8,-35,9,202,122,44,-9,-35,9,202,122,44,-10,-35,9,202,122,44,-11,-35,9,202,122,44,-12,-35,9,202,122,44,-13,-35,9,202,122,44,-14,-35,9,202,122,44,-15,-35,9,202,122,44,-16,-35,9,202,122,44,-17,-35,9,202,122,44,-18,-35,9,202,122,44,-19,-35,9,202,122,44,-20,-35,9,202,122,44,-21,-35,9,202,122,44,-22,-35,9,202,122,44,-23,-35,9,202,122,44,-24,-35,9,202,122,44,-25,-35,9,202,122,44,-26,-35,9,202,122,44,-27,-35,9,202,122,44,-28,-35,9,202,122,44,-29,-35,9,202,122,44,-30,-35,9,202,122,44,-31,-35,9,202,122,44,-32,-35,9,202,122,44,-33,-35,9,202,122,44,-34,-35,9,202,122,44,-35,-35,9,202,122,44,81,81,8,202,122,44,80,81,8,202,122,44,79,81,8,202,122,44,78,81,8,202,122,44,77,81,8,202,122,44,76,81,8,202,122,44,75,81,8,202,122,44,74,81,8,202,122,44,73,81,8,202,122,44,72,81,8,202,122,44,71,81,8,202,122,44,70,81,8,202,122,44,69,81,8,202,122,44,68,81,8,202,122,44,67,81,8,202,122,44,66,81,8,202,122,44,65,81,8,202,122,44,64,81,8,202,122,44,63,81,8,202,122,44,62,81,8,202,122,44,61,81,8,202,122,44,60,81,8,202,122,44,59,81,8,202,122,44,58,81,8,202,122,44,57,81,8,202,122,44,56,81,8,202,122,44,55,81,8,202,122,44,54,81,8,202,122,44,53,81,8,202,122,44,52,81,8,202,122,44,51,81,8,202,122,44,50,81,8,202,122,44,49,81,8,202,122,44,48,81,8,202,122,44,47,81,8,202,122,44,46,81,8,202,122,44,45,81,8,202,122,44,44,81,8,202,122,44,43,81,8,202,122,44,42,81,8,202,122,44,41,81,8,202,122,44,40,81,8,202,122,44,39,81,8,202,122,44,38,81,8,202,122,44,37,81,8,202,122,44,36,81,8,202,122,44,35,81,8,202,122,44,34,81,8,202,122,44,33,81,8,202,122,44,32,81,8,202,122,44,84,60,2,202,122,44,-39,61,2,202,122,44,31,81,8,202,122,44,30,81,8,202,122,44,29,81,8,202,122,44,28,81,8,202,122,44,27,81,8,202,122,44,26,81,8,202,122,44,25,81,8,202,122,44,24,81,8,202,122,44,23,81,8,202,122,44,22,81,8,202,122,44,21,81,8,202,122,44,20,81,8,202,122,44,19,81,8,202,122,44,18,81,8,202,122,44,17,81,8,202,122,44,16,81,8,202,122,44,15,81,8,202,122,44,14,81,8,202,122,44,13,81,8,202,122,44,12,81,8,202,122,44,11,81,8,202,122,44,10,81,8,202,122,44,9,81,8,202,122,44,8,81,8,202,122,44,7,81,8,202,122,44,6,81,8,202,122,44,5,81,8,202,122,44,4,81,8,202,122,44,3,81,8,202,122,44,2,81,8,202,122,44,1,81,8,202,122,44,0,81,8,202,122,44,-1,81,8,202,122,44,-2,81,8,202,122,44,-3,81,8,202,122,44,-4,81,8,202,122,44,-5,81,8,202,122,44,-6,81,8,202,122,44,-7,81,8,202,122,44,-8,81,8,202,122,44,-9,81,8,202,122,44,-10,81,8,202,122,44,-11,81,8,202,122,44,-12,81,8,202,122,44,-13,81,8,202,122,44,-14,81,8,202,122,44,-15,81,8,202,122,44,-16,81,8,202,122,44,-17,81,8,202,122,44,-18,81,8,202,122,44,-19,81,8,202,122,44,-20,81,8,202,122,44,-21,81,8,202,122,44,-22,81,8,202,122,44,-23,81,8,202,122,44,-24,81,8,202,122,44,-25,81,8,202,122,44,-26,81,8,202,122,44,-27,81,8,202,122,44,-28,81,8,202,122,44,-29,81,8,202,122,44,-30,81,8,202,122,44,-31,81,8,202,122,44,-32,81,8,202,122,44,-33,81,8,202,122,44,-34,81,8,202,122,44,-35,81,8,202,122,44,-36,81,8,202,122,44,81,80,8,202,122,44,-36,80,8,202,122,44,81,79,8,202,122,44,-36,79,8,202,122,44,81,78,8,202,122,44,-36,78,8,202,122,44,81,77,8,202,122,44,-36,77,8,202,122,44,81,76,8,202,122,44,-36,76,8,202,122,44,81,75,8,202,122,44,-36,75,8,202,122,44,81,74,8,202,122,44,-36,74,8,202,122,44,81,73,8,202,122,44,-36,73,8,202,122,44,81,72,8,202,122,44,-36,72,8,202,122,44,81,71,8,202,122,44,-36,71,8,202,122,44,81,70,8,202,122,44,-36,70,8,202,122,44,81,69,8,202,122,44,-36,69,8,202,122,44,81,68,8,202,122,44,-36,68,8,202,122,44,81,67,8,202,122,44,-36,67,8,202,122,44,81,66,8,202,122,44,-36,66,8,202,122,44,81,65,8,202,122,44,-36,65,8,202,122,44,81,64,8,202,122,44,-36,64,8,202,122,44,81,63,8,202,122,44,-36,63,8,202,122,44,81,62,8,202,122,44,-36,62,8,202,122,44,81,61,8,202,122,44,-36,61,8,202,122,44,81,60,8,202,122,44,-36,60,8,202,122,44,81,59,8,202,122,44,-36,59,8,202,122,44,81,58,8,202,122,44,-36,58,8,202,122,44,81,57,8,202,122,44,-36,57,8,202,122,44,81,56,8,202,122,44,-36,56,8,202,122,44,81,55,8,202,122,44,-36,55,8,202,122,44,81,54,8,202,122,44,-36,54,8,202,122,44,84,61,2,202,122,44,-39,62,2,202,122,44,81,53,8,202,122,44,-36,53,8,202,122,44,81,52,8,202,122,44,-36,52,8,202,122,44,81,51,8,202,122,44,-36,51,8,202,122,44,81,50,8,202,122,44,-36,50,8,202,122,44,81,49,8,202,122,44,-36,49,8,202,122,44,81,48,8,202,122,44,-36,48,8,202,122,44,81,47,8,202,122,44,-36,47,8,202,122,44,81,46,8,202,122,44,-36,46,8,202,122,44,81,45,8,202,122,44,-36,45,8,202,122,44,81,44,8,202,122,44,-36,44,8,202,122,44,81,43,8,202,122,44,-36,43,8,202,122,44,81,42,8,202,122,44,-36,42,8,202,122,44,81,41,8,202,122,44,-36,41,8,202,122,44,81,40,8,202,122,44,-36,40,8,202,122,44,81,39,8,202,122,44,-36,39,8,202,122,44,81,38,8,202,122,44,-36,38,8,202,122,44,81,37,8,202,122,44,-36,37,8,202,122,44,81,36,8,202,122,44,-36,36,8,202,122,44,81,35,8,202,122,44,-36,35,8,202,122,44,81,34,8,202,122,44,-36,34,8,202,122,44,81,33,8,202,122,44,-36,33,8,202,122,44,81,32,8,202,122,44,-36,32,8,202,122,44,81,31,8,202,122,44,-36,31,8,202,122,44,81,30,8,202,122,44,-36,30,8,202,122,44,81,29,8,202,122,44,-36,29,8,202,122,44,81,28,8,202,122,44,-36,28,8,202,122,44,81,27,8,202,122,44,-36,27,8,202,122,44,81,26,8,202,122,44,-36,26,8,202,122,44,81,25,8,202,122,44,-36,25,8,202,122,44,81,24,8,202,122,44,-36,24,8,202,122,44,81,23,8,202,122,44,-36,23,8,202,122,44,81,22,8,202,122,44,-36,22,8,202,122,44,81,21,8,202,122,44,-36,21,8,202,122,44,81,20,8,202,122,44,-36,20,8,202,122,44,81,19,8,202,122,44,-36,19,8,202,122,44,81,18,8,202,122,44,-36,18,8,202,122,44,81,17,8,202,122,44,-36,17,8,202,122,44,81,16,8,202,122,44,-36,16,8,202,122,44,81,15,8,202,122,44,-36,15,8,202,122,44,81,14,8,202,122,44,-36,14,8,202,122,44,81,13,8,202,122,44,-36,13,8,202,122,44,81,12,8,202,122,44,-36,12,8,202,122,44,81,11,8,202,122,44,-36,11,8,202,122,44,81,10,8,202,122,44,-36,10,8,202,122,44,81,9,8,202,122,44,-36,9,8,202,122,44,81,8,8,202,122,44,-36,8,8,202,122,44,81,7,8,202,122,44,-36,7,8,202,122,44,81,6,8,202,122,44,-36,6,8,202,122,44,81,5,8,202,122,44,-36,5,8,202,122,44,81,4,8,202,122,44,-36,4,8,202,122,44,81,3,8,202,122,44,-36,3,8,202,122,44,81,2,8,202,122,44,-36,2,8,202,122,44,81,1,8,202,122,44,-36,1,8,202,122,44,81,0,8,202,122,44,-36,0,8,202,122,44,81,-1,8,202,122,44,-36,-1,8,202,122,44,81,-2,8,202,122,44,-36,-2,8,202,122,44,81,-3,8,202,122,44,-36,-3,8,202,122,44,81,-4,8,202,122,44,-36,-4,8,202,122,44,81,-5,8,202,122,44,-36,-5,8,202,122,44,81,-6,8,202,122,44,-36,-6,8,202,122,44,81,-7,8,202,122,44,-36,-7,8,202,122,44,84,62,2,202,122,44,-39,63,2,202,122,44,81,-8,8,202,122,44,-36,-8,8,202,122,44,81,-9,8,202,122,44,-36,-9,8,202,122,44,81,-10,8,202,122,44,-36,-10,8,202,122,44,81,-11,8,202,122,44,-36,-11,8,202,122,44,81,-12,8,202,122,44,-36,-12,8,202,122,44,81,-13,8,202,122,44,-36,-13,8,202,122,44,81,-14,8,202,122,44,-36,-14,8,202,122,44,81,-15,8,202,122,44,-36,-15,8,202,122,44,81,-16,8,202,122,44,-36,-16,8,202,122,44,81,-17,8,202,122,44,-36,-17,8,202,122,44,81,-18,8,202,122,44,-36,-18,8,202,122,44,81,-19,8,202,122,44,-36,-19,8,202,122,44,81,-20,8,202,122,44,-36,-20,8,202,122,44,81,-21,8,202,122,44,-36,-21,8,202,122,44,81,-22,8,202,122,44,-36,-22,8,202,122,44,81,-23,8,202,122,44,-36,-23,8,202,122,44,81,-24,8,202,122,44,-36,-24,8,202,122,44,81,-25,8,202,122,44,-36,-25,8,202,122,44,81,-26,8,202,122,44,-36,-26,8,202,122,44,81,-27,8,202,122,44,-36,-27,8,202,122,44,81,-28,8,202,122,44,-36,-28,8,202,122,44,81,-29,8,202,122,44,-36,-29,8,202,122,44,81,-30,8,202,122,44,-36,-30,8,202,122,44,81,-31,8,202,122,44,-36,-31,8,202,122,44,81,-32,8,202,122,44,-36,-32,8,202,122,44,81,-33,8,202,122,44,-36,-33,8,202,122,44,81,-34,8,202,122,44,-36,-34,8,202,122,44,81,-35,8,202,122,44,-36,-35,8,202,122,44,81,-36,8,202,122,44,80,-36,8,202,122,44,79,-36,8,202,122,44,78,-36,8,202,122,44,77,-36,8,202,122,44,76,-36,8,202,122,44,75,-36,8,202,122,44,74,-36,8,202,122,44,73,-36,8,202,122,44,72,-36,8,202,122,44,71,-36,8,202,122,44,70,-36,8,202,122,44,69,-36,8,202,122,44,68,-36,8,202,122,44,67,-36,8,202,122,44,66,-36,8,202,122,44,65,-36,8,202,122,44,64,-36,8,202,122,44,63,-36,8,202,122,44,62,-36,8,202,122,44,61,-36,8,202,122,44,60,-36,8,202,122,44,59,-36,8,202,122,44,58,-36,8,202,122,44,57,-36,8,202,122,44,56,-36,8,202,122,44,55,-36,8,202,122,44,54,-36,8,202,122,44,53,-36,8,202,122,44,52,-36,8,202,122,44,51,-36,8,202,122,44,50,-36,8,202,122,44,49,-36,8,202,122,44,48,-36,8,202,122,44,47,-36,8,202,122,44,46,-36,8,202,122,44,45,-36,8,202,122,44,44,-36,8,202,122,44,43,-36,8,202,122,44,42,-36,8,202,122,44,41,-36,8,202,122,44,40,-36,8,202,122,44,39,-36,8,202,122,44,38,-36,8,202,122,44,37,-36,8,202,122,44,36,-36,8,202,122,44,35,-36,8,202,122,44,34,-36,8,202,122,44,33,-36,8,202,122,44,32,-36,8,202,122,44,31,-36,8,202,122,44,30,-36,8,202,122,44,29,-36,8,202,122,44,28,-36,8,202,122,44,27,-36,8,202,122,44,26,-36,8,202,122,44,25,-36,8,202,122,44,24,-36,8,202,122,44,23,-36,8,202,122,44,22,-36,8,202,122,44,21,-36,8,202,122,44,20,-36,8,202,122,44,19,-36,8,202,122,44,18,-36,8,202,122,44,17,-36,8,202,122,44,16,-36,8,202,122,44,84,63,2,202,122,44,-39,64,2,202,122,44,15,-36,8,202,122,44,14,-36,8,202,122,44,13,-36,8,202,122,44,12,-36,8,202,122,44,11,-36,8,202,122,44,10,-36,8,202,122,44,9,-36,8,202,122,44,8,-36,8,202,122,44,7,-36,8,202,122,44,6,-36,8,202,122,44,5,-36,8,202,122,44,4,-36,8,202,122,44,3,-36,8,202,122,44,2,-36,8,202,122,44,1,-36,8,202,122,44,0,-36,8,202,122,44,-1,-36,8,202,122,44,-2,-36,8,202,122,44,-3,-36,8,202,122,44,-4,-36,8,202,122,44,-5,-36,8,202,122,44,-6,-36,8,202,122,44,-7,-36,8,202,122,44,-8,-36,8,202,122,44,-9,-36,8,202,122,44,-10,-36,8,202,122,44,-11,-36,8,202,122,44,-12,-36,8,202,122,44,-13,-36,8,202,122,44,-14,-36,8,202,122,44,-15,-36,8,202,122,44,-16,-36,8,202,122,44,-17,-36,8,202,122,44,-18,-36,8,202,122,44,-19,-36,8,202,122,44,-20,-36,8,202,122,44,-21,-36,8,202,122,44,-22,-36,8,202,122,44,-23,-36,8,202,122,44,-24,-36,8,202,122,44,-25,-36,8,202,122,44,-26,-36,8,202,122,44,-27,-36,8,202,122,44,-28,-36,8,202,122,44,-29,-36,8,202,122,44,-30,-36,8,202,122,44,-31,-36,8,202,122,44,-32,-36,8,202,122,44,-33,-36,8,202,122,44,-34,-36,8,202,122,44,-35,-36,8,202,122,44,-36,-36,8,202,122,44,81,81,7,202,122,44,80,81,7,202,122,44,79,81,7,202,122,44,78,81,7,202,122,44,77,81,7,202,122,44,76,81,7,202,122,44,75,81,7,202,122,44,74,81,7,202,122,44,73,81,7,202,122,44,72,81,7,202,122,44,71,81,7,202,122,44,70,81,7,202,122,44,69,81,7,202,122,44,68,81,7,202,122,44,67,81,7,202,122,44,66,81,7,202,122,44,65,81,7,202,122,44,64,81,7,202,122,44,63,81,7,202,122,44,62,81,7,202,122,44,61,81,7,202,122,44,60,81,7,202,122,44,59,81,7,202,122,44,58,81,7,202,122,44,57,81,7,202,122,44,56,81,7,202,122,44,55,81,7,202,122,44,54,81,7,202,122,44,53,81,7,202,122,44,52,81,7,202,122,44,51,81,7,202,122,44,50,81,7,202,122,44,49,81,7,202,122,44,48,81,7,202,122,44,47,81,7,202,122,44,46,81,7,202,122,44,45,81,7,202,122,44,44,81,7,202,122,44,43,81,7,202,122,44,42,81,7,202,122,44,41,81,7,202,122,44,40,81,7,202,122,44,39,81,7,202,122,44,38,81,7,202,122,44,37,81,7,202,122,44,36,81,7,202,122,44,35,81,7,202,122,44,34,81,7,202,122,44,33,81,7,202,122,44,32,81,7,202,122,44,31,81,7,202,122,44,30,81,7,202,122,44,29,81,7,202,122,44,28,81,7,202,122,44,27,81,7,202,122,44,26,81,7,202,122,44,25,81,7,202,122,44,24,81,7,202,122,44,23,81,7,202,122,44,22,81,7,202,122,44,21,81,7,202,122,44,20,81,7,202,122,44,19,81,7,202,122,44,18,81,7,202,122,44,17,81,7,202,122,44,16,81,7,202,122,44,15,81,7,202,122,44,14,81,7,202,122,44,13,81,7,202,122,44,12,81,7,202,122,44,84,64,2,202,122,44,-39,65,2,202,122,44,11,81,7,202,122,44,10,81,7,202,122,44,9,81,7,202,122,44,8,81,7,202,122,44,7,81,7,202,122,44,6,81,7,202,122,44,5,81,7,202,122,44,4,81,7,202,122,44,3,81,7,202,122,44,2,81,7,202,122,44,1,81,7,202,122,44,0,81,7,202,122,44,-1,81,7,202,122,44,-2,81,7,202,122,44,-3,81,7,202,122,44,-4,81,7,202,122,44,-5,81,7,202,122,44,-6,81,7,202,122,44,-7,81,7,202,122,44,-8,81,7,202,122,44,-9,81,7,202,122,44,-10,81,7,202,122,44,-11,81,7,202,122,44,-12,81,7,202,122,44,-13,81,7,202,122,44,-14,81,7,202,122,44,-15,81,7,202,122,44,-16,81,7,202,122,44,-17,81,7,202,122,44,-18,81,7,202,122,44,-19,81,7,202,122,44,-20,81,7,202,122,44,-21,81,7,202,122,44,-22,81,7,202,122,44,-23,81,7,202,122,44,-24,81,7,202,122,44,-25,81,7,202,122,44,-26,81,7,202,122,44,-27,81,7,202,122,44,-28,81,7,202,122,44,-29,81,7,202,122,44,-30,81,7,202,122,44,-31,81,7,202,122,44,-32,81,7,202,122,44,-33,81,7,202,122,44,-34,81,7,202,122,44,-35,81,7,202,122,44,-36,81,7,202,122,44,81,80,7,202,122,44,-36,80,7,202,122,44,81,79,7,202,122,44,-36,79,7,202,122,44,81,78,7,202,122,44,-36,78,7,202,122,44,81,77,7,202,122,44,-36,77,7,202,122,44,81,76,7,202,122,44,-36,76,7,202,122,44,81,75,7,202,122,44,-36,75,7,202,122,44,81,74,7,202,122,44,-36,74,7,202,122,44,81,73,7,202,122,44,-36,73,7,202,122,44,81,72,7,202,122,44,-36,72,7,202,122,44,81,71,7,202,122,44,-36,71,7,202,122,44,81,70,7,202,122,44,-36,70,7,202,122,44,81,69,7,202,122,44,-36,69,7,202,122,44,81,68,7,202,122,44,-36,68,7,202,122,44,81,67,7,202,122,44,-36,67,7,202,122,44,81,66,7,202,122,44,-36,66,7,202,122,44,81,65,7,202,122,44,-36,65,7,202,122,44,81,64,7,202,122,44,-36,64,7,202,122,44,81,63,7,202,122,44,-36,63,7,202,122,44,81,62,7,202,122,44,-36,62,7,202,122,44,81,61,7,202,122,44,-36,61,7,202,122,44,81,60,7,202,122,44,-36,60,7,202,122,44,81,59,7,202,122,44,-36,59,7,202,122,44,81,58,7,202,122,44,-36,58,7,202,122,44,81,57,7,202,122,44,-36,57,7,202,122,44,81,56,7,202,122,44,-36,56,7,202,122,44,81,55,7,202,122,44,-36,55,7,202,122,44,81,54,7,202,122,44,-36,54,7,202,122,44,81,53,7,202,122,44,-36,53,7,202,122,44,81,52,7,202,122,44,-36,52,7,202,122,44,81,51,7,202,122,44,-36,51,7,202,122,44,81,50,7,202,122,44,-36,50,7,202,122,44,81,49,7,202,122,44,-36,49,7,202,122,44,81,48,7,202,122,44,-36,48,7,202,122,44,81,47,7,202,122,44,-36,47,7,202,122,44,81,46,7,202,122,44,-36,46,7,202,122,44,81,45,7,202,122,44,-36,45,7,202,122,44,81,44,7,202,122,44,-36,44,7,202,122,44,84,65,2,202,122,44,-39,66,2,202,122,44,81,43,7,202,122,44,-36,43,7,202,122,44,81,42,7,202,122,44,-36,42,7,202,122,44,81,41,7,202,122,44,-36,41,7,202,122,44,81,40,7,202,122,44,-36,40,7,202,122,44,81,39,7,202,122,44,-36,39,7,202,122,44,81,38,7,202,122,44,-36,38,7,202,122,44,81,37,7,202,122,44,-36,37,7,202,122,44,81,36,7,202,122,44,-36,36,7,202,122,44,81,35,7,202,122,44,-36,35,7,202,122,44,81,34,7,202,122,44,-36,34,7,202,122,44,81,33,7,202,122,44,-36,33,7,202,122,44,81,32,7,202,122,44,-36,32,7,202,122,44,81,31,7,202,122,44,-36,31,7,202,122,44,81,30,7,202,122,44,-36,30,7,202,122,44,81,29,7,202,122,44,-36,29,7,202,122,44,81,28,7,202,122,44,-36,28,7,202,122,44,81,27,7,202,122,44,-36,27,7,202,122,44,81,26,7,202,122,44,-36,26,7,202,122,44,81,25,7,202,122,44,-36,25,7,202,122,44,81,24,7,202,122,44,-36,24,7,202,122,44,81,23,7,202,122,44,-36,23,7,202,122,44,81,22,7,202,122,44,-36,22,7,202,122,44,81,21,7,202,122,44,-36,21,7,202,122,44,81,20,7,202,122,44,-36,20,7,202,122,44,81,19,7,202,122,44,-36,19,7,202,122,44,81,18,7,202,122,44,-36,18,7,202,122,44,81,17,7,202,122,44,-36,17,7,202,122,44,81,16,7,202,122,44,-36,16,7,202,122,44,81,15,7,202,122,44,-36,15,7,202,122,44,81,14,7,202,122,44,-36,14,7,202,122,44,81,13,7,202,122,44,-36,13,7,202,122,44,81,12,7,202,122,44,-36,12,7,202,122,44,81,11,7,202,122,44,-36,11,7,202,122,44,81,10,7,202,122,44,-36,10,7,202,122,44,81,9,7,202,122,44,-36,9,7,202,122,44,81,8,7,202,122,44,-36,8,7,202,122,44,81,7,7,202,122,44,-36,7,7,202,122,44,81,6,7,202,122,44,-36,6,7,202,122,44,81,5,7,202,122,44,-36,5,7,202,122,44,81,4,7,202,122,44,-36,4,7,202,122,44,81,3,7,202,122,44,-36,3,7,202,122,44,81,2,7,202,122,44,-36,2,7,202,122,44,81,1,7,202,122,44,-36,1,7,202,122,44,81,0,7,202,122,44,-36,0,7,202,122,44,81,-1,7,202,122,44,-36,-1,7,202,122,44,81,-2,7,202,122,44,-36,-2,7,202,122,44,81,-3,7,202,122,44,-36,-3,7,202,122,44,81,-4,7,202,122,44,-36,-4,7,202,122,44,81,-5,7,202,122,44,-36,-5,7,202,122,44,81,-6,7,202,122,44,-36,-6,7,202,122,44,81,-7,7,202,122,44,-36,-7,7,202,122,44,81,-8,7,202,122,44,-36,-8,7,202,122,44,81,-9,7,202,122,44,-36,-9,7,202,122,44,81,-10,7,202,122,44,-36,-10,7,202,122,44,81,-11,7,202,122,44,-36,-11,7,202,122,44,81,-12,7,202,122,44,-36,-12,7,202,122,44,81,-13,7,202,122,44,-36,-13,7,202,122,44,81,-14,7,202,122,44,-36,-14,7,202,122,44,81,-15,7,202,122,44,-36,-15,7,202,122,44,81,-16,7,202,122,44,-36,-16,7,202,122,44,81,-17,7,202,122,44,-36,-17,7,202,122,44,84,66,2,202,122,44,-39,67,2,202,122,44,81,-18,7,202,122,44,-36,-18,7,202,122,44,81,-19,7,202,122,44,-36,-19,7,202,122,44,81,-20,7,202,122,44,-36,-20,7,202,122,44,81,-21,7,202,122,44,-36,-21,7,202,122,44,81,-22,7,202,122,44,-36,-22,7,202,122,44,81,-23,7,202,122,44,-36,-23,7,202,122,44,81,-24,7,202,122,44,-36,-24,7,202,122,44,81,-25,7,202,122,44,-36,-25,7,202,122,44,81,-26,7,202,122,44,-36,-26,7,202,122,44,81,-27,7,202,122,44,-36,-27,7,202,122,44,81,-28,7,202,122,44,-36,-28,7,202,122,44,81,-29,7,202,122,44,-36,-29,7,202,122,44,81,-30,7,202,122,44,-36,-30,7,202,122,44,81,-31,7,202,122,44,-36,-31,7,202,122,44,81,-32,7,202,122,44,-36,-32,7,202,122,44,81,-33,7,202,122,44,-36,-33,7,202,122,44,81,-34,7,202,122,44,-36,-34,7,202,122,44,81,-35,7,202,122,44,-36,-35,7,202,122,44,81,-36,7,202,122,44,80,-36,7,202,122,44,79,-36,7,202,122,44,78,-36,7,202,122,44,77,-36,7,202,122,44,76,-36,7,202,122,44,75,-36,7,202,122,44,74,-36,7,202,122,44,73,-36,7,202,122,44,72,-36,7,202,122,44,71,-36,7,202,122,44,70,-36,7,202,122,44,69,-36,7,202,122,44,68,-36,7,202,122,44,67,-36,7,202,122,44,66,-36,7,202,122,44,65,-36,7,202,122,44,64,-36,7,202,122,44,63,-36,7,202,122,44,62,-36,7,202,122,44,61,-36,7,202,122,44,60,-36,7,202,122,44,59,-36,7,202,122,44,58,-36,7,202,122,44,57,-36,7,202,122,44,56,-36,7,202,122,44,55,-36,7,202,122,44,54,-36,7,202,122,44,53,-36,7,202,122,44,52,-36,7,202,122,44,51,-36,7,202,122,44,50,-36,7,202,122,44,49,-36,7,202,122,44,48,-36,7,202,122,44,47,-36,7,202,122,44,46,-36,7,202,122,44,45,-36,7,202,122,44,44,-36,7,202,122,44,43,-36,7,202,122,44,42,-36,7,202,122,44,41,-36,7,202,122,44,40,-36,7,202,122,44,39,-36,7,202,122,44,38,-36,7,202,122,44,37,-36,7,202,122,44,36,-36,7,202,122,44,35,-36,7,202,122,44,34,-36,7,202,122,44,33,-36,7,202,122,44,32,-36,7,202,122,44,31,-36,7,202,122,44,30,-36,7,202,122,44,29,-36,7,202,122,44,28,-36,7,202,122,44,27,-36,7,202,122,44,26,-36,7,202,122,44,25,-36,7,202,122,44,24,-36,7,202,122,44,23,-36,7,202,122,44,22,-36,7,202,122,44,21,-36,7,202,122,44,20,-36,7,202,122,44,19,-36,7,202,122,44,18,-36,7,202,122,44,17,-36,7,202,122,44,16,-36,7,202,122,44,15,-36,7,202,122,44,14,-36,7,202,122,44,13,-36,7,202,122,44,12,-36,7,202,122,44,11,-36,7,202,122,44,10,-36,7,202,122,44,9,-36,7,202,122,44,8,-36,7,202,122,44,7,-36,7,202,122,44,6,-36,7,202,122,44,5,-36,7,202,122,44,4,-36,7,202,122,44,3,-36,7,202,122,44,2,-36,7,202,122,44,1,-36,7,202,122,44,0,-36,7,202,122,44,-1,-36,7,202,122,44,-2,-36,7,202,122,44,-3,-36,7,202,122,44,-4,-36,7,202,122,44,84,67,2,202,122,44,-39,68,2,202,122,44,-5,-36,7,202,122,44,-6,-36,7,202,122,44,-7,-36,7,202,122,44,-8,-36,7,202,122,44,-9,-36,7,202,122,44,-10,-36,7,202,122,44,-11,-36,7,202,122,44,-12,-36,7,202,122,44,-13,-36,7,202,122,44,-14,-36,7,202,122,44,-15,-36,7,202,122,44,-16,-36,7,202,122,44,-17,-36,7,202,122,44,-18,-36,7,202,122,44,-19,-36,7,202,122,44,-20,-36,7,202,122,44,-21,-36,7,202,122,44,-22,-36,7,202,122,44,-23,-36,7,202,122,44,-24,-36,7,202,122,44,-25,-36,7,202,122,44,-26,-36,7,202,122,44,-27,-36,7,202,122,44,-28,-36,7,202,122,44,-29,-36,7,202,122,44,-30,-36,7,202,122,44,-31,-36,7,202,122,44,-32,-36,7,202,122,44,-33,-36,7,202,122,44,-34,-36,7,202,122,44,-35,-36,7,202,122,44,-36,-36,7,202,122,44,82,82,6,202,122,44,81,82,6,202,122,44,80,82,6,202,122,44,79,82,6,202,122,44,78,82,6,202,122,44,77,82,6,202,122,44,76,82,6,202,122,44,75,82,6,202,122,44,74,82,6,202,122,44,73,82,6,202,122,44,72,82,6,202,122,44,71,82,6,202,122,44,70,82,6,202,122,44,69,82,6,202,122,44,68,82,6,202,122,44,67,82,6,202,122,44,66,82,6,202,122,44,65,82,6,202,122,44,64,82,6,202,122,44,63,82,6,202,122,44,62,82,6,202,122,44,61,82,6,202,122,44,60,82,6,202,122,44,59,82,6,202,122,44,58,82,6,202,122,44,57,82,6,202,122,44,56,82,6,202,122,44,55,82,6,202,122,44,54,82,6,202,122,44,53,82,6,202,122,44,52,82,6,202,122,44,51,82,6,202,122,44,50,82,6,202,122,44,49,82,6,202,122,44,48,82,6,202,122,44,47,82,6,202,122,44,46,82,6,202,122,44,45,82,6,202,122,44,44,82,6,202,122,44,43,82,6,202,122,44,42,82,6,202,122,44,41,82,6,202,122,44,40,82,6,202,122,44,39,82,6,202,122,44,38,82,6,202,122,44,37,82,6,202,122,44,36,82,6,202,122,44,35,82,6,202,122,44,34,82,6,202,122,44,33,82,6,202,122,44,32,82,6,202,122,44,31,82,6,202,122,44,30,82,6,202,122,44,29,82,6,202,122,44,28,82,6,202,122,44,27,82,6,202,122,44,26,82,6,202,122,44,25,82,6,202,122,44,24,82,6,202,122,44,23,82,6,202,122,44,22,82,6,202,122,44,21,82,6,202,122,44,20,82,6,202,122,44,19,82,6,202,122,44,18,82,6,202,122,44,17,82,6,202,122,44,16,82,6,202,122,44,15,82,6,202,122,44,14,82,6,202,122,44,13,82,6,202,122,44,12,82,6,202,122,44,11,82,6,202,122,44,10,82,6,202,122,44,9,82,6,202,122,44,8,82,6,202,122,44,7,82,6,202,122,44,6,82,6,202,122,44,5,82,6,202,122,44,4,82,6,202,122,44,3,82,6,202,122,44,2,82,6,202,122,44,1,82,6,202,122,44,0,82,6,202,122,44,-1,82,6,202,122,44,-2,82,6,202,122,44,-3,82,6,202,122,44,-4,82,6,202,122,44,-5,82,6,202,122,44,-6,82,6,202,122,44,-7,82,6,202,122,44,84,68,2,202,122,44,-39,69,2,202,122,44,-8,82,6,202,122,44,-9,82,6,202,122,44,-10,82,6,202,122,44,-11,82,6,202,122,44,-12,82,6,202,122,44,-13,82,6,202,122,44,-14,82,6,202,122,44,-15,82,6,202,122,44,-16,82,6,202,122,44,-17,82,6,202,122,44,-18,82,6,202,122,44,-19,82,6,202,122,44,-20,82,6,202,122,44,-21,82,6,202,122,44,-22,82,6,202,122,44,-23,82,6,202,122,44,-24,82,6,202,122,44,-25,82,6,202,122,44,-26,82,6,202,122,44,-27,82,6,202,122,44,-28,82,6,202,122,44,-29,82,6,202,122,44,-30,82,6,202,122,44,-31,82,6,202,122,44,-32,82,6,202,122,44,-33,82,6,202,122,44,-34,82,6,202,122,44,-35,82,6,202,122,44,-36,82,6,202,122,44,-37,82,6,202,122,44,82,81,6,202,122,44,-37,81,6,202,122,44,82,80,6,202,122,44,-37,80,6,202,122,44,82,79,6,202,122,44,-37,79,6,202,122,44,82,78,6,202,122,44,-37,78,6,202,122,44,82,77,6,202,122,44,-37,77,6,202,122,44,82,76,6,202,122,44,-37,76,6,202,122,44,82,75,6,202,122,44,-37,75,6,202,122,44,82,74,6,202,122,44,-37,74,6,202,122,44,82,73,6,202,122,44,-37,73,6,202,122,44,82,72,6,202,122,44,-37,72,6,202,122,44,82,71,6,202,122,44,-37,71,6,202,122,44,82,70,6,202,122,44,-37,70,6,202,122,44,82,69,6,202,122,44,-37,69,6,202,122,44,82,68,6,202,122,44,-37,68,6,202,122,44,82,67,6,202,122,44,-37,67,6,202,122,44,82,66,6,202,122,44,-37,66,6,202,122,44,82,65,6,202,122,44,-37,65,6,202,122,44,82,64,6,202,122,44,-37,64,6,202,122,44,82,63,6,202,122,44,-37,63,6,202,122,44,82,62,6,202,122,44,-37,62,6,202,122,44,82,61,6,202,122,44,-37,61,6,202,122,44,82,60,6,202,122,44,-37,60,6,202,122,44,82,59,6,202,122,44,-37,59,6,202,122,44,82,58,6,202,122,44,-37,58,6,202,122,44,82,57,6,202,122,44,-37,57,6,202,122,44,82,56,6,202,122,44,-37,56,6,202,122,44,82,55,6,202,122,44,-37,55,6,202,122,44,82,54,6,202,122,44,-37,54,6,202,122,44,82,53,6,202,122,44,-37,53,6,202,122,44,82,52,6,202,122,44,-37,52,6,202,122,44,82,51,6,202,122,44,-37,51,6,202,122,44,82,50,6,202,122,44,-37,50,6,202,122,44,82,49,6,202,122,44,-37,49,6,202,122,44,82,48,6,202,122,44,-37,48,6,202,122,44,82,47,6,202,122,44,-37,47,6,202,122,44,82,46,6,202,122,44,-37,46,6,202,122,44,82,45,6,202,122,44,-37,45,6,202,122,44,82,44,6,202,122,44,-37,44,6,202,122,44,82,43,6,202,122,44,-37,43,6,202,122,44,82,42,6,202,122,44,-37,42,6,202,122,44,82,41,6,202,122,44,-37,41,6,202,122,44,82,40,6,202,122,44,-37,40,6,202,122,44,82,39,6,202,122,44,-37,39,6,202,122,44,82,38,6,202,122,44,-37,38,6,202,122,44,82,37,6,202,122,44,-37,37,6,202,122,44,82,36,6,202,122,44,-37,36,6,202,122,44,84,69,2,202,122,44,-39,70,2,202,122,44,82,35,6,202,122,44,-37,35,6,202,122,44,82,34,6,202,122,44,-37,34,6,202,122,44,82,33,6,202,122,44,-37,33,6,202,122,44,82,32,6,202,122,44,-37,32,6,202,122,44,82,31,6,202,122,44,-37,31,6,202,122,44,82,30,6,202,122,44,-37,30,6,202,122,44,82,29,6,202,122,44,-37,29,6,202,122,44,82,28,6,202,122,44,-37,28,6,202,122,44,82,27,6,202,122,44,-37,27,6,202,122,44,82,26,6,202,122,44,-37,26,6,202,122,44,82,25,6,202,122,44,-37,25,6,202,122,44,82,24,6,202,122,44,-37,24,6,202,122,44,82,23,6,202,122,44,-37,23,6,202,122,44,82,22,6,202,122,44,-37,22,6,202,122,44,82,21,6,202,122,44,-37,21,6,202,122,44,82,20,6,202,122,44,-37,20,6,202,122,44,82,19,6,202,122,44,-37,19,6,202,122,44,82,18,6,202,122,44,-37,18,6,202,122,44,82,17,6,202,122,44,-37,17,6,202,122,44,82,16,6,202,122,44,-37,16,6,202,122,44,82,15,6,202,122,44,-37,15,6,202,122,44,82,14,6,202,122,44,-37,14,6,202,122,44,82,13,6,202,122,44,-37,13,6,202,122,44,82,12,6,202,122,44,-37,12,6,202,122,44,82,11,6,202,122,44,-37,11,6,202,122,44,82,10,6,202,122,44,-37,10,6,202,122,44,82,9,6,202,122,44,-37,9,6,202,122,44,82,8,6,202,122,44,-37,8,6,202,122,44,82,7,6,202,122,44,-37,7,6,202,122,44,82,6,6,202,122,44,-37,6,6,202,122,44,82,5,6,202,122,44,-37,5,6,202,122,44,82,4,6,202,122,44,-37,4,6,202,122,44,82,3,6,202,122,44,-37,3,6,202,122,44,82,2,6,202,122,44,-37,2,6,202,122,44,82,1,6,202,122,44,-37,1,6,202,122,44,82,0,6,202,122,44,-37,0,6,202,122,44,82,-1,6,202,122,44,-37,-1,6,202,122,44,82,-2,6,202,122,44,-37,-2,6,202,122,44,82,-3,6,202,122,44,-37,-3,6,202,122,44,82,-4,6,202,122,44,-37,-4,6,202,122,44,82,-5,6,202,122,44,-37,-5,6,202,122,44,82,-6,6,202,122,44,-37,-6,6,202,122,44,82,-7,6,202,122,44,-37,-7,6,202,122,44,82,-8,6,202,122,44,-37,-8,6,202,122,44,82,-9,6,202,122,44,-37,-9,6,202,122,44,82,-10,6,202,122,44,-37,-10,6,202,122,44,82,-11,6,202,122,44,-37,-11,6,202,122,44,82,-12,6,202,122,44,-37,-12,6,202,122,44,82,-13,6,202,122,44,-37,-13,6,202,122,44,82,-14,6,202,122,44,-37,-14,6,202,122,44,82,-15,6,202,122,44,-37,-15,6,202,122,44,82,-16,6,202,122,44,-37,-16,6,202,122,44,82,-17,6,202,122,44,-37,-17,6,202,122,44,82,-18,6,202,122,44,-37,-18,6,202,122,44,82,-19,6,202,122,44,-37,-19,6,202,122,44,82,-20,6,202,122,44,-37,-20,6,202,122,44,82,-21,6,202,122,44,-37,-21,6,202,122,44,82,-22,6,202,122,44,-37,-22,6,202,122,44,82,-23,6,202,122,44,-37,-23,6,202,122,44,82,-24,6,202,122,44,-37,-24,6,202,122,44,82,-25,6,202,122,44,-37,-25,6,202,122,44,84,70,2,202,122,44,-39,71,2,202,122,44,82,-26,6,202,122,44,-37,-26,6,202,122,44,82,-27,6,202,122,44,-37,-27,6,202,122,44,82,-28,6,202,122,44,-37,-28,6,202,122,44,82,-29,6,202,122,44,-37,-29,6,202,122,44,82,-30,6,202,122,44,-37,-30,6,202,122,44,82,-31,6,202,122,44,-37,-31,6,202,122,44,82,-32,6,202,122,44,-37,-32,6,202,122,44,82,-33,6,202,122,44,-37,-33,6,202,122,44,82,-34,6,202,122,44,-37,-34,6,202,122,44,82,-35,6,202,122,44,-37,-35,6,202,122,44,82,-36,6,202,122,44,-37,-36,6,202,122,44,82,-37,6,202,122,44,81,-37,6,202,122,44,80,-37,6,202,122,44,79,-37,6,202,122,44,78,-37,6,202,122,44,77,-37,6,202,122,44,76,-37,6,202,122,44,75,-37,6,202,122,44,74,-37,6,202,122,44,73,-37,6,202,122,44,72,-37,6,202,122,44,71,-37,6,202,122,44,70,-37,6,202,122,44,69,-37,6,202,122,44,68,-37,6,202,122,44,67,-37,6,202,122,44,66,-37,6,202,122,44,65,-37,6,202,122,44,64,-37,6,202,122,44,63,-37,6,202,122,44,62,-37,6,202,122,44,61,-37,6,202,122,44,60,-37,6,202,122,44,59,-37,6,202,122,44,58,-37,6,202,122,44,57,-37,6,202,122,44,56,-37,6,202,122,44,55,-37,6,202,122,44,54,-37,6,202,122,44,53,-37,6,202,122,44,52,-37,6,202,122,44,51,-37,6,202,122,44,50,-37,6,202,122,44,49,-37,6,202,122,44,48,-37,6,202,122,44,47,-37,6,202,122,44,46,-37,6,202,122,44,45,-37,6,202,122,44,44,-37,6,202,122,44,43,-37,6,202,122,44,42,-37,6,202,122,44,41,-37,6,202,122,44,40,-37,6,202,122,44,39,-37,6,202,122,44,38,-37,6,202,122,44,37,-37,6,202,122,44,36,-37,6,202,122,44,35,-37,6,202,122,44,34,-37,6,202,122,44,33,-37,6,202,122,44,32,-37,6,202,122,44,31,-37,6,202,122,44,30,-37,6,202,122,44,29,-37,6,202,122,44,28,-37,6,202,122,44,27,-37,6,202,122,44,26,-37,6,202,122,44,25,-37,6,202,122,44,24,-37,6,202,122,44,23,-37,6,202,122,44,22,-37,6,202,122,44,21,-37,6,202,122,44,20,-37,6,202,122,44,19,-37,6,202,122,44,18,-37,6,202,122,44,17,-37,6,202,122,44,16,-37,6,202,122,44,15,-37,6,202,122,44,14,-37,6,202,122,44,13,-37,6,202,122,44,12,-37,6,202,122,44,11,-37,6,202,122,44,10,-37,6,202,122,44,9,-37,6,202,122,44,8,-37,6,202,122,44,7,-37,6,202,122,44,6,-37,6,202,122,44,5,-37,6,202,122,44,4,-37,6,202,122,44,3,-37,6,202,122,44,2,-37,6,202,122,44,1,-37,6,202,122,44,0,-37,6,202,122,44,-1,-37,6,202,122,44,-2,-37,6,202,122,44,-3,-37,6,202,122,44,-4,-37,6,202,122,44,-5,-37,6,202,122,44,-6,-37,6,202,122,44,-7,-37,6,202,122,44,-8,-37,6,202,122,44,-9,-37,6,202,122,44,-10,-37,6,202,122,44,-11,-37,6,202,122,44,-12,-37,6,202,122,44,-13,-37,6,202,122,44,-14,-37,6,202,122,44,-15,-37,6,202,122,44,-16,-37,6,202,122,44,-17,-37,6,202,122,44,84,71,2,202,122,44,-39,72,2,202,122,44,-18,-37,6,202,122,44,-19,-37,6,202,122,44,-20,-37,6,202,122,44,-21,-37,6,202,122,44,-22,-37,6,202,122,44,-23,-37,6,202,122,44,-24,-37,6,202,122,44,-25,-37,6,202,122,44,-26,-37,6,202,122,44,-27,-37,6,202,122,44,-28,-37,6,202,122,44,-29,-37,6,202,122,44,-30,-37,6,202,122,44,-31,-37,6,202,122,44,-32,-37,6,202,122,44,-33,-37,6,202,122,44,-34,-37,6,202,122,44,-35,-37,6,202,122,44,-36,-37,6,202,122,44,-37,-37,6,202,122,44,82,82,5,202,122,44,81,82,5,202,122,44,80,82,5,202,122,44,79,82,5,202,122,44,78,82,5,202,122,44,77,82,5,202,122,44,76,82,5,202,122,44,75,82,5,202,122,44,74,82,5,202,122,44,73,82,5,202,122,44,72,82,5,202,122,44,71,82,5,202,122,44,70,82,5,202,122,44,69,82,5,202,122,44,68,82,5,202,122,44,67,82,5,202,122,44,66,82,5,202,122,44,65,82,5,202,122,44,64,82,5,202,122,44,63,82,5,202,122,44,62,82,5,202,122,44,61,82,5,202,122,44,60,82,5,202,122,44,59,82,5,202,122,44,58,82,5,202,122,44,57,82,5,202,122,44,56,82,5,202,122,44,55,82,5,202,122,44,54,82,5,202,122,44,53,82,5,202,122,44,52,82,5,202,122,44,51,82,5,202,122,44,50,82,5,202,122,44,49,82,5,202,122,44,48,82,5,202,122,44,47,82,5,202,122,44,46,82,5,202,122,44,45,82,5,202,122,44,44,82,5,202,122,44,43,82,5,202,122,44,42,82,5,202,122,44,41,82,5,202,122,44,40,82,5,202,122,44,39,82,5,202,122,44,38,82,5,202,122,44,37,82,5,202,122,44,36,82,5,202,122,44,35,82,5,202,122,44,34,82,5,202,122,44,33,82,5,202,122,44,32,82,5,202,122,44,31,82,5,202,122,44,30,82,5,202,122,44,29,82,5,202,122,44,28,82,5,202,122,44,27,82,5,202,122,44,26,82,5,202,122,44,25,82,5,202,122,44,24,82,5,202,122,44,23,82,5,202,122,44,22,82,5,202,122,44,21,82,5,202,122,44,20,82,5,202,122,44,19,82,5,202,122,44,18,82,5,202,122,44,17,82,5,202,122,44,16,82,5,202,122,44,15,82,5,202,122,44,14,82,5,202,122,44,13,82,5,202,122,44,12,82,5,202,122,44,11,82,5,202,122,44,10,82,5,202,122,44,9,82,5,202,122,44,8,82,5,202,122,44,7,82,5,202,122,44,6,82,5,202,122,44,5,82,5,202,122,44,4,82,5,202,122,44,3,82,5,202,122,44,2,82,5,202,122,44,1,82,5,202,122,44,0,82,5,202,122,44,-1,82,5,202,122,44,-2,82,5,202,122,44,-3,82,5,202,122,44,-4,82,5,202,122,44,-5,82,5,202,122,44,-6,82,5,202,122,44,-7,82,5,202,122,44,-8,82,5,202,122,44,-9,82,5,202,122,44,-10,82,5,202,122,44,-11,82,5,202,122,44,-12,82,5,202,122,44,-13,82,5,202,122,44,-14,82,5,202,122,44,-15,82,5,202,122,44,-16,82,5,202,122,44,-17,82,5,202,122,44,-18,82,5,202,122,44,-19,82,5,202,122,44,84,72,2,202,122,44,-39,73,2,202,122,44,-20,82,5,202,122,44,-21,82,5,202,122,44,-22,82,5,202,122,44,-23,82,5,202,122,44,-24,82,5,202,122,44,-25,82,5,202,122,44,-26,82,5,202,122,44,-27,82,5,202,122,44,-28,82,5,202,122,44,-29,82,5,202,122,44,-30,82,5,202,122,44,-31,82,5,202,122,44,-32,82,5,202,122,44,-33,82,5,202,122,44,-34,82,5,202,122,44,-35,82,5,202,122,44,-36,82,5,202,122,44,-37,82,5,202,122,44,82,81,5,202,122,44,-37,81,5,202,122,44,82,80,5,202,122,44,-37,80,5,202,122,44,82,79,5,202,122,44,-37,79,5,202,122,44,82,78,5,202,122,44,-37,78,5,202,122,44,82,77,5,202,122,44,-37,77,5,202,122,44,82,76,5,202,122,44,-37,76,5,202,122,44,82,75,5,202,122,44,-37,75,5,202,122,44,82,74,5,202,122,44,-37,74,5,202,122,44,82,73,5,202,122,44,-37,73,5,202,122,44,82,72,5,202,122,44,-37,72,5,202,122,44,82,71,5,202,122,44,-37,71,5,202,122,44,82,70,5,202,122,44,-37,70,5,202,122,44,82,69,5,202,122,44,-37,69,5,202,122,44,82,68,5,202,122,44,-37,68,5,202,122,44,82,67,5,202,122,44,-37,67,5,202,122,44,82,66,5,202,122,44,-37,66,5,202,122,44,82,65,5,202,122,44,-37,65,5,202,122,44,82,64,5,202,122,44,-37,64,5,202,122,44,82,63,5,202,122,44,-37,63,5,202,122,44,82,62,5,202,122,44,-37,62,5,202,122,44,82,61,5,202,122,44,-37,61,5,202,122,44,82,60,5,202,122,44,-37,60,5,202,122,44,82,59,5,202,122,44,-37,59,5,202,122,44,82,58,5,202,122,44,-37,58,5,202,122,44,82,57,5,202,122,44,-37,57,5,202,122,44,82,56,5,202,122,44,-37,56,5,202,122,44,82,55,5,202,122,44,-37,55,5,202,122,44,82,54,5,202,122,44,-37,54,5,202,122,44,82,53,5,202,122,44,-37,53,5,202,122,44,82,52,5,202,122,44,-37,52,5,202,122,44,82,51,5,202,122,44,-37,51,5,202,122,44,82,50,5,202,122,44,-37,50,5,202,122,44,82,49,5,202,122,44,-37,49,5,202,122,44,82,48,5,202,122,44,-37,48,5,202,122,44,82,47,5,202,122,44,-37,47,5,202,122,44,82,46,5,202,122,44,-37,46,5,202,122,44,82,45,5,202,122,44,-37,45,5,202,122,44,82,44,5,202,122,44,-37,44,5,202,122,44,82,43,5,202,122,44,-37,43,5,202,122,44,82,42,5,202,122,44,-37,42,5,202,122,44,82,41,5,202,122,44,-37,41,5,202,122,44,82,40,5,202,122,44,-37,40,5,202,122,44,82,39,5,202,122,44,-37,39,5,202,122,44,82,38,5,202,122,44,-37,38,5,202,122,44,82,37,5,202,122,44,-37,37,5,202,122,44,82,36,5,202,122,44,-37,36,5,202,122,44,82,35,5,202,122,44,-37,35,5,202,122,44,82,34,5,202,122,44,-37,34,5,202,122,44,82,33,5,202,122,44,-37,33,5,202,122,44,82,32,5,202,122,44,-37,32,5,202,122,44,82,31,5,202,122,44,-37,31,5,202,122,44,82,30,5,202,122,44,-37,30,5,202,122,44,84,73,2,202,122,44,-39,74,2,202,122,44,82,29,5,202,122,44,-37,29,5,202,122,44,82,28,5,202,122,44,-37,28,5,202,122,44,82,27,5,202,122,44,-37,27,5,202,122,44,82,26,5,202,122,44,-37,26,5,202,122,44,82,25,5,202,122,44,-37,25,5,202,122,44,82,24,5,202,122,44,-37,24,5,202,122,44,82,23,5,202,122,44,-37,23,5,202,122,44,82,22,5,202,122,44,-37,22,5,202,122,44,82,21,5,202,122,44,-37,21,5,202,122,44,82,20,5,202,122,44,-37,20,5,202,122,44,82,19,5,202,122,44,-37,19,5,202,122,44,82,18,5,202,122,44,-37,18,5,202,122,44,82,17,5,202,122,44,-37,17,5,202,122,44,82,16,5,202,122,44,-37,16,5,202,122,44,82,15,5,202,122,44,-37,15,5,202,122,44,82,14,5,202,122,44,-37,14,5,202,122,44,82,13,5,202,122,44,-37,13,5,202,122,44,82,12,5,202,122,44,-37,12,5,202,122,44,82,11,5,202,122,44,-37,11,5,202,122,44,82,10,5,202,122,44,-37,10,5,202,122,44,82,9,5,202,122,44,-37,9,5,202,122,44,82,8,5,202,122,44,-37,8,5,202,122,44,82,7,5,202,122,44,-37,7,5,202,122,44,82,6,5,202,122,44,-37,6,5,202,122,44,82,5,5,202,122,44,-37,5,5,202,122,44,82,4,5,202,122,44,-37,4,5,202,122,44,82,3,5,202,122,44,-37,3,5,202,122,44,82,2,5,202,122,44,-37,2,5,202,122,44,82,1,5,202,122,44,-37,1,5,202,122,44,82,0,5,202,122,44,-37,0,5,202,122,44,82,-1,5,202,122,44,-37,-1,5,202,122,44,82,-2,5,202,122,44,-37,-2,5,202,122,44,82,-3,5,202,122,44,-37,-3,5,202,122,44,82,-4,5,202,122,44,-37,-4,5,202,122,44,82,-5,5,202,122,44,-37,-5,5,202,122,44,82,-6,5,202,122,44,-37,-6,5,202,122,44,82,-7,5,202,122,44,-37,-7,5,202,122,44,82,-8,5,202,122,44,-37,-8,5,202,122,44,82,-9,5,202,122,44,-37,-9,5,202,122,44,82,-10,5,202,122,44,-37,-10,5,202,122,44,82,-11,5,202,122,44,-37,-11,5,202,122,44,82,-12,5,202,122,44,-37,-12,5,202,122,44,82,-13,5,202,122,44,-37,-13,5,202,122,44,82,-14,5,202,122,44,-37,-14,5,202,122,44,82,-15,5,202,122,44,-37,-15,5,202,122,44,82,-16,5,202,122,44,-37,-16,5,202,122,44,82,-17,5,202,122,44,-37,-17,5,202,122,44,82,-18,5,202,122,44,-37,-18,5,202,122,44,82,-19,5,202,122,44,-37,-19,5,202,122,44,82,-20,5,202,122,44,-37,-20,5,202,122,44,82,-21,5,202,122,44,-37,-21,5,202,122,44,82,-22,5,202,122,44,-37,-22,5,202,122,44,82,-23,5,202,122,44,-37,-23,5,202,122,44,82,-24,5,202,122,44,-37,-24,5,202,122,44,82,-25,5,202,122,44,-37,-25,5,202,122,44,82,-26,5,202,122,44,-37,-26,5,202,122,44,82,-27,5,202,122,44,-37,-27,5,202,122,44,82,-28,5,202,122,44,-37,-28,5,202,122,44,82,-29,5,202,122,44,-37,-29,5,202,122,44,82,-30,5,202,122,44,-37,-30,5,202,122,44,82,-31,5,202,122,44,-37,-31,5,202,122,44,84,74,2,202,122,44,-39,75,2,202,122,44,82,-32,5,202,122,44,-37,-32,5,202,122,44,82,-33,5,202,122,44,-37,-33,5,202,122,44,82,-34,5,202,122,44,-37,-34,5,202,122,44,82,-35,5,202,122,44,-37,-35,5,202,122,44,82,-36,5,202,122,44,-37,-36,5,202,122,44,82,-37,5,202,122,44,81,-37,5,202,122,44,80,-37,5,202,122,44,79,-37,5,202,122,44,78,-37,5,202,122,44,77,-37,5,202,122,44,76,-37,5,202,122,44,75,-37,5,202,122,44,74,-37,5,202,122,44,73,-37,5,202,122,44,72,-37,5,202,122,44,71,-37,5,202,122,44,70,-37,5,202,122,44,69,-37,5,202,122,44,68,-37,5,202,122,44,67,-37,5,202,122,44,66,-37,5,202,122,44,65,-37,5,202,122,44,64,-37,5,202,122,44,63,-37,5,202,122,44,62,-37,5,202,122,44,61,-37,5,202,122,44,60,-37,5,202,122,44,59,-37,5,202,122,44,58,-37,5,202,122,44,57,-37,5,202,122,44,56,-37,5,202,122,44,55,-37,5,202,122,44,54,-37,5,202,122,44,53,-37,5,202,122,44,52,-37,5,202,122,44,51,-37,5,202,122,44,50,-37,5,202,122,44,49,-37,5,202,122,44,48,-37,5,202,122,44,47,-37,5,202,122,44,46,-37,5,202,122,44,45,-37,5,202,122,44,44,-37,5,202,122,44,43,-37,5,202,122,44,42,-37,5,202,122,44,41,-37,5,202,122,44,40,-37,5,202,122,44,39,-37,5,202,122,44,38,-37,5,202,122,44,37,-37,5,202,122,44,36,-37,5,202,122,44,35,-37,5,202,122,44,34,-37,5,202,122,44,33,-37,5,202,122,44,32,-37,5,202,122,44,31,-37,5,202,122,44,30,-37,5,202,122,44,29,-37,5,202,122,44,28,-37,5,202,122,44,27,-37,5,202,122,44,26,-37,5,202,122,44,25,-37,5,202,122,44,24,-37,5,202,122,44,23,-37,5,202,122,44,22,-37,5,202,122,44,21,-37,5,202,122,44,20,-37,5,202,122,44,19,-37,5,202,122,44,18,-37,5,202,122,44,17,-37,5,202,122,44,16,-37,5,202,122,44,15,-37,5,202,122,44,14,-37,5,202,122,44,13,-37,5,202,122,44,12,-37,5,202,122,44,11,-37,5,202,122,44,10,-37,5,202,122,44,9,-37,5,202,122,44,8,-37,5,202,122,44,7,-37,5,202,122,44,6,-37,5,202,122,44,5,-37,5,202,122,44,4,-37,5,202,122,44,3,-37,5,202,122,44,2,-37,5,202,122,44,1,-37,5,202,122,44,0,-37,5,202,122,44,-1,-37,5,202,122,44,-2,-37,5,202,122,44,-3,-37,5,202,122,44,-4,-37,5,202,122,44,-5,-37,5,202,122,44,-6,-37,5,202,122,44,-7,-37,5,202,122,44,-8,-37,5,202,122,44,-9,-37,5,202,122,44,-10,-37,5,202,122,44,-11,-37,5,202,122,44,-12,-37,5,202,122,44,-13,-37,5,202,122,44,-14,-37,5,202,122,44,-15,-37,5,202,122,44,-16,-37,5,202,122,44,-17,-37,5,202,122,44,-18,-37,5,202,122,44,-19,-37,5,202,122,44,-20,-37,5,202,122,44,-21,-37,5,202,122,44,-22,-37,5,202,122,44,-23,-37,5,202,122,44,-24,-37,5,202,122,44,-25,-37,5,202,122,44,-26,-37,5,202,122,44,-27,-37,5,202,122,44,-28,-37,5,202,122,44,-29,-37,5,202,122,44,84,75,2,202,122,44,-39,76,2,202,122,44,-30,-37,5,202,122,44,-31,-37,5,202,122,44,-32,-37,5,202,122,44,-33,-37,5,202,122,44,-34,-37,5,202,122,44,-35,-37,5,202,122,44,-36,-37,5,202,122,44,-37,-37,5,202,122,44,83,83,4,202,122,44,82,83,4,202,122,44,81,83,4,202,122,44,80,83,4,202,122,44,79,83,4,202,122,44,78,83,4,202,122,44,77,83,4,202,122,44,76,83,4,202,122,44,75,83,4,202,122,44,74,83,4,202,122,44,73,83,4,202,122,44,72,83,4,202,122,44,71,83,4,202,122,44,70,83,4,202,122,44,69,83,4,202,122,44,68,83,4,202,122,44,67,83,4,202,122,44,66,83,4,202,122,44,65,83,4,202,122,44,64,83,4,202,122,44,63,83,4,202,122,44,62,83,4,202,122,44,61,83,4,202,122,44,60,83,4,202,122,44,59,83,4,202,122,44,58,83,4,202,122,44,57,83,4,202,122,44,56,83,4,202,122,44,55,83,4,202,122,44,54,83,4,202,122,44,53,83,4,202,122,44,52,83,4,202,122,44,51,83,4,202,122,44,50,83,4,202,122,44,49,83,4,202,122,44,48,83,4,202,122,44,47,83,4,202,122,44,46,83,4,202,122,44,45,83,4,202,122,44,44,83,4,202,122,44,43,83,4,202,122,44,42,83,4,202,122,44,41,83,4,202,122,44,40,83,4,202,122,44,39,83,4,202,122,44,38,83,4,202,122,44,37,83,4,202,122,44,36,83,4,202,122,44,35,83,4,202,122,44,34,83,4,202,122,44,33,83,4,202,122,44,32,83,4,202,122,44,31,83,4,202,122,44,30,83,4,202,122,44,29,83,4,202,122,44,28,83,4,202,122,44,27,83,4,202,122,44,26,83,4,202,122,44,25,83,4,202,122,44,24,83,4,202,122,44,23,83,4,202,122,44,22,83,4,202,122,44,21,83,4,202,122,44,20,83,4,202,122,44,19,83,4,202,122,44,18,83,4,202,122,44,17,83,4,202,122,44,16,83,4,202,122,44,15,83,4,202,122,44,14,83,4,202,122,44,13,83,4,202,122,44,12,83,4,202,122,44,11,83,4,202,122,44,10,83,4,202,122,44,9,83,4,202,122,44,8,83,4,202,122,44,7,83,4,202,122,44,6,83,4,202,122,44,5,83,4,202,122,44,4,83,4,202,122,44,3,83,4,202,122,44,2,83,4,202,122,44,1,83,4,202,122,44,0,83,4,202,122,44,-1,83,4,202,122,44,-2,83,4,202,122,44,-3,83,4,202,122,44,-4,83,4,202,122,44,-5,83,4,202,122,44,-6,83,4,202,122,44,-7,83,4,202,122,44,-8,83,4,202,122,44,-9,83,4,202,122,44,-10,83,4,202,122,44,-11,83,4,202,122,44,-12,83,4,202,122,44,-13,83,4,202,122,44,-14,83,4,202,122,44,-15,83,4,202,122,44,-16,83,4,202,122,44,-17,83,4,202,122,44,-18,83,4,202,122,44,-19,83,4,202,122,44,-20,83,4,202,122,44,-21,83,4,202,122,44,-22,83,4,202,122,44,-23,83,4,202,122,44,-24,83,4,202,122,44,-25,83,4,202,122,44,-26,83,4,202,122,44,-27,83,4,202,122,44,-28,83,4,202,122,44,-29,83,4,202,122,44,-30,83,4,202,122,44,84,76,2,202,122,44,-39,77,2,202,122,44,-31,83,4,202,122,44,-32,83,4,202,122,44,-33,83,4,202,122,44,-34,83,4,202,122,44,-35,83,4,202,122,44,-36,83,4,202,122,44,-37,83,4,202,122,44,-38,83,4,202,122,44,83,82,4,202,122,44,-38,82,4,202,122,44,83,81,4,202,122,44,-38,81,4,202,122,44,83,80,4,202,122,44,-38,80,4,202,122,44,83,79,4,202,122,44,-38,79,4,202,122,44,83,78,4,202,122,44,-38,78,4,202,122,44,83,77,4,202,122,44,-38,77,4,202,122,44,83,76,4,202,122,44,-38,76,4,202,122,44,83,75,4,202,122,44,-38,75,4,202,122,44,83,74,4,202,122,44,-38,74,4,202,122,44,83,73,4,202,122,44,-38,73,4,202,122,44,83,72,4,202,122,44,-38,72,4,202,122,44,83,71,4,202,122,44,-38,71,4,202,122,44,83,70,4,202,122,44,-38,70,4,202,122,44,83,69,4,202,122,44,-38,69,4,202,122,44,83,68,4,202,122,44,-38,68,4,202,122,44,83,67,4,202,122,44,-38,67,4,202,122,44,83,66,4,202,122,44,-38,66,4,202,122,44,83,65,4,202,122,44,-38,65,4,202,122,44,83,64,4,202,122,44,-38,64,4,202,122,44,83,63,4,202,122,44,-38,63,4,202,122,44,83,62,4,202,122,44,-38,62,4,202,122,44,83,61,4,202,122,44,-38,61,4,202,122,44,83,60,4,202,122,44,-38,60,4,202,122,44,83,59,4,202,122,44,-38,59,4,202,122,44,83,58,4,202,122,44,-38,58,4,202,122,44,83,57,4,202,122,44,-38,57,4,202,122,44,83,56,4,202,122,44,-38,56,4,202,122,44,83,55,4,202,122,44,-38,55,4,202,122,44,83,54,4,202,122,44,-38,54,4,202,122,44,83,53,4,202,122,44,-38,53,4,202,122,44,83,52,4,202,122,44,-38,52,4,202,122,44,83,51,4,202,122,44,-38,51,4,202,122,44,83,50,4,202,122,44,-38,50,4,202,122,44,83,49,4,202,122,44,-38,49,4,202,122,44,83,48,4,202,122,44,-38,48,4,202,122,44,83,47,4,202,122,44,-38,47,4,202,122,44,83,46,4,202,122,44,-38,46,4,202,122,44,83,45,4,202,122,44,-38,45,4,202,122,44,83,44,4,202,122,44,-38,44,4,202,122,44,83,43,4,202,122,44,-38,43,4,202,122,44,83,42,4,202,122,44,-38,42,4,202,122,44,83,41,4,202,122,44,-38,41,4,202,122,44,83,40,4,202,122,44,-38,40,4,202,122,44,83,39,4,202,122,44,-38,39,4,202,122,44,83,38,4,202,122,44,-38,38,4,202,122,44,83,37,4,202,122,44,-38,37,4,202,122,44,83,36,4,202,122,44,-38,36,4,202,122,44,83,35,4,202,122,44,-38,35,4,202,122,44,83,34,4,202,122,44,-38,34,4,202,122,44,83,33,4,202,122,44,-38,33,4,202,122,44,83,32,4,202,122,44,-38,32,4,202,122,44,83,31,4,202,122,44,-38,31,4,202,122,44,83,30,4,202,122,44,-38,30,4,202,122,44,83,29,4,202,122,44,-38,29,4,202,122,44,83,28,4,202,122,44,-38,28,4,202,122,44,83,27,4,202,122,44,-38,27,4,202,122,44,83,26,4,202,122,44,-38,26,4,202,122,44,84,77,2,202,122,44,-39,78,2,202,122,44,83,25,4,202,122,44,-38,25,4,202,122,44,83,24,4,202,122,44,-38,24,4,202,122,44,83,23,4,202,122,44,-38,23,4,202,122,44,83,22,4,202,122,44,-38,22,4,202,122,44,83,21,4,202,122,44,-38,21,4,202,122,44,83,20,4,202,122,44,-38,20,4,202,122,44,83,19,4,202,122,44,-38,19,4,202,122,44,83,18,4,202,122,44,-38,18,4,202,122,44,83,17,4,202,122,44,-38,17,4,202,122,44,83,16,4,202,122,44,-38,16,4,202,122,44,83,15,4,202,122,44,-38,15,4,202,122,44,83,14,4,202,122,44,-38,14,4,202,122,44,83,13,4,202,122,44,-38,13,4,202,122,44,83,12,4,202,122,44,-38,12,4,202,122,44,83,11,4,202,122,44,-38,11,4,202,122,44,83,10,4,202,122,44,-38,10,4,202,122,44,83,9,4,202,122,44,-38,9,4,202,122,44,83,8,4,202,122,44,-38,8,4,202,122,44,83,7,4,202,122,44,-38,7,4,202,122,44,83,6,4,202,122,44,-38,6,4,202,122,44,83,5,4,202,122,44,-38,5,4,202,122,44,83,4,4,202,122,44,-38,4,4,202,122,44,83,3,4,202,122,44,-38,3,4,202,122,44,83,2,4,202,122,44,-38,2,4,202,122,44,83,1,4,202,122,44,-38,1,4,202,122,44,83,0,4,202,122,44,-38,0,4,202,122,44,83,-1,4,202,122,44,-38,-1,4,202,122,44,83,-2,4,202,122,44,-38,-2,4,202,122,44,83,-3,4,202,122,44,-38,-3,4,202,122,44,83,-4,4,202,122,44,-38,-4,4,202,122,44,83,-5,4,202,122,44,-38,-5,4,202,122,44,83,-6,4,202,122,44,-38,-6,4,202,122,44,83,-7,4,202,122,44,-38,-7,4,202,122,44,83,-8,4,202,122,44,-38,-8,4,202,122,44,83,-9,4,202,122,44,-38,-9,4,202,122,44,83,-10,4,202,122,44,-38,-10,4,202,122,44,83,-11,4,202,122,44,-38,-11,4,202,122,44,83,-12,4,202,122,44,-38,-12,4,202,122,44,83,-13,4,202,122,44,-38,-13,4,202,122,44,83,-14,4,202,122,44,-38,-14,4,202,122,44,83,-15,4,202,122,44,-38,-15,4,202,122,44,83,-16,4,202,122,44,-38,-16,4,202,122,44,83,-17,4,202,122,44,-38,-17,4,202,122,44,83,-18,4,202,122,44,-38,-18,4,202,122,44,83,-19,4,202,122,44,-38,-19,4,202,122,44,83,-20,4,202,122,44,-38,-20,4,202,122,44,83,-21,4,202,122,44,-38,-21,4,202,122,44,83,-22,4,202,122,44,-38,-22,4,202,122,44,83,-23,4,202,122,44,-38,-23,4,202,122,44,83,-24,4,202,122,44,-38,-24,4,202,122,44,83,-25,4,202,122,44,-38,-25,4,202,122,44,83,-26,4,202,122,44,-38,-26,4,202,122,44,83,-27,4,202,122,44,-38,-27,4,202,122,44,83,-28,4,202,122,44,-38,-28,4,202,122,44,83,-29,4,202,122,44,-38,-29,4,202,122,44,83,-30,4,202,122,44,-38,-30,4,202,122,44,83,-31,4,202,122,44,-38,-31,4,202,122,44,83,-32,4,202,122,44,-38,-32,4,202,122,44,83,-33,4,202,122,44,-38,-33,4,202,122,44,83,-34,4,202,122,44,-38,-34,4,202,122,44,83,-35,4,202,122,44,-38,-35,4,202,122,44,84,78,2,202,122,44,-39,79,2,202,122,44,83,-36,4,202,122,44,-38,-36,4,202,122,44,83,-37,4,202,122,44,-38,-37,4,202,122,44,83,-38,4,202,122,44,82,-38,4,202,122,44,81,-38,4,202,122,44,80,-38,4,202,122,44,79,-38,4,202,122,44,78,-38,4,202,122,44,77,-38,4,202,122,44,76,-38,4,202,122,44,75,-38,4,202,122,44,74,-38,4,202,122,44,73,-38,4,202,122,44,72,-38,4,202,122,44,71,-38,4,202,122,44,70,-38,4,202,122,44,69,-38,4,202,122,44,68,-38,4,202,122,44,67,-38,4,202,122,44,66,-38,4,202,122,44,65,-38,4,202,122,44,64,-38,4,202,122,44,63,-38,4,202,122,44,62,-38,4,202,122,44,61,-38,4,202,122,44,60,-38,4,202,122,44,59,-38,4,202,122,44,58,-38,4,202,122,44,57,-38,4,202,122,44,56,-38,4,202,122,44,55,-38,4,202,122,44,54,-38,4,202,122,44,53,-38,4,202,122,44,52,-38,4,202,122,44,51,-38,4,202,122,44,50,-38,4,202,122,44,49,-38,4,202,122,44,48,-38,4,202,122,44,47,-38,4,202,122,44,46,-38,4,202,122,44,45,-38,4,202,122,44,44,-38,4,202,122,44,43,-38,4,202,122,44,42,-38,4,202,122,44,41,-38,4,202,122,44,40,-38,4,202,122,44,39,-38,4,202,122,44,38,-38,4,202,122,44,37,-38,4,202,122,44,36,-38,4,202,122,44,35,-38,4,202,122,44,34,-38,4,202,122,44,33,-38,4,202,122,44,32,-38,4,202,122,44,31,-38,4,202,122,44,30,-38,4,202,122,44,29,-38,4,202,122,44,28,-38,4,202,122,44,27,-38,4,202,122,44,26,-38,4,202,122,44,25,-38,4,202,122,44,24,-38,4,202,122,44,23,-38,4,202,122,44,22,-38,4,202,122,44,21,-38,4,202,122,44,20,-38,4,202,122,44,19,-38,4,202,122,44,18,-38,4,202,122,44,17,-38,4,202,122,44,16,-38,4,202,122,44,15,-38,4,202,122,44,14,-38,4,202,122,44,13,-38,4,202,122,44,12,-38,4,202,122,44,11,-38,4,202,122,44,10,-38,4,202,122,44,9,-38,4,202,122,44,8,-38,4,202,122,44,7,-38,4,202,122,44,6,-38,4,202,122,44,5,-38,4,202,122,44,4,-38,4,202,122,44,3,-38,4,202,122,44,2,-38,4,202,122,44,1,-38,4,202,122,44,0,-38,4,202,122,44,-1,-38,4,202,122,44,-2,-38,4,202,122,44,-3,-38,4,202,122,44,-4,-38,4,202,122,44,-5,-38,4,202,122,44,-6,-38,4,202,122,44,-7,-38,4,202,122,44,-8,-38,4,202,122,44,-9,-38,4,202,122,44,-10,-38,4,202,122,44,-11,-38,4,202,122,44,-12,-38,4,202,122,44,-13,-38,4,202,122,44,-14,-38,4,202,122,44,-15,-38,4,202,122,44,-16,-38,4,202,122,44,-17,-38,4,202,122,44,-18,-38,4,202,122,44,-19,-38,4,202,122,44,-20,-38,4,202,122,44,-21,-38,4,202,122,44,-22,-38,4,202,122,44,-23,-38,4,202,122,44,-24,-38,4,202,122,44,-25,-38,4,202,122,44,-26,-38,4,202,122,44,-27,-38,4,202,122,44,-28,-38,4,202,122,44,-29,-38,4,202,122,44,-30,-38,4,202,122,44,-31,-38,4,202,122,44,-32,-38,4,202,122,44,-33,-38,4,202,122,44,-34,-38,4,202,122,44,84,79,2,202,122,44,-39,80,2,202,122,44,-35,-38,4,202,122,44,-36,-38,4,202,122,44,-37,-38,4,202,122,44,-38,-38,4,202,122,44,83,83,3,202,122,44,82,83,3,202,122,44,81,83,3,202,122,44,80,83,3,202,122,44,79,83,3,202,122,44,78,83,3,202,122,44,77,83,3,202,122,44,76,83,3,202,122,44,75,83,3,202,122,44,74,83,3,202,122,44,73,83,3,202,122,44,72,83,3,202,122,44,71,83,3,202,122,44,70,83,3,202,122,44,69,83,3,202,122,44,68,83,3,202,122,44,67,83,3,202,122,44,66,83,3,202,122,44,65,83,3,202,122,44,64,83,3,202,122,44,63,83,3,202,122,44,62,83,3,202,122,44,61,83,3,202,122,44,60,83,3,202,122,44,59,83,3,202,122,44,58,83,3,202,122,44,57,83,3,202,122,44,56,83,3,202,122,44,55,83,3,202,122,44,54,83,3,202,122,44,53,83,3,202,122,44,52,83,3,202,122,44,51,83,3,202,122,44,50,83,3,202,122,44,49,83,3,202,122,44,48,83,3,202,122,44,47,83,3,202,122,44,46,83,3,202,122,44,45,83,3,202,122,44,44,83,3,202,122,44,43,83,3,202,122,44,42,83,3,202,122,44,41,83,3,202,122,44,40,83,3,202,122,44,39,83,3,202,122,44,38,83,3,202,122,44,37,83,3,202,122,44,36,83,3,202,122,44,35,83,3,202,122,44,34,83,3,202,122,44,33,83,3,202,122,44,32,83,3,202,122,44,31,83,3,202,122,44,30,83,3,202,122,44,29,83,3,202,122,44,28,83,3,202,122,44,27,83,3,202,122,44,26,83,3,202,122,44,25,83,3,202,122,44,24,83,3,202,122,44,23,83,3,202,122,44,22,83,3,202,122,44,21,83,3,202,122,44,20,83,3,202,122,44,19,83,3,202,122,44,18,83,3,202,122,44,17,83,3,202,122,44,16,83,3,202,122,44,15,83,3,202,122,44,14,83,3,202,122,44,13,83,3,202,122,44,12,83,3,202,122,44,11,83,3,202,122,44,10,83,3,202,122,44,9,83,3,202,122,44,8,83,3,202,122,44,7,83,3,202,122,44,6,83,3,202,122,44,5,83,3,202,122,44,4,83,3,202,122,44,3,83,3,202,122,44,2,83,3,202,122,44,1,83,3,202,122,44,0,83,3,202,122,44,-1,83,3,202,122,44,-2,83,3,202,122,44,-3,83,3,202,122,44,-4,83,3,202,122,44,-5,83,3,202,122,44,-6,83,3,202,122,44,-7,83,3,202,122,44,-8,83,3,202,122,44,-9,83,3,202,122,44,-10,83,3,202,122,44,-11,83,3,202,122,44,-12,83,3,202,122,44,-13,83,3,202,122,44,-14,83,3,202,122,44,-15,83,3,202,122,44,-16,83,3,202,122,44,-17,83,3,202,122,44,-18,83,3,202,122,44,-19,83,3,202,122,44,-20,83,3,202,122,44,-21,83,3,202,122,44,-22,83,3,202,122,44,-23,83,3,202,122,44,-24,83,3,202,122,44,-25,83,3,202,122,44,-26,83,3,202,122,44,-27,83,3,202,122,44,-28,83,3,202,122,44,-29,83,3,202,122,44,-30,83,3,202,122,44,-31,83,3,202,122,44,-32,83,3,202,122,44,-33,83,3,202,122,44,-34,83,3,202,122,44,84,80,2,202,122,44,-39,81,2,202,122,44,-35,83,3,202,122,44,-36,83,3,202,122,44,-37,83,3,202,122,44,-38,83,3,202,122,44,83,82,3,202,122,44,-38,82,3,202,122,44,83,81,3,202,122,44,-38,81,3,202,122,44,83,80,3,202,122,44,-38,80,3,202,122,44,83,79,3,202,122,44,-38,79,3,202,122,44,83,78,3,202,122,44,-38,78,3,202,122,44,83,77,3,202,122,44,-38,77,3,202,122,44,83,76,3,202,122,44,-38,76,3,202,122,44,83,75,3,202,122,44,-38,75,3,202,122,44,83,74,3,202,122,44,-38,74,3,202,122,44,83,73,3,202,122,44,-38,73,3,202,122,44,83,72,3,202,122,44,-38,72,3,202,122,44,83,71,3,202,122,44,-38,71,3,202,122,44,83,70,3,202,122,44,-38,70,3,202,122,44,83,69,3,202,122,44,-38,69,3,202,122,44,83,68,3,202,122,44,-38,68,3,202,122,44,83,67,3,202,122,44,-38,67,3,202,122,44,83,66,3,202,122,44,-38,66,3,202,122,44,83,65,3,202,122,44,-38,65,3,202,122,44,83,64,3,202,122,44,-38,64,3,202,122,44,83,63,3,202,122,44,-38,63,3,202,122,44,83,62,3,202,122,44,-38,62,3,202,122,44,83,61,3,202,122,44,-38,61,3,202,122,44,83,60,3,202,122,44,-38,60,3,202,122,44,83,59,3,202,122,44,-38,59,3,202,122,44,83,58,3,202,122,44,-38,58,3,202,122,44,83,57,3,202,122,44,-38,57,3,202,122,44,83,56,3,202,122,44,-38,56,3,202,122,44,83,55,3,202,122,44,-38,55,3,202,122,44,83,54,3,202,122,44,-38,54,3,202,122,44,83,53,3,202,122,44,-38,53,3,202,122,44,83,52,3,202,122,44,-38,52,3,202,122,44,83,51,3,202,122,44,-38,51,3,202,122,44,83,50,3,202,122,44,-38,50,3,202,122,44,83,49,3,202,122,44,-38,49,3,202,122,44,83,48,3,202,122,44,-38,48,3,202,122,44,83,47,3,202,122,44,-38,47,3,202,122,44,83,46,3,202,122,44,-38,46,3,202,122,44,83,45,3,202,122,44,-38,45,3,202,122,44,83,44,3,202,122,44,-38,44,3,202,122,44,83,43,3,202,122,44,-38,43,3,202,122,44,83,42,3,202,122,44,-38,42,3,202,122,44,83,41,3,202,122,44,-38,41,3,202,122,44,83,40,3,202,122,44,-38,40,3,202,122,44,83,39,3,202,122,44,-38,39,3,202,122,44,83,38,3,202,122,44,-38,38,3,202,122,44,83,37,3,202,122,44,-38,37,3,202,122,44,83,36,3,202,122,44,-38,36,3,202,122,44,83,35,3,202,122,44,-38,35,3,202,122,44,83,34,3,202,122,44,-38,34,3,202,122,44,83,33,3,202,122,44,-38,33,3,202,122,44,83,32,3,202,122,44,-38,32,3,202,122,44,83,31,3,202,122,44,-38,31,3,202,122,44,83,30,3,202,122,44,-38,30,3,202,122,44,83,29,3,202,122,44,-38,29,3,202,122,44,83,28,3,202,122,44,-38,28,3,202,122,44,83,27,3,202,122,44,-38,27,3,202,122,44,83,26,3,202,122,44,-38,26,3,202,122,44,83,25,3,202,122,44,-38,25,3,202,122,44,83,24,3,202,122,44,-38,24,3,202,122,44,84,81,2,202,122,44,-39,82,2,202,122,44,83,23,3,202,122,44,-38,23,3,202,122,44,83,22,3,202,122,44,-38,22,3,202,122,44,83,21,3,202,122,44,-38,21,3,202,122,44,83,20,3,202,122,44,-38,20,3,202,122,44,83,19,3,202,122,44,-38,19,3,202,122,44,83,18,3,202,122,44,-38,18,3,202,122,44,83,17,3,202,122,44,-38,17,3,202,122,44,83,16,3,202,122,44,-38,16,3,202,122,44,83,15,3,202,122,44,-38,15,3,202,122,44,83,14,3,202,122,44,-38,14,3,202,122,44,83,13,3,202,122,44,-38,13,3,202,122,44,83,12,3,202,122,44,-38,12,3,202,122,44,83,11,3,202,122,44,-38,11,3,202,122,44,83,10,3,202,122,44,-38,10,3,202,122,44,83,9,3,202,122,44,-38,9,3,202,122,44,83,8,3,202,122,44,-38,8,3,202,122,44,83,7,3,202,122,44,-38,7,3,202,122,44,83,6,3,202,122,44,-38,6,3,202,122,44,83,5,3,202,122,44,-38,5,3,202,122,44,83,4,3,202,122,44,-38,4,3,202,122,44,83,3,3,202,122,44,-38,3,3,202,122,44,83,2,3,202,122,44,-38,2,3,202,122,44,83,1,3,202,122,44,-38,1,3,202,122,44,83,0,3,202,122,44,-38,0,3,202,122,44,83,-1,3,202,122,44,-38,-1,3,202,122,44,83,-2,3,202,122,44,-38,-2,3,202,122,44,83,-3,3,202,122,44,-38,-3,3,202,122,44,83,-4,3,202,122,44,-38,-4,3,202,122,44,83,-5,3,202,122,44,-38,-5,3,202,122,44,83,-6,3,202,122,44,-38,-6,3,202,122,44,83,-7,3,202,122,44,-38,-7,3,202,122,44,83,-8,3,202,122,44,-38,-8,3,202,122,44,83,-9,3,202,122,44,-38,-9,3,202,122,44,83,-10,3,202,122,44,-38,-10,3,202,122,44,83,-11,3,202,122,44,-38,-11,3,202,122,44,83,-12,3,202,122,44,-38,-12,3,202,122,44,83,-13,3,202,122,44,-38,-13,3,202,122,44,83,-14,3,202,122,44,-38,-14,3,202,122,44,83,-15,3,202,122,44,-38,-15,3,202,122,44,83,-16,3,202,122,44,-38,-16,3,202,122,44,83,-17,3,202,122,44,-38,-17,3,202,122,44,83,-18,3,202,122,44,-38,-18,3,202,122,44,83,-19,3,202,122,44,-38,-19,3,202,122,44,83,-20,3,202,122,44,-38,-20,3,202,122,44,83,-21,3,202,122,44,-38,-21,3,202,122,44,83,-22,3,202,122,44,-38,-22,3,202,122,44,83,-23,3,202,122,44,-38,-23,3,202,122,44,83,-24,3,202,122,44,-38,-24,3,202,122,44,83,-25,3,202,122,44,-38,-25,3,202,122,44,83,-26,3,202,122,44,-38,-26,3,202,122,44,83,-27,3,202,122,44,-38,-27,3,202,122,44,83,-28,3,202,122,44,-38,-28,3,202,122,44,83,-29,3,202,122,44,-38,-29,3,202,122,44,83,-30,3,202,122,44,-38,-30,3,202,122,44,83,-31,3,202,122,44,-38,-31,3,202,122,44,83,-32,3,202,122,44,-38,-32,3,202,122,44,83,-33,3,202,122,44,-38,-33,3,202,122,44,83,-34,3,202,122,44,-38,-34,3,202,122,44,83,-35,3,202,122,44,-38,-35,3,202,122,44,83,-36,3,202,122,44,-38,-36,3,202,122,44,83,-37,3,202,122,44,-38,-37,3,202,122,44,84,82,2,202,122,44,-39,83,2,202,122,44,83,-38,3,202,122,44,82,-38,3,202,122,44,81,-38,3,202,122,44,80,-38,3,202,122,44,79,-38,3,202,122,44,78,-38,3,202,122,44,77,-38,3,202,122,44,76,-38,3,202,122,44,75,-38,3,202,122,44,74,-38,3,202,122,44,73,-38,3,202,122,44,72,-38,3,202,122,44,71,-38,3,202,122,44,70,-38,3,202,122,44,69,-38,3,202,122,44,68,-38,3,202,122,44,67,-38,3,202,122,44,66,-38,3,202,122,44,65,-38,3,202,122,44,64,-38,3,202,122,44,63,-38,3,202,122,44,62,-38,3,202,122,44,61,-38,3,202,122,44,60,-38,3,202,122,44,59,-38,3,202,122,44,58,-38,3,202,122,44,57,-38,3,202,122,44,56,-38,3,202,122,44,55,-38,3,202,122,44,54,-38,3,202,122,44,53,-38,3,202,122,44,52,-38,3,202,122,44,51,-38,3,202,122,44,50,-38,3,202,122,44,49,-38,3,202,122,44,48,-38,3,202,122,44,47,-38,3,202,122,44,46,-38,3,202,122,44,45,-38,3,202,122,44,44,-38,3,202,122,44,43,-38,3,202,122,44,42,-38,3,202,122,44,41,-38,3,202,122,44,40,-38,3,202,122,44,39,-38,3,202,122,44,38,-38,3,202,122,44,37,-38,3,202,122,44,36,-38,3,202,122,44,35,-38,3,202,122,44,34,-38,3,202,122,44,33,-38,3,202,122,44,32,-38,3,202,122,44,31,-38,3,202,122,44,30,-38,3,202,122,44,29,-38,3,202,122,44,28,-38,3,202,122,44,27,-38,3,202,122,44,26,-38,3,202,122,44,25,-38,3,202,122,44,24,-38,3,202,122,44,23,-38,3,202,122,44,22,-38,3,202,122,44,21,-38,3,202,122,44,20,-38,3,202,122,44,19,-38,3,202,122,44,18,-38,3,202,122,44,17,-38,3,202,122,44,16,-38,3,202,122,44,15,-38,3,202,122,44,14,-38,3,202,122,44,13,-38,3,202,122,44,12,-38,3,202,122,44,11,-38,3,202,122,44,10,-38,3,202,122,44,9,-38,3,202,122,44,8,-38,3,202,122,44,7,-38,3,202,122,44,6,-38,3,202,122,44,5,-38,3,202,122,44,4,-38,3,202,122,44,3,-38,3,202,122,44,2,-38,3,202,122,44,1,-38,3,202,122,44,0,-38,3,202,122,44,-1,-38,3,202,122,44,-2,-38,3,202,122,44,-3,-38,3,202,122,44,-4,-38,3,202,122,44,-5,-38,3,202,122,44,-6,-38,3,202,122,44,-7,-38,3,202,122,44,-8,-38,3,202,122,44,-9,-38,3,202,122,44,-10,-38,3,202,122,44,-11,-38,3,202,122,44,-12,-38,3,202,122,44,-13,-38,3,202,122,44,-14,-38,3,202,122,44,-15,-38,3,202,122,44,-16,-38,3,202,122,44,-17,-38,3,202,122,44,-18,-38,3,202,122,44,-19,-38,3,202,122,44,-20,-38,3,202,122,44,-21,-38,3,202,122,44,-22,-38,3,202,122,44,-23,-38,3,202,122,44,-24,-38,3,202,122,44,-25,-38,3,202,122,44,-26,-38,3,202,122,44,-27,-38,3,202,122,44,-28,-38,3,202,122,44,-29,-38,3,202,122,44,-30,-38,3,202,122,44,-31,-38,3,202,122,44,-32,-38,3,202,122,44,-33,-38,3,202,122,44,-34,-38,3,202,122,44,-35,-38,3,202,122,44,-36,-38,3,202,122,44,-37,-38,3,202,122,44,-38,-38,3,202,122,44,84,83,2,202,122,44,-39,84,2,202,122,44,-38,84,2,202,122,44,-37,84,2,202,122,44,-36,84,2,202,122,44,-35,84,2,202,122,44,-34,84,2,202,122,44,-33,84,2,202,122,44,-32,84,2,202,122,44,-31,84,2,202,122,44,-30,84,2,202,122,44,-29,84,2,202,122,44,-28,84,2,202,122,44,-27,84,2,202,122,44,-26,84,2,202,122,44,-25,84,2,202,122,44,-24,84,2,202,122,44,-23,84,2,202,122,44,-22,84,2,202,122,44,-21,84,2,202,122,44,-20,84,2,202,122,44,-19,84,2,202,122,44,-18,84,2,202,122,44,-17,84,2,202,122,44,-16,84,2,202,122,44,-15,84,2,202,122,44,-14,84,2,202,122,44,-13,84,2,202,122,44,-12,84,2,202,122,44,-11,84,2,202,122,44,-10,84,2,202,122,44,-9,84,2,202,122,44,-8,84,2,202,122,44,-7,84,2,202,122,44,-6,84,2,202,122,44,-5,84,2,202,122,44,-4,84,2,202,122,44,-3,84,2,202,122,44,-2,84,2,202,122,44,-1,84,2,202,122,44,0,84,2,202,122,44,1,84,2,202,122,44,2,84,2,202,122,44,3,84,2,202,122,44,4,84,2,202,122,44,5,84,2,202,122,44,6,84,2,202,122,44,7,84,2,202,122,44,8,84,2,202,122,44,9,84,2,202,122,44,10,84,2,202,122,44,11,84,2,202,122,44,12,84,2,202,122,44,13,84,2,202,122,44,14,84,2,202,122,44,15,84,2,202,122,44,16,84,2,202,122,44,17,84,2,202,122,44,18,84,2,202,122,44,19,84,2,202,122,44,20,84,2,202,122,44,21,84,2,202,122,44,22,84,2,202,122,44,23,84,2,202,122,44,24,84,2,202,122,44,25,84,2,202,122,44,26,84,2,202,122,44,27,84,2,202,122,44,28,84,2,202,122,44,29,84,2,202,122,44,30,84,2,202,122,44,31,84,2,202,122,44,32,84,2,202,122,44,33,84,2,202,122,44,34,84,2,202,122,44,35,84,2,202,122,44,36,84,2,202,122,44,37,84,2,202,122,44,38,84,2,202,122,44,39,84,2,202,122,44,40,84,2,202,122,44,41,84,2,202,122,44,42,84,2,202,122,44,43,84,2,202,122,44,44,84,2,202,122,44,45,84,2,202,122,44,46,84,2,202,122,44,47,84,2,202,122,44,48,84,2,202,122,44,49,84,2,202,122,44,50,84,2,202,122,44,51,84,2,202,122,44,52,84,2,202,122,44,53,84,2,202,122,44,54,84,2,202,122,44,55,84,2,202,122,44,56,84,2,202,122,44,57,84,2,202,122,44,58,84,2,202,122,44,59,84,2,202,122,44,60,84,2,202,122,44,61,84,2,202,122,44,62,84,2,202,122,44,63,84,2,202,122,44,64,84,2,202,122,44,65,84,2,202,122,44,66,84,2,202,122,44,67,84,2,202,122,44,68,84,2,202,122,44,69,84,2,202,122,44,70,84,2,202,122,44,71,84,2,202,122,44,72,84,2,202,122,44,73,84,2,202,122,44,74,84,2,202,122,44,75,84,2,202,122,44,76,84,2,202,122,44,77,84,2,202,122,44,78,84,2,202,122,44,79,84,2,202,122,44,80,84,2,202,122,44,81,84,2,202,122,44,82,84,2,202,122,44,83,84,2,202,122,44,84,84,2,202,122,44
}; |
package character
{
import flash.geom.Point;
import gameplay.Game;
import player.PlayerEntity;
/**
* ...
* @author Ittipon
*/
public class SkilledArcherCharacterEntity extends BaseSkilledCharacterEntity
{
public static const ID_EAGLE_EYE:int = 1;
public static const ID_SHARP_SHOOTER:int = 2;
public static const ID_SHOWER_ARROW:int = 3;
public function SkilledArcherCharacterEntity(game:Game, id:int, charInfo:BaseCharacterInformation, playerEnt:PlayerEntity, enemyPlayerEnt:PlayerEntity, waypoint:Array, dir_waypoint:int, spawnpoint:Point, isSimulation:Boolean)
{
super(game, id, charInfo, playerEnt, enemyPlayerEnt, waypoint, dir_waypoint, spawnpoint, isSimulation);
if (currentSkillId == ID_EAGLE_EYE) {
var buff:EffectBuff = new EffectBuff(EffectBuff.ID_EAGLE_EYE);
addBuff(buff, game.EffectLayer);
}
}
public override function Attacking(to:Entity):void {
super.Attacking(to);
}
}
} |
package kabam.rotmg.application {
public class DynamicSettings {
private static var _xml:XML;
public static function get xml():XML {
return _xml;
}
public static function set xml(_arg_1:XML):void {
_xml = _arg_1;
}
public static function settingExists(_arg_1:String):Boolean {
return _xml != null && _arg_1 in _xml;
}
public static function getSettingValue(_arg_1:String):Number {
return _xml.child(_arg_1).toString();
}
public function DynamicSettings() {
super();
}
}
}
|
/*
* Copyright 2010 Swiz Framework Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.swizframework.utils.async
{
import mx.rpc.IResponder;
import org.swizframework.events.ChainEvent;
import org.swizframework.utils.chain.IChain;
public class AsynchronousChainOperation extends AbstractAsynchronousOperation implements IAsynchronousOperation
{
// ========================================
// constructor
// ========================================
/**
* Constructor.
*/
public function AsynchronousChainOperation( chain:IChain )
{
super();
addEventListeners( chain );
}
// ========================================
// protected methods
// ========================================
/**
* Add ChainEvent listeners to the specified chain.
*/
protected function addEventListeners( chain:IChain ):void
{
chain.addEventListener( ChainEvent.CHAIN_COMPLETE, chainCompleteHandler );
chain.addEventListener( ChainEvent.CHAIN_FAIL, chainFailHandler );
}
/**
* Remove ChainEvent listeners from the specified chain.
*/
protected function removeEventListeners( chain:IChain ):void
{
chain.removeEventListener( ChainEvent.CHAIN_COMPLETE, chainCompleteHandler );
chain.removeEventListener( ChainEvent.CHAIN_FAIL, chainFailHandler );
}
/**
* Handle ChainEvent.CHAIN_COMPLETE.
*/
protected function chainCompleteHandler( event:ChainEvent ):void
{
var chain:IChain = event.target as IChain;
removeEventListeners( chain );
complete( chain );
}
/**
* Handle ChainEvent.CHAIN_FAIL.
*/
protected function chainFailHandler( event:ChainEvent ):void
{
var chain:IChain = event.target as IChain;
removeEventListeners( chain );
fail( chain );
}
}
} |
/**
* Created with IntelliJ IDEA.
* User: Luca
* Date: 05/10/13
* Time: 20.44
*/
package it.juca.aigor.application.config.config {
import flash.net.FileFilter;
import it.juca.aigor.project.model.ProjectFactory;
import it.juca.application.configfile.model.ConfigProxy;
import it.juca.application.configfile.model.api.IConfigFileFactory;
import it.juca.application.configfile.model.vo.IConfigProxy;
import robotlegs.bender.framework.api.IConfig;
import robotlegs.bender.framework.api.IInjector;
public class ConfigFileConfig implements IConfig {
[Inject]
public var injector:IInjector;
/**
* configurazione sisitema per l'apertura del file di configurazion/di progetto.
*/
public function configure():void {
injector.map(IConfigProxy).toSingleton(ConfigProxy);
injector.map(FileFilter, "fileProject").toValue(new FileFilter("Project file", "*.aigor"));
injector.map(String, "defaultExtension").toValue("aigor");
injector.map(IConfigFileFactory).toType(ProjectFactory);
}
}
}
|
/* -*- c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4 -*- */
/* vi: set ts=4 sw=4 expandtab: (add to ~/.vimrc: set modeline modelines=5) */
/* 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/. */
// var SECTION = "4.6.3";
// var VERSION = "AS3";
// var TITLE = "Component accesses";
var flt4:float4 = new float4(0f, 1f, 2f, 3f);
var component:Array = ['x','y','z','w'];
var input:String = "";
var output:String = "";
for (var levelA in component)
{
for (var levelB in component)
{
for (var levelC in component)
{
for (var levelD in component)
{
input = component[levelA] + "" + component[levelB] + "" + component[levelC] + "" + component[levelD];
AddStrictTestCase("'"+input+"'in float4()", true, input in flt4);
}
}
}
}
|
/*
* PROJECT: FLARToolKit
* --------------------------------------------------------------------------------
* This work is based on the FLARToolKit developed by
* R.Iizuka (nyatla)
* http://nyatla.jp/nyatoolkit/
*
* The FLARToolKit is ActionScript 3.0 version ARToolkit class library.
* Copyright (C)2008 Saqoosha
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* For further information please contact.
* http://www.libspark.org/wiki/saqoosha/FLARToolKit
* <saq(at)saqoosha.net>
*
*/
package org.libspark.flartoolkit.core
{
public class FLARVec
{
private var clm:int;
public function FLARVec(i_clm:int)
{
this.v = new Vector.<Number>(i_clm);
clm = i_clm;
}
private var v:Vector.<Number>;
public function getClm():int
{
return clm;
}
public function getArray():Vector.<Number>
{
return v;
}
// *****************************
// There are not used by FLARToolKit.
// *****************************
// public function realloc(i_clm:int):void
// public function arVecDisp():int
// public function vecInnerproduct(y:FLARVec,i_start:int):Number
// public function vecHousehold(i_start:int):Number
// public function setNewArray(double[] i_array:Vector.<Number>,i_clm:int):void
}
} |
/*
* Copyright 2009 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.spicefactory.parsley.core.context.impl {
import org.spicefactory.parsley.core.context.Context;
import org.spicefactory.parsley.core.context.DynamicObject;
import org.spicefactory.parsley.core.events.ContextEvent;
import org.spicefactory.parsley.core.lifecycle.ManagedObjectHandler;
import org.spicefactory.parsley.core.registry.DynamicObjectDefinition;
import flash.events.Event;
/**
* Default implementation of the DynamicObject interface.
*
* @author Jens Halm
*/
public class DefaultDynamicObject implements DynamicObject {
private var _context:DefaultContext;
private var _definition:DynamicObjectDefinition;
private var _instance:Object;
private var handler:ManagedObjectHandler;
private var processed:Boolean;
/**
* Creates a new instance.
*
* @param context the dynamic Context this instance belongs to
* @param definition the definition that was applied to the instance
* @param instance the actual instance that was dynamically added to the Context
*/
function DefaultDynamicObject (context:DefaultContext, definition:DynamicObjectDefinition, instance:Object = null) {
_context = context;
_definition = definition;
_instance = instance;
if (instance != null) {
_definition = definition.copyForInstance(instance);
}
if (!_definition.frozen) {
_definition.freeze();
}
if (!context.initialized) {
context.addEventListener(ContextEvent.INITIALIZED, contextInitialized);
}
else {
processInstance();
}
}
private function contextInitialized (event:Event) : void {
_context.removeEventListener(ContextEvent.INITIALIZED, contextInitialized);
processInstance();
}
private function processInstance () : void {
if (processed) return;
processed = true;
handler = _context.lifecycleManager.createHandler(definition, context);
handler.createObject();
_instance = handler.target.instance;
handler.configureObject();
}
/**
* @inheritDoc
*/
public function get definition () : DynamicObjectDefinition {
return _definition;
}
/**
* @inheritDoc
*/
public function get instance () : Object {
if (handler == null && _context.configured) {
processInstance();
}
return _instance;
}
/**
* The dynamic Context this instance belongs to.
*/
public function get context () : Context {
return _context;
}
/**
* @inheritDoc
*/
public function remove () : void {
if (handler) {
handler.destroyObject();
} else {
_context.removeEventListener(ContextEvent.INITIALIZED, contextInitialized);
}
}
}
}
|
/*
* Copyright 2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.spicefactory.parsley.core.builder {
/**
* Builder for asynchronous object initialization.
*
* @author Jens Halm
*/
public interface AsyncInitBuilder {
/**
* The event type that signals that object initialization has successfully completed.
* The default is <code>Event.COMPLETE</code>.
*
* @param type the event type that signals that object initialization has successfully completed
* @return this builder for method chaining
*/
function completeEvent (type:String) : AsyncInitBuilder;
/**
* The event type that signals that object initialization has failed.
* The default is <code>Event.COMPLETE</code>.
*
* @param type the event type that signals that object initialization has failed
* @return this builder for method chaining
*/
function errorEvent (type:String) : AsyncInitBuilder;
}
}
|
/* 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/. */
import com.adobe.test.Assert;
import com.adobe.test.Utils;
var CODE = 1065; // Variable _ is not defined.
//-----------------------------------------------------------
//-----------------------------------------------------------
try {
var z = "no error";
new Date(x);
} catch (err) {
z = err.toString();
} finally {
Assert.expectEq("Runtime Error", Utils.REFERENCEERROR + CODE, Utils.referenceError(z));
}
//-----------------------------------------------------------
//-----------------------------------------------------------
|
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package spark.components
{
import flash.display.DisplayObject;
import flash.display.Graphics;
import flash.events.Event;
import flash.events.FocusEvent;
import flash.events.KeyboardEvent;
import flash.events.MouseEvent;
import flash.geom.Point;
import flash.geom.Rectangle;
import flash.ui.Keyboard;
import mx.collections.ArrayCollection;
import mx.collections.ICollectionView;
import mx.collections.IList;
import mx.collections.ISort;
import mx.collections.ISortField;
import mx.core.DragSource;
import mx.core.EventPriority;
import mx.core.IFactory;
import mx.core.IFlexDisplayObject;
import mx.core.IIMESupport;
import mx.core.IUID;
import mx.core.IVisualElement;
import mx.core.InteractionMode;
import mx.core.LayoutDirection;
import mx.core.ScrollPolicy;
import mx.core.UIComponent;
import mx.core.mx_internal;
import mx.events.DragEvent;
import mx.events.FlexEvent;
import mx.events.SandboxMouseEvent;
import mx.events.TouchInteractionEvent;
import mx.managers.CursorManager;
import mx.managers.CursorManagerPriority;
import mx.managers.DragManager;
import mx.managers.IFocusManagerComponent;
import mx.styles.AdvancedStyleClient;
import mx.utils.ObjectUtil;
import mx.utils.UIDUtil;
import spark.collections.Sort;
import spark.components.gridClasses.CellPosition;
import spark.components.gridClasses.CellRegion;
import spark.components.gridClasses.DataGridEditor;
import spark.components.gridClasses.GridDoubleClickMode;
import spark.components.gridClasses.GridColumn;
import spark.components.gridClasses.GridHeaderLayout;
import spark.components.gridClasses.GridItemEditorActivationMouseEvent;
import spark.components.gridClasses.GridLayout;
import spark.components.gridClasses.GridSelection;
import spark.components.gridClasses.GridSelectionMode;
import spark.components.gridClasses.GridSortField;
import spark.components.gridClasses.GridView;
import spark.components.gridClasses.IDataGridElement;
import spark.components.gridClasses.IGridItemEditor;
import spark.components.supportClasses.IDataProviderEnhance;
import spark.components.supportClasses.RegExPatterns;
import spark.components.supportClasses.SkinnableContainerBase;
import spark.core.NavigationUnit;
import spark.events.GridCaretEvent;
import spark.events.GridEvent;
import spark.events.GridSelectionEvent;
import spark.events.GridSelectionEventKind;
import spark.events.GridSortEvent;
import spark.layouts.supportClasses.DropLocation;
use namespace mx_internal;
//--------------------------------------
// Styles
//--------------------------------------
/**
* Used to initialize the DataGrid's <code>rowBackground</code> skin part.
* If the <code>alternatingRowColors</code> style is specified,
* then use the <code>alternatingRowColorsBackground</code> skin part
* as the value of the <code>rowBackground</code> skin part.
* The alternating colors for the grid rows are defined by
* successive entries in the Array value of this style.
*
* <p>If you want to change how this style is rendered,
* replace the <code>alternatingRowColorsBackground</code> skin part
* in the DataGridSkin class.
* If you want to specify the background for each row, then
* initialize the <code>rowBackground</code> skin part directly.</p>
*
* @default undefined
*
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Style(name="alternatingRowColors", type="Array", arrayType="uint", format="Color", inherit="no", theme="spark")]
/**
* The alpha value of the border for this component.
* Valid values are 0.0 to 1.0.
*
* @default 1.0
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Style(name="borderAlpha", type="Number", inherit="no", theme="spark", minValue="0.0", maxValue="1.0")]
/**
* The color of the border for this component.
*
* @default #696969
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Style(name="borderColor", type="uint", format="Color", inherit="no", theme="spark")]
/**
* Controls the visibility of the border for this component.
*
* @default true
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Style(name="borderVisible", type="Boolean", inherit="no", theme="spark")]
/**
* Color of the caret indicator when navigating the Grid.
*
* @default 0x0167FF
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.0
* @productversion Flex 4.5
*/
[Style(name="caretColor", type="uint", format="Color", inherit="yes", theme="spark")]
/**
* The alpha of the content background for this component.
* Valid values are 0.0 to 1.0.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Style(name="contentBackgroundAlpha", type="Number", inherit="yes", theme="spark", minValue="0.0", maxValue="1.0")]
/**
* @copy spark.components.supportClasses.GroupBase#style:contentBackgroundColor
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Style(name="contentBackgroundColor", type="uint", format="Color", inherit="yes", theme="spark")]
/**
* @copy spark.components.supportClasses.GroupBase#style:rollOverColor
*
* @default 0xCEDBEF
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.0
* @productversion Flex 4.5
*/
[Style(name="rollOverColor", type="uint", format="Color", inherit="yes", theme="spark")]
/**
* @copy spark.components.List#style:selectionColor
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.0
* @productversion Flex 4.5
*/
[Style(name="selectionColor", type="uint", format="Color", inherit="yes", theme="spark, mobile")]
/**
* The class to use as the skin for the cursor that indicates that a column
* can be resized.
* The default value is the <code>cursorStretch</code> symbol from the Assets.swf file.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Style(name="stretchCursor", type="Class", inherit="no")]
/**
* @copy spark.components.supportClasses.GroupBase#style:symbolColor
*
* @default 0x000000
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.0
* @productversion Flex 4.5
*/
[Style(name="symbolColor", type="uint", format="Color", inherit="yes", theme="spark, mobile")]
include "../styles/metadata/BasicInheritingTextStyles.as"
/**
* The class to use as the item editor, if one is not
* specified by a column.
* This style property lets you set
* an item editor for a group of DataGrid controls instead of having to
* set each one individually.
* The <code>DataGridColumn.itemEditor</code> property supercedes this value.
*
* @default null
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Style(name="defaultDataGridItemEditor", type="Class", inherit="no")]
/**
* Indicates the conditions for which the horizontal scroll bar is displayed.
*
* <ul>
* <li>
* <code>ScrollPolicy.ON</code> ("on") - The scroll bar is always displayed.
* </li>
* <li>
* <code>ScrollPolicy.OFF</code> ("off") - The scroll bar is never displayed.
* The viewport can still be scrolled programmatically, by setting its
* <code>horizontalScrollPosition</code> property.
* </li>
* <li>
* <code>ScrollPolicy.AUTO</code> ("auto") - The scroll bar is displayed when
* the viewport's <code>contentWidth</code> is larger than its width.
* </li>
* </ul>
*
* <p>
* The scroll policy affects the measured size of the scroller skin part.
* This style is a reference to the scroller skin part's
* <code>horizontalScrollPolicy</code> style.
* It is not an inheriting style
* Therefor, for example, it will not affect item renderers. </p>
*
* @default ScrollPolicy.AUTO
*
* @see mx.core.ScrollPolicy
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Style(name="horizontalScrollPolicy", type="String", inherit="no", enumeration="off,on,auto")]
/**
* Indicates under what conditions the vertical scroll bar is displayed.
*
* <ul>
* <li>
* <code>ScrollPolicy.ON</code> ("on") - The scroll bar is always displayed.
* </li>
* <li>
* <code>ScrollPolicy.OFF</code> ("off") - The scroll bar is never displayed.
* The viewport can still be scrolled programmatically, by setting its
* <code>verticalScrollPosition</code> property.
* </li>
* <li>
* <code>ScrollPolicy.AUTO</code> ("auto") - The scroll bar is displayed when
* the viewport's <code>contentHeight</code> is larger than its height.
* </li>
* </ul>
*
* <p>
* The scroll policy affects the measured size of the scroller skin part.
* This style is a reference to the scroller skin part's
* <code>verticalScrollPolicy</code> style.
* It is not an inheriting style
* Therefor, for example, it will not affect item renderers. </p>
*
* @default ScrollPolicy.AUTO
*
* @see mx.core.ScrollPolicy
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Style(name="verticalScrollPolicy", type="String", inherit="no", enumeration="off,on,auto")]
//--------------------------------------
// Events
//--------------------------------------
/**
* Dispatched by the <code>grid</code> skin part when the caret position, size, or
* visibility has changed due to user interaction or being programmatically set.
*
* <p>To handle this event, assign an event handler to the <code>grid</code> skin part
* of the DataGrid control.</p>
*
* @eventType spark.events.GridCaretEvent.CARET_CHANGE
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="caretChange", type="spark.events.GridCaretEvent")]
/**
* Dispatched by the <code>grid</code> skin part when the mouse button
* is pressed over a grid cell.
*
* <p>To handle this event, assign an event handler to the <code>grid</code> skin part
* of the DataGrid control.</p>
*
* @eventType spark.events.GridEvent.GRID_MOUSE_DOWN
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="gridMouseDown", type="spark.events.GridEvent")]
/**
* Dispatched by the <code>grid</code> skin part after a <code>gridMouseDown</code> event
* if the mouse moves before the button is released.
*
* <p>To handle this event, assign an event handler to the <code>grid</code> skin part
* of the DataGrid control.</p>
*
* @eventType spark.events.GridEvent.GRID_MOUSE_DRAG
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="gridMouseDrag", type="spark.events.GridEvent")]
/**
* Dispatched by the <code>grid</code> skin part after a <code>gridMouseDown</code> event
* when the mouse button is released, even if the mouse is no longer within the grid.
*
* <p>To handle this event, assign an event handler to the <code>grid</code> skin part
* of the DataGrid control.</p>
*
* @eventType spark.events.GridEvent.GRID_MOUSE_UP
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="gridMouseUp", type="spark.events.GridEvent")]
/**
* Dispatched by the <code>grid</code> skin part when the mouse enters a grid cell.
*
* <p>To handle this event, assign an event handler to the <code>grid</code> skin part
* of the DataGrid control.</p>
*
* @eventType spark.events.GridEvent.GRID_ROLL_OVER
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="gridRollOver", type="spark.events.GridEvent")]
/**
* Dispatched by the <code>grid</code> skin part when the mouse leaves a grid cell.
*
* <p>To handle this event, assign an event handler to the <code>grid</code> skin part
* of the DataGrid control.</p>
*
* @eventType spark.events.GridEvent.GRID_ROLL_OUT
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="gridRollOut", type="spark.events.GridEvent")]
/**
* Dispatched by the <code>grid</code> skin part when the mouse is clicked over a cell.
*
* <p>To handle this event, assign an event handler to the <code>grid</code> skin part
* of the DataGrid control.</p>
*
* @eventType spark.events.GridEvent.GRID_CLICK
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="gridClick", type="spark.events.GridEvent")]
/**
* Dispatched by the <code>grid</code> skin part when the mouse is double-clicked over a cell.
*
* <p>To handle this event, assign an event handler to the <code>grid</code> skin part
* of the DataGrid control.</p>
*
* @eventType spark.events.GridEvent.GRID_DOUBLE_CLICK
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="gridDoubleClick", type="spark.events.GridEvent")]
/**
* Dispatched when the selection is going to change.
* Calling the <code>preventDefault()</code> method
* on the event prevents the selection from changing.
*
* <p>This event is dispatched when the user interacts with the control.
* When you change the selection programmatically,
* the component does not dispatch the <code>selectionChanging</code> event. </p>
*
* @eventType spark.events.GridSelectionEvent.SELECTION_CHANGING
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="selectionChanging", type="spark.events.GridSelectionEvent")]
/**
* Dispatched when the selection has changed.
*
* <p>This event is dispatched when the user interacts with the control.
* When you change the selection programmatically,
* the component does not dispatch the <code>selectionChange</code> event.
* In either case it dispatches the <code>valueCommit</code> event as well.</p>
*
* @eventType spark.events.GridSelectionEvent.SELECTION_CHANGE
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="selectionChange", type="spark.events.GridSelectionEvent")]
/**
* Dispatched before the sort has been applied to the data provider's collection.
* Typically this is when the user releases the mouse button on a column header
* to request the control to sort the grid contents based on the contents of the column.
* Only dispatched if the column is sortable and the data provider supports sorting.
*
* <p>The DataGrid control has a default handler for this event that implements
* a single-column sort and updates the <code>visibleSortIndices</code> in the grid's
* <code>columnHeaderGroup</code> with the <code>columnIndices</code>.</p>
*
* <p>Multiple-column sort can be implemented by calling the <code>preventDefault()</code> method
* to prevent the single column sort and setting the <code>columnIndices</code> and
* <code>newSortFields</code> parameters of the event to change the default behavior.
* <code>newSortFields</code> should be set to the desired sort fields.
* <code>columnIndices</code> should be set to the indices of the columns that should
* have a visible sort indicator in the column header bar.</p>
*
* <p>This event is dispatched when the user interacts with the control.
* When you sort the data provider's collection programmatically,
* the component does not dispatch the <code>sortChanging</code> event. </p>
*
* @eventType spark.events.GridSortEvent.SORT_CHANGING
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="sortChanging", type="spark.events.GridSortEvent")]
/**
* Dispatched after the sort has been applied to the data provider's collection.
* Typically this is after the user releases the mouse button on a column header and
* the sort has been applied to the data provider's collection.
*
* <p>This event is dispatched when the user interacts with the control.
* When you sort the data provider's collection programmatically,
* the component does not dispatch the <code>sortChanging</code> event.</p>
*
* @eventType spark.events.GridSortEvent.SORT_CHANGE
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="sortChange", type="spark.events.GridSortEvent")]
//--------------------------------------
// Edit Events
//--------------------------------------
/**
* Dispatched when a new item editor session has been requested. A listener can
* dynamically determine if a cell is editable and cancel the edit (by calling
* the <code>preventDefault()</code> method) if it is not.
* A listener may also dynamically change the editor used by assigning a
* different item editor to a column.
*
* <p>If this event is canceled the item editor will not be created.</p>
*
* @eventType spark.events.GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_STARTING
*
* @see spark.components.DataGrid.itemEditorInstance
* @see flash.events.Event
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="gridItemEditorSessionStarting", type="spark.events.GridItemEditorEvent")]
/**
* Dispatched immediately after an item editor has been opened.
*
* @eventType spark.events.GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_START
*
* @see spark.components.DataGrid.itemEditorInstance
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="gridItemEditorSessionStart", type="spark.events.GridItemEditorEvent")]
/**
* Dispatched after the data in item editor has been saved into the data provider
* and the editor has been closed.
*
* @eventType spark.events.GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_SAVE
*
* @see spark.components.DataGrid.itemEditorInstance
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="gridItemEditorSessionSave", type="spark.events.GridItemEditorEvent")]
/**
* Dispatched after the item editor has been closed without saving its data.
*
* @eventType spark.events.GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_CANCEL
*
* @see spark.components.DataGrid.itemEditorInstance
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
[Event(name="gridItemEditorSessionCancel", type="spark.events.GridItemEditorEvent")]
//--------------------------------------
// Other metadata
//--------------------------------------
[AccessibilityClass(implementation="spark.accessibility.DataGridAccImpl")]
[DefaultProperty("dataProvider")]
[DefaultTriggerEvent("selectionChange")]
[DiscouragedForProfile("mobileDevice")]
[IconFile("DataGrid.png")]
/**
* The DataGrid displays a row of column headings above a scrollable grid.
* The grid is arranged as a collection of individual cells arranged
* in rows and columns.
* The DataGrid control is designed to support smooth scrolling through
* large numbers of rows and columns.
*
* <p>The Spark DataGrid control is implemented as a skinnable wrapper
* around the Spark Grid control.
* The Grid control defines the columns of the data grid, and much of
* the functionality of the DataGrid control itself.</p>
*
* <p>The DataGrid skin is responsible for laying out the grid, column header, and scroller.
* The skin also configures the graphic elements used to render visual elements
* used as indicators, separators, and backgrounds.
* The DataGrid skin also defines a default item renderer,
* used to display the contents of each cell.
* Please see the documentation for the renderer class for the list of supported styles.</p>
*
* <p>Transitions in DataGrid item renderers aren't supported. The GridItemRenderer class
* has disabled its <code>transitions</code> property so setting it will have no effect.</p>
*
* @mxml <p>The <code><s:DataGrid></code> tag inherits all of the tag
* attributes of its superclass and adds the following tag attributes:</p>
*
* <pre>
* <s:DataGrid
* <strong>Properties</strong>
* columns="null"
* dataProvider="null"
* dataTipField="null"
* dataTipFunction="null"
* doubleClickMode="row"
* editable="false"
* editorColumnIndex="-1"
* editorRowIndex="-1"
* imeMode="null"
* itemEditor="null"
* itemRenderer="<i>DefaultGridItemRenderer</i>"
* preserveSelection="true"
* requestedColumnCount="-1"
* requestedMaxRowCount="-1"
* requestedMinColumnCount="-1"
* requestedMinRowCount="-1"
* requestedRowCount="-1"
* requireSelection="false"
* resizeableColumns="true"
* rowHeight="<i>Calculated default</i>"
* selectedCell="null"
* selectedCells="<i>empty Vector.<CellPosition></i>"
* selectedIndex="null"
* selectedIndices="<i>empty Vector.<CellPosition></i>"
* selectedItem="null"
* selectedItems="<i>empty Vector.<Object></i>"
* selectionMode="singleRow"
* showDataTips="false"
* sortableColumns="true"
* typicalItem="null"
* variableRowHeight="false"
*
* <strong>Styles</strong>
* alignmentBaseline="useDominantBaseline"
* baselineShift="0.0"
* cffHinting="horizontalStem"
* color="0"
* defaultGridItemEditor="null"
* digitCase="default"
* digitWidth="default"
* direction="ltr"
* dominantBaseline="auto"
* fontFamily="Arial"
* fontLookup="device"
* fontSize="12"
* fontStyle="normal"
* fontWeight="normal"
* justificationRule="auto"
* justificationStyle="auto"
* kerning="auto"
* ligatureLevel="common"
* lineHeight="120%"
* lineThrough="false"
* locale="en"
* renderingMode="cff"
* stretchCursor="<i>cursorStretch symbol from Assets.swf</i>"
* textAlign="start"
* textAlignLast="start"
* textAlpha="1"
* textDecoration="none"
* textJustify="interWord"
* trackingLeft="0"
* trackingRight="0"
* typographicCase="default"
* verticalScrollPolicy="auto"
*
* <strong>Styles for the Spark Theme</strong>
* alternatingRowColors="undefined"
* borderAlpha="1.0"
* borderColor="0x696969"
* borderVisible="true"
* caretColor="0x0167FF"
* contentBackgroundAlpha="1.0"
* contentBackgroundColor="0xFFFFFF"
* rollOverColor="0xCEDBEF"
* selectionColor="0xA8C6EE"
* symbolColor="0x000000"
*
* <strong>Styles for the Mobile Theme</strong>
* leading="0"
* letterSpacing="0"
* selectionColor="0xE0E0E0"
* symbolColor="0x000000"
*
* <strong>Events</strong>
* caretChange="<i>No default</i>"
* gridClick="<i>No default</i>"
* gridDoubleClick="<i>No default</i>"
* gridItemEditorSessionCancel="<i>No default</i>"
* gridItemEditorSessionSave="<i>No default</i>"
* gridItemEditorSessionStart="<i>No default</i>"
* gridItemEditorSessionStarting="<i>No default</i>"
* gridMouseDown="<i>No default</i>"
* gridMouseDrag="<i>No default</i>"
* gridMouseUp="<i>No default</i>"
* gridMouseRollOut="<i>No default</i>"
* gridMouseRollOver="<i>No default</i>"
* selectionChange="<i>No default</i>"
* selectionChanging="<i>No default</i>"
* sortChange="<i>No default</i>"
* sortChanging="<i>No default</i>"
* />
* </pre>
*
* @see spark.components.Grid
* @see spark.components.gridClasses.GridColumn
* @see spark.skins.spark.DataGridSkin
* @see spark.skins.spark.DefaultGridItemRenderer
*
* @includeExample examples/DataGridSimpleExample.mxml
* @includeExample examples/DataGridMasterDetailExample.mxml
* @includeExample examples/DataGridTypicalItemExample.mxml
* @includeExample examples/DataGridRowHeightExample.mxml
* @includeExample examples/DataGridSelectionExample.mxml
* @includeExample examples/DataGridInvalidateCellExample.mxml
* @includeExample examples/DataGridLockedRowsAndColumnsExample.mxml
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public class DataGrid extends SkinnableContainerBase
implements IDataProviderEnhance, IFocusManagerComponent, IIMESupport
{
include "../core/Version.as";
//--------------------------------------------------------------------------
//
// Class mixins
//
//--------------------------------------------------------------------------
/**
* @private
* Placeholder for mixin by DataGridAccImpl.
*/
mx_internal static var createAccessibilityImplementation:Function;
//--------------------------------------------------------------------------
//
// Constructor
//
//--------------------------------------------------------------------------
/**
* Constructor.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function DataGrid()
{
super();
addEventListener(Event.SELECT_ALL, selectAllHandler);
addEventListener(FocusEvent.KEY_FOCUS_CHANGE, keyFocusChangeHandler, false, EventPriority.DEFAULT_HANDLER);
}
//--------------------------------------------------------------------------
//
// Variables
//
//--------------------------------------------------------------------------
/**
* @private
* True, when the hover indicator should be updated on a ROLL_OVER event.
* If the mouse button is depressed while outside of the grid, the hover
* indicator is not enabled again until MOUSE_UP or ROLL_OUT.
*/
private var updateHoverOnRollOver:Boolean = true;
//--------------------------------------------------------------------------
//
// Drag and Drop Variables
//
//--------------------------------------------------------------------------
/**
* @private
* The point where the mouse down event was received.
* Used to track whether a drag operation should be initiated when the user
* drags further than a certain threshold.
*/
private var mouseDownPoint:Point;
/**
* @private
* The index of the element the mouse down event was received for. Used to
* track which is the "focus item" for a drag and drop operation.
*/
private var mouseDownRowIndex:int = -1;
/**
* @private
* The index of the element the mouse down event was received for. Used to
* track which is the "focus item" for a drag and drop operation.
*/
private var mouseDownColumnIndex:int = -1;
/**
* @private
* The displayObject where the mouse down event was received.
* In touch interactionMode, used to track whether this item is
* the one that is moused up on so we can possibly select it.
*/
private var mouseDownObject:DisplayObject;
/**
* @private
* When dragging is enabled with multiple selection, the selection is not
* comitted immediately on mouse down, but we wait to see whether the user
* intended to start a drag gesture instead. In that case we postpone
* comitting the selection until mouse up.
*/
private var pendingSelectionOnMouseUp:Boolean = false;
/**
* @private
*/
private var pendingSelectionShiftKey:Boolean;
/**
* @private
*/
private var pendingSelectionCtrlKey:Boolean;
//--------------------------------------------------------------------------
//
// Skin Parts
//
//--------------------------------------------------------------------------
/**
* @private
* IFactory valued skin parts that require special handling, see findSkinParts().
*/
private static const factorySkinPartNames:Array = [
"alternatingRowColorsBackground",
"caretIndicator",
"columnSeparator",
"headerColumnSeparator",
"hoverIndicator",
"lockedRowsSeparator",
"lockedColumnsSeparator",
"rowBackground",
"rowSeparator",
"selectionIndicator"];
//----------------------------------
// alternatingRowColorsBackground
//----------------------------------
[Bindable]
[SkinPart(required="false", type="mx.core.IVisualElement")]
/**
* The IVisualElement class used to render the <code>alternatingRowColors</code> style.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public var alternatingRowColorsBackground:IFactory;
//----------------------------------
// caretIndicator
//----------------------------------
[Bindable]
[SkinPart(required="false", type="mx.core.IVisualElement")]
/**
* The IVisualElement class used to render the grid's caret indicator.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public var caretIndicator:IFactory;
//----------------------------------
// columnHeaderGroup
//----------------------------------
[Bindable]
[SkinPart(required="false")]
/**
* A reference to the GridColumnHeaderGroup object that displays the column headers.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public var columnHeaderGroup:GridColumnHeaderGroup;
//----------------------------------
// columnSeparator
//----------------------------------
[Bindable]
[SkinPart(required="false", type="mx.core.IVisualElement")]
/**
* The IVisualElement class used to render the vertical separator between columns.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public var columnSeparator:IFactory;
//----------------------------------
// dropIndicator
//----------------------------------
[SkinPart(required="false", type="flash.display.DisplayObject")]
/**
* The IVisualElement class that defines the appearance of the drop indicator.
* The drop indicator is resized and positioned by the layout to indicate
* in between which grid rows the drop will insert the drag source item.
*
* <p>This is a dynamic skin part: it's created as needed and then destroyed.</p>
*
* <p>The DataGrid will set the dropIndicator's height to its
* preferred height bracketed by its minHeight and maxHeight values.
* Its width will be unconditionally set to the grid's visible width.</p>
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
public var dropIndicator:IFactory;
//----------------------------------
// editorIndicator
//----------------------------------
[Bindable]
[SkinPart(required="false", type="mx.core.IVisualElement")]
/**
* The IVisualElement class used to render a background behind
* item renderers that are being edited.
* Item renderers may only be edited
* when the data grid and the column are both editable and the
* column sets <code>rendererIsEditable</code> to <code>true</code>.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public var editorIndicator:IFactory;
//----------------------------------
// grid
//----------------------------------
[Bindable]
[SkinPart(required="false")]
/**
* A reference to the Grid control that displays row and columns.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public var grid:spark.components.Grid;
//----------------------------------
// hoverIndicator
//----------------------------------
[Bindable]
[SkinPart(required="false", type="mx.core.IVisualElement")]
/**
* The IVisualElement class used to provide hover feedback.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public var hoverIndicator:IFactory;
//----------------------------------
// lockedColumnsSeparator
//----------------------------------
[Bindable]
[SkinPart(required="false", type="mx.core.IVisualElement")]
/**
* The IVisualElement class used to render the vertical separator between locked and unlocked columns.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 5.0
*/
public var lockedColumnsSeparator:IFactory;
//----------------------------------
// lockedRowsSeparator
//----------------------------------
[Bindable]
[SkinPart(required="false", type="mx.core.IVisualElement")]
/**
* The IVisualElement class used to render the horizontal separator between locked and unlocked rows.
*/
public var lockedRowsSeparator:IFactory;
//----------------------------------
// rowBackground
//----------------------------------
[Bindable]
[SkinPart(required="false", type="mx.core.IVisualElement")]
/**
* The IVisualElement class used to render the background of each row.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public var rowBackground:IFactory;
//----------------------------------
// rowSeparator
//----------------------------------
[Bindable]
[SkinPart(required="false", type="mx.core.IVisualElement")]
/**
* The IVisualElement class used to render the horizontal separator between header rows.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public var rowSeparator:IFactory;
//----------------------------------
// scroller
//----------------------------------
[Bindable]
[SkinPart(required="false")]
/**
* A reference to the Scroller control in the skin class
* that adds scroll bars to the DataGrid control.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public var scroller:Scroller;
//----------------------------------
// selectionIndicator
//----------------------------------
[Bindable]
[SkinPart(required="false", type="mx.core.IVisualElement")]
/**
* The IVisualElement class used to render selected rows or cells.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public var selectionIndicator:IFactory;
/**
* @private
* If the alternatingRowColors style is set AND the alternatingRowColorsBackground
* skin part has been added AND the grid skin part has been added, then set
* grid.rowBackground = alternatingRowColorsBackground here. Otherwise just
* set it to the value of the rowBackground skin part (property).
*/
private function initializeGridRowBackground():void
{
if (!grid)
return;
if ((getStyle("alternatingRowColors") as Array) && alternatingRowColorsBackground)
grid.rowBackground = alternatingRowColorsBackground;
else
grid.rowBackground = rowBackground;
}
//--------------------------------------------------------------------------
//
// Skin Part Property Internals
//
//--------------------------------------------------------------------------
/**
* @private
* A list of functions to be applied to the grid skin part at partAdded() time.
* This list is used to defer making grid selection updates per the set methods for
* the selectedIndex, selectedIndices, selectedItem, selectedItems, selectedCell
* and selectedCells properties.
*/
private const deferredGridOperations:Vector.<Function> = new Vector.<Function>();
/**
* @private
* Defines one bit for each skin part property that's covered by DataGrid. Currently
* there are only grid properties.
*/
private static const partPropertyBits:Object = {
columns: uint(1 << 0),
dataProvider: uint(1 << 1),
itemRenderer: uint(1 << 2),
requestedRowCount: uint(1 << 3),
requestedColumnCount: uint(1 << 4),
requestedMaxRowCount: uint(1 << 5),
requestedMinRowCount: uint(1 << 6),
requestedMinColumnCount: uint(1 << 7),
rowHeight: uint(1 << 8),
showDataTips: uint(1 << 9),
typicalItem: uint(1 << 10),
variableRowHeight: uint(1 << 11),
dataTipField: uint(1 << 12),
dataTipFunction: uint(1 << 13),
resizableColumns: uint(1 << 14),
lockedColumnCount: uint(1 << 15),
lockedRowCount: uint(1 << 16)
};
/**
* @private
* If the grid skin part hasn't been added, this var is an object whose properties
* temporarily record the values of DataGrid properties that just "cover" grid skin
* part properties.
*
* If the grid skin part has been added (is non-null), then this var has
* a single is a uint bitmask property called propertyBits that's used
* used to track which grid properties have been explicitly set.
*
* See getPartProperty(), setPartProperty().
*/
private var gridProperties:Object = {};
/**
* @private
* The default values of the grid skin part properties covered by DataGrid.
*/
private static const gridPropertyDefaults:Object = {
columns: null,
dataProvider: null,
itemRenderer: null,
resizableColumns: true,
requestedRowCount: int(-1),
requestedMaxRowCount: int(10),
requestedMinRowCount: int(-1),
requestedColumnCount: int(-1),
requestedMinColumnCount: int(-1),
rowHeight: NaN,
showDataTips: false,
typicalItem: null,
variableRowHeight: false,
dataTipField: null,
dataTipFunction: null,
lockedColumnCount: int(0),
lockedRowCount: int(0)
};
/**
* @private
* A utility method for looking up a skin part property that accounts for the possibility that
* the skin part is null. It's intended to be used in the definition of properties that just
* "cover" skin part properties.
*
* If part is non-null, then return part[propertyName]. Otherwise return the value
* of properties[propertyName], or defaults[propertyName] if the specified property's
* value is undefined.
*/
private static function getPartProperty(part:Object, properties:Object, propertyName:String, defaults:Object):*
{
if (part)
return part[propertyName];
const value:* = properties[propertyName];
return (value === undefined) ? defaults[propertyName] : value;
}
/**
* @private
* A utility method for setting a skin part property that accounts for the possibility that
* the skin part is null. It's intended to be used in the definition of properties that just
* "cover" skin part properties.
*
* Return true if the property's value was changed.
*
* If part is non-null, then set part[propertyName], otherwise set properties[propertyName].
*
* If part is non-null then we set the bit for this property on the properties.propertyBits, to record
* the fact that the DataGrid cover property was explicitly set.
*
* In either case we treat setting a property to its default value specially: the effect
* is as if the property was never set at all.
*/
private static function setPartProperty(part:Object, properties:Object, propertyName:String, value:*, defaults:Object):Boolean
{
if (getPartProperty(part, properties, propertyName, defaults) === value)
return false;
const defaultValue:* = defaults[propertyName];
if (part)
{
part[propertyName] = value;
if (value === defaultValue)
properties.propertyBits &= ~partPropertyBits[propertyName];
else
properties.propertyBits |= partPropertyBits[propertyName];
}
else
{
if (value === defaultValue)
delete properties[propertyName];
else
properties[propertyName] = value;
}
return true;
}
/**
* @private
* Return the specified grid property.
*/
private function getGridProperty(propertyName:String):*
{
return getPartProperty(grid, gridProperties, propertyName, gridPropertyDefaults);
}
/**
* @private
* Set the specified grid property and return true if the property actually changed.
*/
private function setGridProperty(propertyName:String, value:*):Boolean
{
return setPartProperty(grid, gridProperties, propertyName, value, gridPropertyDefaults);
}
//--------------------------------------------------------------------------
//
// Variables
//
//--------------------------------------------------------------------------
/**
* @private
* Maximum time in milliseconds between a click and a double click.
*/
mx_internal var doubleClickTime:Number = 620;
/**
* @private
* Key used to start editting a cell.
*/
mx_internal var editKey:uint = Keyboard.F2;
/**
* @private
* A cell editor is initiated by a single click on a selected cell.
* If this variable is true then also open an editor when a cell is
* double clicked, otherwise cancel the edit.
*/
mx_internal var editOnDoubleClick:Boolean = false;
/**
* @private
* Provides all the logic to start and end item
* editor sessions.
*
* Create your own editor by overriding the <code>createEditor()</code>
* method.
*/
mx_internal var editor:DataGridEditor;
//--------------------------------------------------------------------------
//
// Properties
//
//--------------------------------------------------------------------------
/**
* @private
*/
private function dispatchChangeEvent(type:String):void
{
if (hasEventListener(type))
dispatchEvent(new Event(type));
}
/**
* @private
*/
private function dispatchFlexEvent(type:String):void
{
if (hasEventListener(type))
dispatchEvent(new FlexEvent(type));
}
//----------------------------------
// columns (delegates to grid.columns)
//----------------------------------
[Bindable("columnsChanged")]
[Inspectable(category="General")]
/**
* @copy spark.components.Grid#columns
*
* @default null
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get columns():IList
{
return getGridProperty("columns");
}
/**
* @private
*/
public function set columns(value:IList):void
{
if (setGridProperty("columns", value))
{
if (columnHeaderGroup)
{
columnHeaderGroup.layout.clearVirtualLayoutCache();
columnHeaderGroup.invalidateSize();
columnHeaderGroup.invalidateDisplayList();
}
dispatchChangeEvent("columnsChanged");
}
}
/**
* @private
*/
private function getColumnAt(columnIndex:int):GridColumn
{
const grid:Grid = grid;
if (!grid || !grid.columns)
return null;
const columns:IList = grid.columns;
return ((columnIndex >= 0) && (columnIndex < columns.length)) ? columns.getItemAt(columnIndex) as GridColumn : null;
}
//----------------------------------
// columnsLength
//----------------------------------
/**
* Returns the value of <code>columns.length</code> if the columns IList
* was specified, otherwise 0.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5*
*/
public function get columnsLength():int
{
const columns:IList = columns;
return (columns) ? columns.length : 0;
}
//----------------------------------
// dataProvider (delegates to grid.dataProvider)
//----------------------------------
[Bindable("dataProviderChanged")]
[Inspectable(category="Data")]
/**
* @copy spark.components.Grid#dataProvider
*
* @default null
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get dataProvider():IList
{
return getGridProperty("dataProvider");
}
/**
* @private
*/
public function set dataProvider(value:IList):void
{
if (setGridProperty("dataProvider", value))
dispatchChangeEvent("dataProviderChanged");
}
//----------------------------------
// dataProviderLength
//----------------------------------
/**
* Returns the value of <code>dataProvider.length</code> if the dataProvider IList
* was specified, otherwise 0.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get dataProviderLength():int
{
const dataProvider:IList = dataProvider;
return (dataProvider) ? dataProvider.length : 0;
}
//----------------------------------
// dataTipField (delegates to grid.dataTipField)
//----------------------------------
[Bindable("dataTipFieldChanged")]
[Inspectable(category="Data", defaultValue="null")]
/**
* @copy spark.components.Grid#dataTipField
*
* @default null
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get dataTipField():String
{
return getGridProperty("dataTipField");
}
/**
* @private
*/
public function set dataTipField(value:String):void
{
if (setGridProperty("dataTipField", value))
dispatchChangeEvent("dataTipFieldChanged");
}
//----------------------------------
// dataTipFunction (delegates to grid.dataTipFunction)
//----------------------------------
[Bindable("dataTipFunctionChanged")]
[Inspectable(category="Data")]
/**
* @copy spark.components.Grid#dataTipFunction
*
* @default null
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get dataTipFunction():Function
{
return getGridProperty("dataTipFunction");
}
/**
* @private
*/
public function set dataTipFunction(value:Function):void
{
if (setGridProperty("dataTipFunction", value))
dispatchChangeEvent("dataTipFunctionChanged");
}
//----------------------------------
// doubleClickMode
//----------------------------------
[Bindable("doubleClickModeChanged")]
[Inspectable(category="General", enumeration="cell,grid,row", defaultValue="row")]
/**
* @copy spark.components.Grid#doubleClickMode
*
* @default GridDoubleClickMode.ROW
*
* @see spark.components.gridClasses.GridDoubleClickMode
*
* @langversion 3.0
* @playerversion Flash 11.1
* @playerversion AIR 3.4
* @productversion Flex 4.10
*/
public function get doubleClickMode():String
{
return grid.doubleClickMode;
}
/**
* @private
*/
public function set doubleClickMode(newValue:String):void
{
if (grid.doubleClickMode == newValue)
{
return;
}
grid.doubleClickMode = newValue;
dispatchChangeEvent("doubleClickModeChanged");
}
//----------------------------------
// draggableColumns
//----------------------------------
private var _draggableColumns:Boolean = false;
[Inspectable(category="General", defaultValue="false")]
[Bindable("draggableColumnsChanged")]
/**
*
* @langversion 3.0
* @playerversion Flash 1
* @playerversion AIR 2.5
* @productversion Flex 5.0
*/
public function get draggableColumns():Boolean
{
return _draggableColumns;
}
/**
* @private
*/
public function set draggableColumns(value:Boolean):void
{
if (value == _draggableColumns)
return;
_draggableColumns = value;
dispatchChangeEvent("draggableColumnsChanged");
}
//----------------------------------
// editable
//----------------------------------
/**
* @private
* Storage for the editable property.
*/
private var _editable:Boolean = false;
[Inspectable(category="General", defaultValue="false")]
/**
* A flag which enables editing the data items in the DataGrid.
* If <code>true</code> and <code>selectionMode</code> is not equal to "none", clicking on
* a cell opens an item editor.
*
* <p>You can disable editing for individual columns of the DataGrid control using the
* GridColumn <code>editable</code> property.
* By default, all visible columns are editable.</p>
*
* <p>You can enable or disable editing per cell (rather than per column)
* by handling the <code>startItemEditorSession</code> event.
* In the event handler, add the necessary logic to determine
* if the cell should be editable.</p>
*
* @default false
*
* @see #selectionMode
* @see spark.components.gridClasses.GridColumn#editable
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get editable():Boolean
{
return _editable;
}
/**
* @private
*/
public function set editable(value:Boolean):void
{
_editable = value;
}
//----------------------------------
// editorActivationMouseEvent
//----------------------------------
private var _editorActivationMouseEvent:String = GridItemEditorActivationMouseEvent.SINGLE_CLICK_ON_SELECTED_CELL;
[Bindable("editorActivationMouseEventChanged")]
[Inspectable(category="General", enumeration="doubleClick,none,singleClick,singleClickOnSelectedCell", defaultValue="singleClickOnSelectedCell")]
/**
* The type of mouse event that starts an editor session. Must be one of
* values in <code>GridItemEditorMouseEvent</code>. This value
* provides a default value for each column of a DataGrid. A different
* value can be specified on a grid column to override the default.
*
* @default "singleClickOnSelectedCell"
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
public function get editorActivationMouseEvent():String
{
return _editorActivationMouseEvent;
}
/**
* @private
*/
public function set editorActivationMouseEvent(value:String):void
{
if (_editorActivationMouseEvent == value)
return;
_editorActivationMouseEvent = value;
dispatchChangeEvent("editorActivationMouseEventChanged");
}
//----------------------------------
// editorColumnIndex
//----------------------------------
/**
* The zero-based column index of the cell that is being edited.
* The value is -1 if no cell is being edited.
*
* @default -1
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get editorColumnIndex():int
{
if (editor)
return editor.editorColumnIndex;
return -1;
}
//----------------------------------
// editorRowIndex
//----------------------------------
/**
* The zero-based row index of the cell that is being edited.
* The value is -1 if no cell is being edited.
*
* @default -1
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get editorRowIndex():int
{
if (editor)
return editor.editorRowIndex;
return -1;
}
//----------------------------------
// enableIME
//----------------------------------
/**
* A flag that indicates whether the IME should
* be enabled when the component receives focus.
*
* If the item editor is open, it sets this property
* accordingly.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get enableIME():Boolean
{
return false;
}
//----------------------------------
// isFirstRow
//----------------------------------
/**
* @copy spark.components.Grid#isFirstRow
* If a <code>grid</code> is not assigned, will always return false;
*
* @langversion 3.0
* @playerversion Flash 11.1
* @playerversion AIR 3.4
* @productversion Flex 4.10
*/
public function get isFirstRow():Boolean
{
if (grid)
{
return grid.isFirstRow;
}
else
{
return false;
}
}
//----------------------------------
// isLastRow
//----------------------------------
/**
* @copy spark.components.Grid#isLastRow
* If a <code>grid</code> is not assigned, will always return false;
*
* @langversion 3.0
* @playerversion Flash 11.1
* @playerversion AIR 3.4
* @productversion Flex 4.10
*/
public function get isLastRow():Boolean
{
if (grid)
{
return grid.isLastRow;
}
else
{
return false;
}
}
//----------------------------------
// multiColumnSortingEnabled
//----------------------------------
private var _multiColumnSortingEnabled:Boolean = false;
[Bindable("multiColumnSortingEnabledChanged")]
[Inspectable(category="General", defaultValue="false")]
/**
* If this property is true and sorting has been enabled, then users can interactively
* specify multi-column sorts by control-clicking in column headers (Command+Click on OSX).
* Sorting is enabled for a column if the DataGrid <code>sortable</code> property is true
* and the column's <code>sortable</code> property is true. Sorting is enabled for
* all columns by default, multi-column sorting is not.
*
* @default false
*
* @see #sortable
* @see spark.components.gridClasses.GridColumn#sortable
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get multiColumnSortingEnabled():Boolean
{
return _multiColumnSortingEnabled;
}
/**
* @private
*/
public function set multiColumnSortingEnabled(value:Boolean):void
{
if (_multiColumnSortingEnabled == value)
return;
_multiColumnSortingEnabled = value;
dispatchChangeEvent("multiColumnSortingEnabledChanged");
}
//----------------------------------
// gridSelection (private)
//----------------------------------
private var _gridSelection:GridSelection = null;
/**
* @private
* This object becomes the grid's gridSelection property after the grid skin part has been
* added. It should only be referenced by this class when the grid skin part is null.
*/
protected function get gridSelection():GridSelection
{
if (!_gridSelection)
_gridSelection = createGridSelection();
return _gridSelection;
}
//----------------------------------
// imeMode
//----------------------------------
/**
* @private
*/
private var _imeMode:String = null;
[Inspectable(environment="none")]
/**
* The default value for the GridColumn <code>imeMode</code> property,
* which specifies the IME (Input Method Editor) mode.
* The IME enables users to enter text in Chinese, Japanese, and Korean.
* Flex sets the specified IME mode when the control gets focus,
* and sets it back to the previous value when the control loses focus.
*
* <p>The flash.system.IMEConversionMode class defines constants for the
* valid values for this property.
* You can also specify <code>null</code> to specify no IME.</p>
*
* @see flash.system.IMEConversionMode
*
* @default null
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get imeMode():String
{
return _imeMode;
}
/**
* @private
*/
public function set imeMode(value:String):void
{
_imeMode = value;
}
//----------------------------------
// internalFocusOwner
//----------------------------------
private static const GRID_FOCUS_OWNER:int = 0;
private static const HEADER_FOCUS_OWNER:int = 1;
private static const NO_FOCUS_OWNER:int = -1;
private var _internalFocusOwner:int = -1;
[Bindable("internalFocusOwnerChanged")]
/**
* Tracks the internal focus owner when the DataGrid has the focus: one of GRID_FOCUS_OWNER,
* HEADER_FOCUS_OWNER, or NO_FOCUS_OWNER.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
private function get internalFocusOwner():int
{
return _internalFocusOwner;
}
/**
* @private
*/
private function set internalFocusOwner(value:int):void
{
if (_internalFocusOwner == value)
return;
_internalFocusOwner = value;
if (columnHeaderGroup)
columnHeaderGroup.highlightSelectedColumn = (value == HEADER_FOCUS_OWNER);
if (grid)
grid.showCaret = (value == GRID_FOCUS_OWNER);
dispatchChangeEvent("internalFocusOwnerChanged");
}
//----------------------------------
// itemEditor
//----------------------------------
private var _itemEditor:IFactory = null;
[Bindable("itemEditorChanged")]
/**
* The default value for the GridColumn <code>itemEditor</code> property,
* which specifies the IGridItemEditor class used to create item editor instances.
*
* @default null.
*
* @see #dataField
* @see spark.components.gridClasses.IGridItemEditor
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get itemEditor():IFactory
{
return _itemEditor;
}
/**
* @private
*/
public function set itemEditor(value:IFactory):void
{
if (_itemEditor == value)
return;
_itemEditor = value;
dispatchChangeEvent("itemEditorChanged");
}
/**
* A reference to the currently active instance of the item editor,
* if it exists.
*
* <p>To access the item editor instance and the new item value when an
* item is being edited, you use the <code>itemEditorInstance</code>
* property. The <code>itemEditorInstance</code> property
* is not valid until the <code>itemEditorSessionStart</code> event is
* dispatched.</p>
*
* <p>The <code>DataGridColumn.itemEditor</code> property defines the
* class of the item editor and, therefore, the data type of the item
* editor instance.</p>
*
* <p>Do not set this property in MXML.</p>
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get itemEditorInstance():IGridItemEditor
{
if (editor)
return editor.itemEditorInstance;
return null;
}
//----------------------------------
// itemRenderer (delegates to grid.itemRenderer)
//----------------------------------
[Bindable("itemRendererChanged")]
[Inspectable(category="Data")]
/**
* @copy spark.components.Grid#itemRenderer
*
* @default DefaultGridItemRenderer
*
* @see spark.components.gridClasses.GridItemRenderer
* @see spark.skins.spark.DefaultGridItemRenderer
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get itemRenderer():IFactory
{
return getGridProperty("itemRenderer");
}
/**
* @private
*/
public function set itemRenderer(value:IFactory):void
{
if (setGridProperty("itemRenderer", value))
dispatchChangeEvent("itemRendererChanged");
}
//----------------------------------
// lockedColumnCount (delegates to grid.lockedColumnCount)
//----------------------------------
[Bindable("lockedColumnCountChanged")]
[Inspectable(category="General", defaultValue="0", minValue="0")]
/**
* @copy spark.components.Grid#lockedColumnCount
*
* @default 0
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 5.0
*/
public function get lockedColumnCount():int
{
return getGridProperty("lockedColumnCount");
}
/**
* @private
*/
public function set lockedColumnCount(value:int):void
{
if (setGridProperty("lockedColumnCount", value))
dispatchChangeEvent("lockedColumnCountChanged");
}
//----------------------------------
// lockedRowCount (delegates to grid.lockedRowCount)
//----------------------------------
[Bindable("lockedRowCountChanged")]
[Inspectable(category="General", defaultValue="0", minValue="0")]
/**
* @copy spark.components.Grid#lockedRowCount
*
* @default 0
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 5.0
*/
public function get lockedRowCount():int
{
return getGridProperty("lockedRowCount");
}
/**
* @private
*/
public function set lockedRowCount(value:int):void
{
if (setGridProperty("lockedRowCount", value))
dispatchChangeEvent("lockedRowCountChanged");
}
//----------------------------------
// preserveSelection (delegates to grid.preserveSelection)
//----------------------------------
[Inspectable(category="General", defaultValue="true")]
/**
* @copy spark.components.Grid#preserveSelection
*
* @default true
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get preserveSelection():Boolean
{
if (grid)
return grid.preserveSelection;
else
return gridSelection.preserveSelection;
}
/**
* @private
*/
public function set preserveSelection(value:Boolean):void
{
if (grid)
grid.preserveSelection = value;
else
gridSelection.preserveSelection = value;
}
//----------------------------------
// requireSelection (delegates to grid.requireSelection)
//----------------------------------
[Inspectable(category="General", defaultValue="false")]
/**
* @copy spark.components.Grid#requireSelection
*
* @default false
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get requireSelection():Boolean
{
if (grid)
return grid.requireSelection;
else
return gridSelection.requireSelection;
}
/**
* @private
*/
public function set requireSelection(value:Boolean):void
{
if (grid)
grid.requireSelection = value;
else
gridSelection.requireSelection = value;
}
//----------------------------------
// requestedRowCount (delegates to grid.requestedRowCount)
//----------------------------------
[Inspectable(category="General", minValue="-1")]
/**
* @copy spark.components.Grid#requestedRowCount
*
* @default -1
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get requestedRowCount():int
{
return getGridProperty("requestedRowCount");
}
/**
* @private
*/
public function set requestedRowCount(value:int):void
{
setGridProperty("requestedRowCount", value);
}
//----------------------------------
// requestedColumnCount (delegates to grid.requestedColumnCount)
//----------------------------------
[Inspectable(category="General", minValue="-1")]
/**
* @copy spark.components.Grid#requestedColumnCount
*
* @default -1
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get requestedColumnCount():int
{
return getGridProperty("requestedColumnCount");
}
/**
* @private
*/
public function set requestedColumnCount(value:int):void
{
setGridProperty("requestedColumnCount", value);
}
//----------------------------------
// requestedMaxRowCount (delegates to grid.requestedMaxRowCount)
//----------------------------------
[Inspectable(category="General", defaultValue="10", minValue="-1")]
/**
* @copy spark.components.Grid#requestedMaxRowCount
*
* @default 10
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get requestedMaxRowCount():int
{
return getGridProperty("requestedMaxRowCount");
}
/**
* @private
*/
public function set requestedMaxRowCount(value:int):void
{
setGridProperty("requestedMaxRowCount", value);
}
//----------------------------------
// requestedMinRowCount (delegates to grid.requestedMinRowCount)
//----------------------------------
[Inspectable(category="General", minValue="-1")]
/**
* @copy spark.components.Grid#requestedMinRowCount
*
* @default -1
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get requestedMinRowCount():int
{
return getGridProperty("requestedMinRowCount");
}
/**
* @private
*/
public function set requestedMinRowCount(value:int):void
{
setGridProperty("requestedMinRowCount", value);
}
//----------------------------------
// requestedMinColumnCount (delegates to grid.requestedMinColumnCount)
//----------------------------------
[Inspectable(category="General", minValue="-1")]
/**
* @copy spark.components.Grid#requestedMinColumnCount
*
* @default -1
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get requestedMinColumnCount():int
{
return getGridProperty("requestedMinColumnCount");
}
/**
* @private
*/
public function set requestedMinColumnCount(value:int):void
{
setGridProperty("requestedMinColumnCount", value);
}
//----------------------------------
// resizableColumns (delegates to grid.resizableColumns)
//----------------------------------
[Bindable("resizableColumnsChanged")]
[Inspectable(category="General", defaultValue="true")]
/**
* @copy spark.components.Grid#resizableColumns
*
* @default true
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get resizableColumns():Boolean
{
return getGridProperty("resizableColumns");
}
/**
* @private
*/
public function set resizableColumns(value:Boolean):void
{
if (setGridProperty("resizableColumns", value))
dispatchChangeEvent("resizableColumnsChanged");
}
//----------------------------------
// rowHeight (delegates to grid.rowHeight)
//----------------------------------
[Bindable("rowHeightChanged")]
[Inspectable(category="General", minValue="0.0")]
/**
* @copy spark.components.Grid#rowHeight
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get rowHeight():Number
{
return getGridProperty("rowHeight");
}
/**
* @private
*/
public function set rowHeight(value:Number):void
{
if (setGridProperty("rowHeight", value))
dispatchChangeEvent("rowHeightChanged");
}
//----------------------------------
// selectionMode (delegates to grid.selectionMode)
//----------------------------------
[Bindable("selectionModeChanged")]
[Inspectable(category="General", enumeration="none,singleRow,multipleRows,singleCell,multipleCells", defaultValue="singleRow")]
/**
* @copy spark.components.Grid#selectionMode
*
* @default GridSelectionMode.SINGLE_ROW
*
* @see spark.components.gridClasses.GridSelectionMode
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get selectionMode():String
{
if (grid)
return grid.selectionMode;
else
return gridSelection.selectionMode;
}
/**
* @private
*/
public function set selectionMode(value:String):void
{
if (selectionMode == value)
return;
if (grid)
grid.selectionMode = value;
else
gridSelection.selectionMode = value;
// Show the caret if we have focus and not in grid selection mode of "none".
if (grid)
grid.showCaret = (value != GridSelectionMode.NONE) && (this == getFocus()) && (internalFocusOwner == GRID_FOCUS_OWNER);
dispatchChangeEvent("selectionModeChanged");
}
/**
* @private
*/
mx_internal function isRowSelectionMode():Boolean
{
const mode:String = selectionMode;
return mode == GridSelectionMode.SINGLE_ROW || mode == GridSelectionMode.MULTIPLE_ROWS;
}
/**
* @private
*/
mx_internal function isCellSelectionMode():Boolean
{
const mode:String = selectionMode;
return mode == GridSelectionMode.SINGLE_CELL || mode == GridSelectionMode.MULTIPLE_CELLS;
}
//----------------------------------
// showDataTips
//----------------------------------
[Bindable("showDataTipsChanged")]
[Inspectable(category="Data", defaultValue="false")]
/**
* @copy spark.components.Grid#showDataTips
*
* @default false
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get showDataTips():Boolean
{
return getGridProperty("showDataTips");
}
/**
* @private
*/
public function set showDataTips(value:Boolean):void
{
if (setGridProperty("showDataTips", value))
dispatchChangeEvent("showDataTipsChanged");
}
//----------------------------------
// sortableColumns
//----------------------------------
private var _sortableColumns:Boolean = true;
[Bindable("sortableColumnsChanged")]
[Inspectable(category="General", defaultValue="true")]
/**
* Specifies whether the user can interactively sort columns.
* If <code>true</code>, the user can sort the data provider by the
* data field of a column by clicking on the column's header.
* If <code>true</code>, an individual column can set its
* <code>sortable</code> property to <code>false</code> to
* prevent the user from sorting by that column.
*
* @default true
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get sortableColumns():Boolean
{
return _sortableColumns;
}
/**
* @private
*/
public function set sortableColumns(value:Boolean):void
{
if (_sortableColumns == value)
return;
_sortableColumns = value;
dispatchChangeEvent("sortableColumnsChanged");
}
//----------------------------------
// typicalItem (delegates to grid.typicalItem)
//----------------------------------
[Bindable("typicalItemChanged")]
[Inspectable(category="Data")]
/**
* @copy spark.components.Grid#typicalItem
*
* @default null
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get typicalItem():Object
{
return getGridProperty("typicalItem");
}
/**
* @private
*/
public function set typicalItem(value:Object):void
{
if (setGridProperty("typicalItem", value))
dispatchChangeEvent("typicalItemChanged");
}
/**
* @copy spark.components.Grid#invalidateTypicalItem()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 1.5
* @productversion Flex 4.5
*/
public function invalidateTypicalItem():void
{
if (grid)
grid.invalidateTypicalItemRenderer();
}
//----------------------------------
// variableRowHeight (delegates to grid.variableRowHeight)
//----------------------------------
[Bindable("variableRowHeightChanged")]
[Inspectable(category="General", defaultValue="false")]
/**
* @copy spark.components.Grid#variableRowHeight
*
* @default false
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get variableRowHeight():Boolean
{
return getGridProperty("variableRowHeight");
}
/**
* @private
*/
public function set variableRowHeight(value:Boolean):void
{
if (setGridProperty("variableRowHeight", value))
dispatchChangeEvent("variableRowHeightChanged");
}
//--------------------------------------------------------------------------
//
// Drag and Drop Properties
//
//--------------------------------------------------------------------------
//----------------------------------
// dragEnabled
//----------------------------------
/**
* @private
* Storage for the dragEnabled property.
*/
private var _dragEnabled:Boolean = false;
[Inspectable(defaultValue="false")]
/**
* A flag that indicates whether you can drag items out of
* this control and drop them on other controls.
* If <code>true</code>, dragging is enabled for the control.
* If the <code>dropEnabled</code> property is also <code>true</code>,
* you can drag items and drop them within this control
* to reorder the items.
*
* <p>Drag and drop is not supported on mobile devices where
* <code>interactionMode</code> is set to <code>touch</code>.</p>
*
* @default false
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
public function get dragEnabled():Boolean
{
return _dragEnabled;
}
/**
* @private
*/
public function set dragEnabled(value:Boolean):void
{
if (value == _dragEnabled)
return;
_dragEnabled = value;
if (_dragEnabled)
{
addEventListener(DragEvent.DRAG_START, dragStartHandler, false, EventPriority.DEFAULT_HANDLER);
addEventListener(DragEvent.DRAG_COMPLETE, dragCompleteHandler, false, EventPriority.DEFAULT_HANDLER);
}
else
{
removeEventListener(DragEvent.DRAG_START, dragStartHandler, false);
removeEventListener(DragEvent.DRAG_COMPLETE, dragCompleteHandler, false);
}
}
//----------------------------------
// dragMoveEnabled
//----------------------------------
/**
* @private
* Storage for the dragMoveEnabled property.
*/
private var _dragMoveEnabled:Boolean = false;
[Inspectable(defaultValue="false")]
/**
* A flag that indicates whether items can be moved instead
* of just copied from the control as part of a drag-and-drop
* operation.
* If <code>true</code>, and the <code>dragEnabled</code> property
* is <code>true</code>, items can be moved.
* Often the data provider cannot or should not have items removed
* from it, so a MOVE operation should not be allowed during
* drag-and-drop.
*
* <p>Drag and drop is not supported on mobile devices where
* <code>interactionMode</code> is set to <code>touch</code>.</p>
*
* @default false
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
public function get dragMoveEnabled():Boolean
{
return _dragMoveEnabled;
}
/**
* @private
*/
public function set dragMoveEnabled(value:Boolean):void
{
_dragMoveEnabled = value;
}
//----------------------------------
// dropEnabled
//----------------------------------
/**
* @private
* Storage for the <code>dropEnabled</code> property.
*/
private var _dropEnabled:Boolean = false;
[Inspectable(defaultValue="false")]
/**
* A flag that indicates whether dragged items can be dropped onto the
* control.
*
* <p>If you set this property to <code>true</code>,
* the control accepts all data formats, and assumes that
* the dragged data matches the format of the data in the data provider.
* If you want to explicitly check the data format of the data
* being dragged, you must handle one or more of the drag events,
* such as <code>dragEnter</code> and <code>dragOver</code>,
* and call the DragEvent's <code>preventDefault()</code> method
* to customize the way the list class accepts dropped data.</p>
*
* <p>When you set <code>dropEnabled</code> to <code>true</code>,
* Flex automatically calls the <code>showDropFeedback()</code>
* and <code>hideDropFeedback()</code> methods to display the drop
* indicator.</p>
*
* <p>Drag and drop is not supported on mobile devices where
* <code>interactionMode</code> is set to <code>touch</code>.</p>
*
* @default false
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
public function get dropEnabled():Boolean
{
return _dropEnabled;
}
/**
* @private
*/
public function set dropEnabled(value:Boolean):void
{
if (value == _dropEnabled)
return;
_dropEnabled = value;
if (_dropEnabled)
{
addEventListener(DragEvent.DRAG_ENTER, dragEnterHandler, false, EventPriority.DEFAULT_HANDLER);
addEventListener(DragEvent.DRAG_EXIT, dragExitHandler, false, EventPriority.DEFAULT_HANDLER);
addEventListener(DragEvent.DRAG_OVER, dragOverHandler, false, EventPriority.DEFAULT_HANDLER);
addEventListener(DragEvent.DRAG_DROP, dragDropHandler, false, EventPriority.DEFAULT_HANDLER);
}
else
{
removeEventListener(DragEvent.DRAG_ENTER, dragEnterHandler, false);
removeEventListener(DragEvent.DRAG_EXIT, dragExitHandler, false);
removeEventListener(DragEvent.DRAG_OVER, dragOverHandler, false);
removeEventListener(DragEvent.DRAG_DROP, dragDropHandler, false);
}
}
//--------------------------------------------------------------------------
//
// Overridden methods
//
//--------------------------------------------------------------------------
/**
* @private
* This component holds the focus and accessibilityImplementation (DataGridAccImpl)
* for the DataGrid to enable accessibility when the focus shifts to DataGrid descendants,
* notably item editors.
*
* DataGridAccImpl/createAccessibilityImplementation() initializes the focusOwner's
* accessibilityImplementation, rather than the DataGrid's, so that the MSAA
* representation of descendant components will not be "obscured" by DataGridAccImpl.
*
* @see #createChildren(), #setFocus(), #isOurFocus().
*/
mx_internal var focusOwner:UIComponent;
/**
* @private
* The accessibility implementation depends on the focusOwner's bounds, as in
* DisplayObject.getBounds(), which is defined by the bounds of what has been drawn,
* not the focusOwner's width and height properties.
*/
private var focusOwnerWidth:Number = 1;
private var focusOwnerHeight:Number = 1;
/**
* @private
* Create the focusOwner - a component that holds the keyboard focus for the DataGrid
* for the sake of the accessibility implementation.
*
* This component fails to add its DataGridAccImpl accessibilityImplementation to
* the MSAA if it doesn't render, so we draw one alpha=0.0 pixel here and make it
* $visible=true.
*/
override protected function createChildren():void
{
super.createChildren();
focusOwner = new UIComponent();
const g:Graphics = focusOwner.graphics;
g.clear();
g.lineStyle(0, 0x000000, 0);
g.drawRect(0, 0, focusOwnerWidth, focusOwnerHeight);
$addChild(focusOwner);
focusOwner.tabEnabled = true;
focusOwner.tabIndex = tabIndex;
focusOwner.$visible = true;
}
/**
* @private
* Ensure that IDataGridElements are laid out after the grid skin part.
* At the moment, DataGrid has only one IDataGridElement, columnHeaderGroup.
*
* The DataGrid columnHeaderGroup's layout role is unusual, since it depends on
* the layout of the grid skin part.
* The columnHeaderGroup's column widths, scroll position, and list of visible columns
* are defined by the grid.
* That means that the grid needs to compute its layout first.
*
* The Flex LayoutManager orders the per-element work in each of its phases according
* to the element's nestLevel. The measure() (validateSize) phase is "bottom up"
* with respect to the nestLevel, which means that the deepest nodes in the tree with the
* highest nestLevel are measured first.
* Similarly the updateDisplayList() (validateDisplayList) phase is "top down" where the nodes
* with the lowest nestLevel are validated first.
* To guarantee that the columnHeaderGroup skin part is laid out after the grid skin part,
* we need to ensure that its nestLevel is greater than the grid's nestLevel.
*
* As the DataGrid's skin defines the grid and columnHeaderGroup skin parts, there is no
* way for the DataGrid component to constrain their relative locations in the visual element
* hierarchy.
* However, all ILayoutManagerClients have a nestLevel property, which specifies the element's
* depth relative to its SystemManager root.
* Thus, we can overcome the limitation by initializing the columnHeaderGroup's nestLevel
* to be grid.nestLevel+1, which ensures that the columnHeaderGroup will be validated after
* the grid.
*/
override public function set nestLevel(value:int):void
{
super.nestLevel = value;
if (grid)
initializeDataGridElement(columnHeaderGroup);
}
/**
* @private
* Ensure that the DataGrid appears in the correct tab order, despite the fact that its
* focusOwner gets the focus.
*/
override public function set tabIndex(index:int):void
{
super.tabIndex = index;
if (focusOwner)
focusOwner.tabIndex = index;
}
/**
* @private
* Sync the focusOwner's copy of this value because the we can't cover this case in
* DataGridAccImpl/get_accDescription(childID). Currently get_accDescription() is never
* called with childID=0.
*/
override public function set accessibilityDescription(value:String):void
{
super.accessibilityDescription = value;
if (focusOwner)
focusOwner.accessibilityDescription = value;
}
/**
* @private
* Sync the focusOwner's copy of this value because the we can't cover this case in
* DataGridAccImpl/get_accShortcut(childID). Currently get_accShortcut() is never
* called with childID=0.
*/
override public function set accessibilityShortcut(value:String):void
{
super.accessibilityShortcut = value;
if (focusOwner)
focusOwner.accessibilityShortcut = value;
}
/**
* @private
*/
override protected function initializeAccessibility():void
{
if (DataGrid.createAccessibilityImplementation != null)
DataGrid.createAccessibilityImplementation(this);
}
/**
* @private
* Override to set proper width and height on focusOwner object that
* the DataGridAccImpl uses to compute the location of the DataGrid.
*/
override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
{
super.updateDisplayList(unscaledWidth, unscaledHeight);
if (focusOwner && ((focusOwnerWidth != unscaledWidth) || (focusOwnerHeight != unscaledHeight)))
{
focusOwnerWidth = unscaledWidth;
focusOwnerHeight = unscaledHeight;
const g:Graphics = focusOwner.graphics;
g.clear();
g.lineStyle(0, 0x000000, 0);
g.drawRect(0, 0, focusOwnerWidth, focusOwnerHeight);
}
}
/**
* @private
*/
override public function setFocus():void
{
if (grid)
focusOwner.setFocus();
}
/**
* @private
*/
override protected function isOurFocus(target:DisplayObject):Boolean
{
return (target == focusOwner) || super.isOurFocus(target);
}
/**
* @private
*/
override public function styleChanged(styleName:String):void
{
super.styleChanged(styleName);
const allStyles:Boolean = (styleName == null || styleName == "styleName");
if (grid)
{
if (allStyles || styleManager.isSizeInvalidatingStyle(styleName))
{
if (grid)
{
grid.invalidateSize();
grid.clearGridLayoutCache(true);
}
if (columnHeaderGroup)
{
columnHeaderGroup.layout.clearVirtualLayoutCache();
columnHeaderGroup.invalidateSize();
}
}
if (allStyles || (styleName == "alternatingRowColors"))
{
initializeGridRowBackground();
if (grid && grid.layout)
grid.layout.clearVirtualLayoutCache();
}
if (grid)
grid.invalidateDisplayList();
if (columnHeaderGroup)
columnHeaderGroup.invalidateDisplayList();
}
if (scroller)
{
// The scrollPolicy styles are initialized in framework/defaults.css
// so there's no way to determine if been explicitly set here. To avoid
// preempting explicitly set scroller scrollPolicy styles with the default
// "auto" value, we only forward the style if it's not "auto".
const vsp:String = getStyle("verticalScrollPolicy");
if (styleName == "verticalScrollPolicy")
scroller.setStyle("verticalScrollPolicy", vsp);
else if (allStyles && vsp && (vsp !== ScrollPolicy.AUTO))
scroller.setStyle("verticalScrollPolicy", vsp);
const hsp:String = getStyle("horizontalScrollPolicy");
if (styleName == "horizontalScrollPolicy")
scroller.setStyle("horizontalScrollPolicy", hsp);
else if (allStyles && hsp && (hsp !== ScrollPolicy.AUTO))
scroller.setStyle("horizontalScrollPolicy", hsp);
}
}
/**
* @private
* Used to prevent keyboard events that have been redispatched to the Scroller from being
* redispatched a second time when they bubble back up.
*/
private var scrollerEvent:KeyboardEvent = null;
/**
* @private
* Build in basic keyboard navigation support in Grid. The focus is on
* the DataGrid which means the Scroller doesn't see the Keyboard events
* unless the event is dispatched to it.
*/
override protected function keyDownHandler(event:KeyboardEvent):void
{
if (!grid || event.isDefaultPrevented())
return;
// We've seen this event already and dispatched it to the Scroller
if (event == scrollerEvent)
{
scrollerEvent = null;
event.preventDefault();
return;
}
// If the key wasn't targeted to us, then ignore it.
if (!isOurFocus(DisplayObject(event.target)))
return;
// Ctrl-A only comes thru on Mac. On Windows it is a SELECT_ALL
// event.
if (event.keyCode == Keyboard.A && event.ctrlKey)
{
selectAllFromKeyboard();
event.preventDefault();
return;
}
// Row selection requires valid row caret, cell selection
// requires both a valid row and a valid column caret.
if (selectionMode == GridSelectionMode.NONE ||
grid.caretRowIndex < 0 ||
grid.caretRowIndex >= dataProviderLength ||
(isCellSelectionMode() &&
(grid.caretColumnIndex < 0 || grid.caretColumnIndex >= columnsLength)))
{
// We're not going to handle this event, so give the scroller a chance.
if (scroller && (scrollerEvent != event))
{
scrollerEvent = event.clone() as KeyboardEvent;
scroller.dispatchEvent(scrollerEvent);
}
return;
}
switch (internalFocusOwner)
{
case GRID_FOCUS_OWNER: handleGridKeyEvent(event); break;
case HEADER_FOCUS_OWNER: handleHeaderKeyEvent(event); break;
}
}
/**
* @private
* Handle KeyboardEvents when the internalFocusOwner is the grid.
*/
private function handleGridKeyEvent(event:KeyboardEvent):void
{
var op:String;
if (event.keyCode == Keyboard.SPACE)
{
if (event.ctrlKey)
{
// Updates the selection. The caret remains the same and the
// anchor is updated.
if (toggleSelection(grid.caretRowIndex, grid.caretColumnIndex))
{
grid.anchorRowIndex = grid.caretRowIndex;
grid.anchorColumnIndex = grid.caretColumnIndex;
event.preventDefault();
}
}
else if (event.shiftKey)
{
// Extend the selection. The caret remains the same.
if (extendSelection(grid.caretRowIndex, grid.caretColumnIndex))
event.preventDefault();
}
else
{
if (grid.caretRowIndex != -1)
{
if (isRowSelectionMode())
{
op = selectionMode == GridSelectionMode.SINGLE_ROW ?
GridSelectionEventKind.SET_ROW :
GridSelectionEventKind.ADD_ROW;
// Add the row and leave the caret position unchanged.
if (!commitInteractiveSelection(
op, grid.caretRowIndex, grid.caretColumnIndex))
{
return;
}
event.preventDefault();
}
else if (isCellSelectionMode() && grid.caretColumnIndex != -1)
{
op = selectionMode == GridSelectionMode.SINGLE_CELL ?
GridSelectionEventKind.SET_CELL :
GridSelectionEventKind.ADD_CELL;
// Add the cell and leave the caret position unchanged.
if (!commitInteractiveSelection(
op, grid.caretRowIndex, grid.caretColumnIndex))
{
return;
}
event.preventDefault();
}
}
}
return;
}
// Was some other navigation key hit?
adjustSelectionUponNavigation(event);
}
/**
* @private
* Handle KeyboardEvents when the internalFocusOwner is the header.
*/
private function handleHeaderKeyEvent(event:KeyboardEvent):void
{
if (!columnHeaderGroup)
return;
const selectedIndex:int = columnHeaderGroup.selectedColumnIndex;
if (selectedIndex == -1)
return;
if ((event.keyCode == Keyboard.SPACE) || (event.keyCode == Keyboard.ENTER))
{
const column:GridColumn = getColumnAt(selectedIndex);
const isMultiColumnSort:Boolean = event.ctrlKey;
interactiveSortByColumns(column, isMultiColumnSort);
if (!isMultiColumnSort && grid)
internalFocusOwner = GRID_FOCUS_OWNER;
return;
}
if (!NavigationUnit.isNavigationUnit(event.keyCode))
return;
// swap Keyboard.LEFT and Keyboard.RIGHT for RTL layout
const navigationUnit:uint = mapKeycodeForLayoutDirection(event);
const firstVisibleColumnIndex:int = grid.getNextVisibleColumnIndex(-1);
const lastVisibleColumnIndex:int = grid.getPreviousVisibleColumnIndex(columns.length);
var newSelectedIndex:int = selectedIndex;
switch (navigationUnit)
{
case NavigationUnit.HOME:
{
newSelectedIndex = firstVisibleColumnIndex;
break;
}
case NavigationUnit.END:
{
newSelectedIndex = lastVisibleColumnIndex;
break;
}
case NavigationUnit.LEFT:
{
if (event.ctrlKey && !event.shiftKey)
{
moveColumnPosition(selectedIndex, -1);
}
else if (event.ctrlKey && event.shiftKey)
{
changeColumnWidth(selectedIndex, -3);
}
else
{
if (selectedIndex <= firstVisibleColumnIndex)
newSelectedIndex = firstVisibleColumnIndex;
else
newSelectedIndex = grid.getPreviousVisibleColumnIndex(selectedIndex);
}
break;
}
case NavigationUnit.RIGHT:
{
if (event.ctrlKey && !event.shiftKey)
{
moveColumnPosition(selectedIndex, +1);
}
else if (event.ctrlKey && event.shiftKey)
{
changeColumnWidth(selectedIndex, +3);
}
else
{
if (selectedIndex >= lastVisibleColumnIndex)
newSelectedIndex = lastVisibleColumnIndex;
else
newSelectedIndex = grid.getNextVisibleColumnIndex(selectedIndex);
}
break;
}
}
if (newSelectedIndex != selectedIndex)
{
columnHeaderGroup.selectedColumnIndex = newSelectedIndex;
ensureCellIsVisible(-1, newSelectedIndex);
}
}
/**
* @private
* Change the specified column's position by delta, where delta is either +1 or -1.
*/
private function moveColumnPosition(columnIndex:int, delta:int):void
{
const column:GridColumn = getColumnAt(columnIndex);
if (!column)
return;
var newColumnIndex:int = -1;
if (delta == +1)
newColumnIndex = grid.getNextVisibleColumnIndex(columnIndex);
else if (delta == -1)
newColumnIndex = grid.getPreviousVisibleColumnIndex(columnIndex);
if (newColumnIndex != -1)
{
columns.removeItemAt(columnIndex);
columns.addItemAt(column, newColumnIndex);
columnHeaderGroup.selectedColumnIndex = newColumnIndex;
grid.ensureCellIsVisible(-1, newColumnIndex);
}
}
/**
* @private
* Change the specified column's width by delta.
*/
private function changeColumnWidth(columnIndex:int, delta:Number):void
{
const column:GridColumn = getColumnAt(columnIndex);
if (!column)
return;
var columnWidth:Number = column.width;
if (isNaN(columnWidth))
columnWidth = grid.getColumnWidth(columnIndex);
columnWidth = Math.max(1, columnWidth + delta);
if (!isNaN(column.maxWidth))
columnWidth = Math.min(columnWidth, column.maxWidth);
if (!isNaN(column.minWidth))
columnWidth = Math.max(columnWidth, column.minWidth);
column.width = columnWidth;
}
/**
* @private
* If the focusManager is trying to tab forwards from the DataGrid and the internalFocusOwner is
* currently the grid, then switch the internal focus to the header and cancel the focusManager's
* event. Similarly, if the focusManager is trying to tab backwards (shift-tab) and the internal
* focus is currently on the header, then set the internal focus to the grid and cancel the event.
*/
protected function keyFocusChangeHandler(event:FocusEvent):void
{
if (event.isDefaultPrevented())
return;
// In an edit session. Don't let the TAB switch the internal focus.
if (editor && editor.editorRowIndex != -1 && editor.editorColumnIndex != -1)
return;
if ((internalFocusOwner == GRID_FOCUS_OWNER) && !event.shiftKey && columnHeaderGroup)
{
internalFocusOwner = HEADER_FOCUS_OWNER;
event.preventDefault();
}
else if ((internalFocusOwner == HEADER_FOCUS_OWNER) && event.shiftKey && grid)
{
internalFocusOwner = GRID_FOCUS_OWNER;
event.preventDefault();
}
else
{
internalFocusOwner = (internalFocusOwner == GRID_FOCUS_OWNER) ? HEADER_FOCUS_OWNER : GRID_FOCUS_OWNER;
// If there's another focusable component, we will lose the focus here
}
}
/**
* @private
* New event in FP10 dispatched when the user activates the platform
* specific accelerator key combination for a select all operation.
* On Windows this is ctrl-A and on Mac this is cmd-A.
*/
protected function selectAllHandler(event:Event):void
{
// If the select all was not targeted to the DataGrid, then ignore it.
if (!grid || event.isDefaultPrevented() ||
!isOurFocus(DisplayObject(event.target)))
{
return;
}
selectAllFromKeyboard();
}
/**
* @private
*/
private function selectAllFromKeyboard():void
{
// If there is a caret, leave it in its current position.
if (selectionMode == GridSelectionMode.MULTIPLE_CELLS ||
selectionMode == GridSelectionMode.MULTIPLE_ROWS)
{
if (commitInteractiveSelection(
GridSelectionEventKind.SELECT_ALL,
0, 0, dataProvider.length, columns.length))
{
grid.anchorRowIndex = 0;
grid.anchorColumnIndex = 0;
}
}
}
/**
* @private
* Call partAdded() for IFactory type skin parts. By default, partAdded() is not
* called for IFactory type skin part variables, because they're assumed to be
* "dynamic" skin parts, to be created with createDynamicPartInstance(). That's
* not the case with the IFactory valued parts listed in factorySkinPartNames.
*/
override protected function findSkinParts():void
{
super.findSkinParts();
for each (var partName:String in factorySkinPartNames)
{
if ((partName in skin) && skin[partName])
partAdded(partName, skin[partName]);
}
}
/**
* @private
*/
private function initializeDataGridElement(elt:IDataGridElement):void
{
if (!elt)
return;
elt.dataGrid = this;
if (elt.nestLevel <= grid.nestLevel)
elt.nestLevel = grid.nestLevel + 1;
}
/**
* @private
*/
override protected function partAdded(partName:String, instance:Object):void
{
super.partAdded(partName, instance);
if (instance == grid)
{
// Basic Initialization
gridSelection.grid = grid;
grid.gridSelection = gridSelection;
grid.dataGrid = this;
// Grid cover Properties
const modifiedGridProperties:Object = gridProperties; // explicitly set properties
gridProperties = {propertyBits:0};
for (var propertyName:String in modifiedGridProperties)
{
if (propertyName == "propertyBits")
continue;
setGridProperty(propertyName, modifiedGridProperties[propertyName]);
}
// IFactory valued skin parts => Grid visual element properties
initializeGridRowBackground(); // sets grid.rowBackground if alternatingRowColors set
grid.columnSeparator = columnSeparator;
grid.rowSeparator = rowSeparator;
grid.hoverIndicator = hoverIndicator;
grid.caretIndicator = caretIndicator;
grid.selectionIndicator = selectionIndicator;
grid.lockedColumnsSeparator = lockedColumnsSeparator;
grid.lockedRowsSeparator = lockedRowsSeparator;
// Event Handlers
grid.addEventListener(GridEvent.GRID_MOUSE_DOWN, grid_mouseDownHandler, false, EventPriority.DEFAULT_HANDLER);
grid.addEventListener(GridEvent.GRID_MOUSE_UP, grid_mouseUpHandler, false, EventPriority.DEFAULT_HANDLER);
grid.addEventListener(GridEvent.GRID_ROLL_OVER, grid_rollOverHandler, false, EventPriority.DEFAULT_HANDLER);
grid.addEventListener(GridEvent.GRID_ROLL_OUT, grid_rollOutHandler, false, EventPriority.DEFAULT_HANDLER);
grid.addEventListener(GridCaretEvent.CARET_CHANGE, grid_caretChangeHandler);
grid.addEventListener(FlexEvent.VALUE_COMMIT, grid_valueCommitHandler);
grid.addEventListener("invalidateSize", grid_invalidateSizeHandler);
grid.addEventListener("invalidateDisplayList", grid_invalidateDisplayListHandler);
grid.addEventListener("gridViewsChanged", grid_gridViewsChangedHandler);
// Deferred operations (grid selection updates)
for each (var deferredGridOperation:Function in deferredGridOperations)
deferredGridOperation(grid);
deferredGridOperations.length = 0;
// IDataGridElements: columnHeaderGroup...
initializeDataGridElement(columnHeaderGroup);
// Create the data grid editor
editor = createEditor();
editor.initialize();
}
if (instance == alternatingRowColorsBackground)
initializeGridRowBackground();
if (grid)
{
if (instance == columnSeparator)
grid.columnSeparator = columnSeparator;
if (instance == rowSeparator)
grid.rowSeparator = rowSeparator;
if (instance == lockedColumnsSeparator)
grid.lockedColumnsSeparator = lockedColumnsSeparator;
if (instance == lockedRowsSeparator)
grid.lockedRowsSeparator = lockedRowsSeparator;
if (instance == hoverIndicator)
grid.hoverIndicator = hoverIndicator;
if (instance == caretIndicator)
{
grid.caretIndicator = caretIndicator;
// Add a focus listener so we can turn the caret on and off
// when we get and lose focus.
addEventListener(FocusEvent.FOCUS_IN, dataGrid_focusHandler);
addEventListener(FocusEvent.FOCUS_OUT, dataGrid_focusHandler);
if (grid)
grid.showCaret = false;
}
if (instance == rowBackground)
grid.rowBackground = rowBackground;
if (instance == selectionIndicator)
grid.selectionIndicator = selectionIndicator;
}
if (instance == columnHeaderGroup)
{
if (grid)
initializeDataGridElement(columnHeaderGroup);
columnHeaderGroup.addEventListener(GridEvent.GRID_CLICK, columnHeaderGroup_clickHandler);
columnHeaderGroup.addEventListener(GridEvent.GRID_ROLL_OVER, columnHeaderGroup_rollOverHandler);
columnHeaderGroup.addEventListener(GridEvent.GRID_ROLL_OUT, columnHeaderGroup_rollOutHandler);
columnHeaderGroup.addEventListener(GridEvent.SEPARATOR_ROLL_OVER, separator_rollOverHandler);
columnHeaderGroup.addEventListener(GridEvent.SEPARATOR_ROLL_OUT, separator_rollOutHandler);
columnHeaderGroup.addEventListener(GridEvent.SEPARATOR_MOUSE_DOWN, separator_mouseDownHandler);
columnHeaderGroup.addEventListener(GridEvent.SEPARATOR_MOUSE_DRAG, separator_mouseDragHandler);
columnHeaderGroup.addEventListener(GridEvent.SEPARATOR_MOUSE_UP, separator_mouseUpHandler);
}
if (instance == scroller)
{
// The scrollPolicy styles are initialized in framework/defaults.css
// so there's no way to determine if been explicitly set here. To avoid
// preempting explicitly set scroller scrollPolicy styles with the default
// "auto" value, we only forward the style if it's not "auto".
const vsp:String = getStyle("verticalScrollPolicy");
if (vsp && (vsp !== ScrollPolicy.AUTO))
scroller.setStyle("verticalScrollPolicy", vsp);
const hsp:String = getStyle("horizontalScrollPolicy");
if (hsp && (hsp !== ScrollPolicy.AUTO))
scroller.setStyle("horizontalScrollPolicy", hsp);
}
}
/**
* @private
*/
override protected function partRemoved(partName:String, instance:Object):void
{
super.partRemoved(partName, instance);
if (instance == grid)
{
// Basic Initialization
gridSelection.grid = null;
grid.gridSelection = null;
grid.dataGrid = null;
// Event Handlers
grid.removeEventListener("gridViewsChanged", grid_gridViewsChangedHandler);
grid.removeEventListener("invalidateSize", grid_invalidateSizeHandler);
grid.removeEventListener("invalidateDisplayList", grid_invalidateDisplayListHandler);
grid.removeEventListener(GridEvent.GRID_MOUSE_DOWN, grid_mouseDownHandler);
grid.removeEventListener(GridEvent.GRID_MOUSE_UP, grid_mouseUpHandler);
grid.removeEventListener(GridEvent.GRID_ROLL_OVER, grid_rollOverHandler);
grid.removeEventListener(GridEvent.GRID_ROLL_OUT, grid_rollOutHandler);
grid.removeEventListener(GridCaretEvent.CARET_CHANGE, grid_caretChangeHandler);
grid.removeEventListener(FlexEvent.VALUE_COMMIT, grid_valueCommitHandler);
// Cover Properties
const gridPropertyBits:uint = gridProperties.propertyBits;
gridProperties = {};
for (var propertyName:String in gridPropertyDefaults)
{
var propertyBit:uint = partPropertyBits[propertyName];
if ((propertyBit & gridPropertyBits) == propertyBit)
gridProperties[propertyName] = getGridProperty(propertyName);
}
// Visual Elements
grid.rowBackground = null;
grid.columnSeparator = null;
grid.rowSeparator = null;
grid.hoverIndicator = null;
grid.caretIndicator = null;
grid.selectionIndicator = null;
// IDataGridElements: grid, columnHeaderGroup
if (columnHeaderGroup)
columnHeaderGroup.dataGrid = null;
// Data grid editor
if (editor)
{
editor.uninitialize();
editor = null;
}
if (internalFocusOwner == GRID_FOCUS_OWNER)
internalFocusOwner = NO_FOCUS_OWNER;
}
if (grid)
{
if (instance == columnSeparator)
grid.columnSeparator = null;
if (instance == rowSeparator)
grid.rowSeparator = null;
if (instance == lockedColumnsSeparator)
grid.lockedColumnsSeparator = null;
if (instance == lockedRowsSeparator)
grid.lockedRowsSeparator = null;
if (instance == hoverIndicator)
grid.hoverIndicator = null;
if (instance == caretIndicator)
{
grid.caretIndicator = null;
removeEventListener(FocusEvent.FOCUS_IN, dataGrid_focusHandler);
removeEventListener(FocusEvent.FOCUS_OUT, dataGrid_focusHandler);
}
if (instance == selectionIndicator)
grid.selectionIndicator = null;
if (instance == rowBackground)
grid.rowBackground = null;
}
if (instance == columnHeaderGroup)
{
columnHeaderGroup.dataGrid = null;
columnHeaderGroup.removeEventListener(GridEvent.GRID_CLICK, columnHeaderGroup_clickHandler);
columnHeaderGroup.removeEventListener(GridEvent.GRID_ROLL_OVER, columnHeaderGroup_rollOverHandler);
columnHeaderGroup.removeEventListener(GridEvent.GRID_ROLL_OUT, columnHeaderGroup_rollOutHandler);
columnHeaderGroup.removeEventListener(GridEvent.SEPARATOR_ROLL_OVER, separator_rollOverHandler);
columnHeaderGroup.removeEventListener(GridEvent.SEPARATOR_ROLL_OUT, separator_rollOutHandler);
columnHeaderGroup.removeEventListener(GridEvent.SEPARATOR_MOUSE_DOWN, separator_mouseDownHandler);
columnHeaderGroup.removeEventListener(GridEvent.SEPARATOR_MOUSE_DRAG, separator_mouseDragHandler);
columnHeaderGroup.removeEventListener(GridEvent.SEPARATOR_MOUSE_UP, separator_mouseUpHandler);
if (internalFocusOwner == HEADER_FOCUS_OWNER)
internalFocusOwner = NO_FOCUS_OWNER;
}
}
//----------------------------------
// selectedCell
//----------------------------------
[Bindable("selectionChange")]
[Bindable("valueCommit")]
/**
* @copy spark.components.Grid#selectedCell
*
* @default null
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get selectedCell():CellPosition
{
if (grid)
return grid.selectedCell;
return selectedCells.length ? selectedCells[0] : null;
}
/**
* @private
*/
public function set selectedCell(value:CellPosition):void
{
if (grid)
grid.selectedCell = value;
else
{
const valueCopy:CellPosition = (value) ? new CellPosition(value.rowIndex, value.columnIndex) : null;
var f:Function = function(g:Grid):void
{
g.selectedCell = valueCopy;
}
deferredGridOperations.push(f);
}
}
//----------------------------------
// selectedCells
//----------------------------------
[Bindable("selectionChange")]
[Bindable("valueCommit")]
/**
* @copy spark.components.Grid#selectedCells
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get selectedCells():Vector.<CellPosition>
{
return grid ? grid.selectedCells : gridSelection.allCells();
}
/**
* @private
*/
public function set selectedCells(value:Vector.<CellPosition>):void
{
if (grid)
grid.selectedCells = value;
else
{
const valueCopy:Vector.<CellPosition> = (value) ? value.concat() : null;
var f:Function = function(g:Grid):void
{
g.selectedCells = valueCopy;
}
deferredGridOperations.push(f);
}
}
//----------------------------------
// selectedIndex
//----------------------------------
[Bindable("selectionChange")]
[Bindable("valueCommit")]
[Inspectable(category="General", defaultValue="-1")]
/**
* @copy spark.components.Grid#selectedIndex
*
* @default -1
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get selectedIndex():int
{
if (grid)
return grid.selectedIndex;
return (selectedIndices.length > 0) ? selectedIndices[0] : -1;
}
/**
* @private
*/
public function set selectedIndex(value:int):void
{
if (grid)
grid.selectedIndex = value;
else
{
var f:Function = function(g:Grid):void
{
g.selectedIndex = value;
}
deferredGridOperations.push(f);
}
}
//----------------------------------
// selectedIndices
//----------------------------------
[Bindable("selectionChange")]
[Bindable("valueCommit")]
[Inspectable(category="General")]
/**
* @copy spark.components.Grid#selectedIndices
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get selectedIndices():Vector.<int>
{
return grid ? grid.selectedIndices : gridSelection.allRows();
}
/**
* @private
*/
public function set selectedIndices(value:Vector.<int>):void
{
if (grid)
grid.selectedIndices = value;
else
{
const valueCopy:Vector.<int> = (value) ? value.concat() : null;
var f:Function = function(g:Grid):void
{
g.selectedIndices = valueCopy;
}
deferredGridOperations.push(f);
}
}
//----------------------------------
// selectedItem
//----------------------------------
[Bindable("selectionChange")]
[Bindable("valueCommit")]
[Inspectable(category="General", defaultValue="null")]
/**
* @copy spark.components.Grid#selectedItem
*
* @default null
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get selectedItem():Object
{
if (grid)
return grid.selectedItem;
return (dataProvider && (selectedIndex > 0)) ?
dataProvider.getItemAt(selectedIndex) : undefined;
}
/**
* @private
*/
public function set selectedItem(value:Object):void
{
if (grid)
grid.selectedItem = value;
else
{
var f:Function = function(g:Grid):void
{
g.selectedItem = value;
}
deferredGridOperations.push(f);
}
}
//----------------------------------
// selectedItems
//----------------------------------
[Bindable("selectionChange")]
[Bindable("valueCommit")]
[Inspectable(category="General")]
/**
* @copy spark.components.Grid#selectedItems
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get selectedItems():Vector.<Object>
{
if (grid)
return grid.selectedItems;
var items:Vector.<Object> = new Vector.<Object>();
for (var i:int = 0; i < selectedIndices.length; i++)
items.push(selectedIndices[i]);
return items;
}
/**
* @private
*/
public function set selectedItems(value:Vector.<Object>):void
{
if (grid)
grid.selectedItems = value;
else
{
const valueCopy:Vector.<Object> = value.concat();
var f:Function = function(g:Grid):void
{
g.selectedItems = valueCopy;
}
deferredGridOperations.push(f);
}
}
//----------------------------------
// selectionLength
//----------------------------------
[Bindable("selectionChange")]
[Bindable("valueCommit")]
/**
* @copy spark.components.Grid#selectionLength
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function get selectionLength():int
{
return grid ? grid.selectionLength : gridSelection.selectionLength;
}
//--------------------------------------------------------------------------
//
// Public Methods
//
//--------------------------------------------------------------------------
/**
* @copy spark.components.Grid#findRowIndex()
*
* @langversion 3.0
* @playerversion Flash 11.1
* @playerversion AIR 3.4
* @productversion Flex 4.10
*/
public function findRowIndex(field:String, value:String, startingIndex:int = 0, patternType:String = RegExPatterns.EXACT):int
{
if (grid)
{
return grid.findRowIndex(field, value, startingIndex, patternType);
}
else
{
return -1;
}
}
/**
* @copy spark.components.Grid#findRowIndices()
*
* @langversion 3.0
* @playerversion Flash 11.1
* @playerversion AIR 3.4
* @productversion Flex 4.10
*/
public function findRowIndices(field:String, values:Array, patternType:String = RegExPatterns.EXACT):Array
{
if (grid)
{
return grid.findRowIndices(field, values, patternType);
}
else
{
return [];
}
}
/**
* @copy spark.components.Grid#invalidateCell()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function invalidateCell(rowIndex:int, columnIndex:int):void
{
if (grid)
grid.invalidateCell(rowIndex, columnIndex);
}
/**
* @copy spark.components.Grid#moveIndexFindRow()
*
* @langversion 3.0
* @playerversion Flash 11.1
* @playerversion AIR 3.4
* @productversion Flex 4.10
*
*/
public function moveIndexFindRow(field:String, value:String, startingIndex:int = 0, patternType:String = RegExPatterns.EXACT):Boolean
{
if (grid)
{
return grid.moveIndexFindRow(field, value, startingIndex, patternType);
}
else
{
return false;
}
}
/**
* @copy spark.components.Grid#moveIndexFirstRow()
*
* @langversion 3.0
* @playerversion Flash 11.1
* @playerversion AIR 3.4
* @productversion Flex 4.10
*/
public function moveIndexFirstRow():void
{
if (grid)
{
grid.moveIndexFirstRow();
}
}
/**
* @copy spark.components.Grid#moveIndexLastRow()
*
* @langversion 3.0
* @playerversion Flash 11.1
* @playerversion AIR 3.4
* @productversion Flex 4.10
*/
public function moveIndexLastRow():void
{
if (grid)
{
grid.moveIndexLastRow();
}
}
/**
* @copy spark.components.Grid#moveIndexNextRow()
*
* @langversion 3.0
* @playerversion Flash 11.1
* @playerversion AIR 3.4
* @productversion Flex 4.10
*/
public function moveIndexNextRow():void
{
if (grid)
{
grid.moveIndexNextRow();
}
}
/**
* @copy spark.components.Grid#moveIndexPreviousRow()
*
* @langversion 3.0
* @playerversion Flash 11.1
* @playerversion AIR 3.4
* @productversion Flex 4.10
*/
public function moveIndexPreviousRow():void
{
if (grid)
{
grid.moveIndexPreviousRow();
}
}
/**
* @copy spark.components.Grid#selectAll()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function selectAll():Boolean
{
var selectionChanged:Boolean;
if (grid)
{
selectionChanged = grid.selectAll();
}
else
{
selectionChanged = gridSelection.selectAll();
if (selectionChanged)
dispatchFlexEvent(FlexEvent.VALUE_COMMIT);
}
return selectionChanged;
}
/**
* @copy spark.components.Grid#clearSelection()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function clearSelection():Boolean
{
var selectionChanged:Boolean;
if (grid)
{
selectionChanged = grid.clearSelection();
}
else
{
selectionChanged = gridSelection.removeAll();
if (selectionChanged)
dispatchFlexEvent(FlexEvent.VALUE_COMMIT);
}
return selectionChanged;
}
//----------------------------------
// selection for rows
//----------------------------------
/**
* @copy spark.components.Grid#selectionContainsIndex()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function selectionContainsIndex(rowIndex:int):Boolean
{
if (grid)
return grid.selectionContainsIndex(rowIndex);
else
return gridSelection.containsRow(rowIndex);
}
/**
* @copy spark.components.Grid#selectionContainsIndices()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function selectionContainsIndices(rowIndices:Vector.<int>):Boolean
{
if (grid)
return grid.selectionContainsIndices(rowIndices);
else
return gridSelection.containsRows(rowIndices);
}
/**
* @copy spark.components.Grid#setSelectedIndex()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function setSelectedIndex(rowIndex:int):Boolean
{
var selectionChanged:Boolean;
if (grid)
{
selectionChanged = grid.setSelectedIndex(rowIndex);
}
else
{
selectionChanged = gridSelection.setRow(rowIndex);
if (selectionChanged)
dispatchFlexEvent(FlexEvent.VALUE_COMMIT);
}
return selectionChanged;
}
/**
* @copy spark.components.Grid#addSelectedIndex()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function addSelectedIndex(rowIndex:int):Boolean
{
var selectionChanged:Boolean;
if (grid)
{
selectionChanged = grid.addSelectedIndex(rowIndex);
}
else
{
selectionChanged = gridSelection.addRow(rowIndex);
if (selectionChanged)
dispatchFlexEvent(FlexEvent.VALUE_COMMIT);
}
return selectionChanged;
}
/**
* @copy spark.components.Grid#removeSelectedIndex()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function removeSelectedIndex(rowIndex:int):Boolean
{
var selectionChanged:Boolean;
if (grid)
{
selectionChanged = grid.removeSelectedIndex(rowIndex);
}
else
{
selectionChanged = gridSelection.removeRow(rowIndex);
if (selectionChanged)
dispatchFlexEvent(FlexEvent.VALUE_COMMIT);
}
return selectionChanged;
}
/**
* @copy spark.components.Grid#selectIndices()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function selectIndices(rowIndex:int, rowCount:int):Boolean
{
var selectionChanged:Boolean;
if (grid)
{
selectionChanged = grid.selectIndices(rowIndex, rowCount);
}
else
{
selectionChanged = gridSelection.setRows(rowIndex, rowCount);
if (selectionChanged)
dispatchFlexEvent(FlexEvent.VALUE_COMMIT);
}
return selectionChanged;
}
//----------------------------------
// selection for cells
//----------------------------------
/**
* @copy spark.components.Grid#selectionContainsCell()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function selectionContainsCell(rowIndex:int, columnIndex:int):Boolean
{
if (grid)
return grid.selectionContainsCell(rowIndex, columnIndex);
else
return gridSelection.containsCell(rowIndex, columnIndex);
}
/**
* @copy spark.components.Grid#selectionContainsCellRegion()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function selectionContainsCellRegion(rowIndex:int, columnIndex:int,
rowCount:int, columnCount:int):Boolean
{
if (grid)
{
return grid.selectionContainsCellRegion(
rowIndex, columnIndex, rowCount, columnCount);
}
else
{
return gridSelection.containsCellRegion(
rowIndex, columnIndex, rowCount, columnCount);
}
}
/**
* @copy spark.components.Grid#setSelectedCell()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function setSelectedCell(rowIndex:int, columnIndex:int):Boolean
{
var selectionChanged:Boolean;
if (grid)
{
selectionChanged = grid.setSelectedCell(rowIndex, columnIndex);
}
else
{
selectionChanged = gridSelection.setCell(rowIndex, columnIndex);
if (selectionChanged)
dispatchFlexEvent(FlexEvent.VALUE_COMMIT);
}
return selectionChanged;
}
/**
* @copy spark.components.Grid#addSelectedCell()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function addSelectedCell(rowIndex:int, columnIndex:int):Boolean
{
var selectionChanged:Boolean;
if (grid)
{
selectionChanged = grid.addSelectedCell(rowIndex, columnIndex);
}
else
{
selectionChanged = gridSelection.addCell(rowIndex, columnIndex);
if (selectionChanged)
dispatchFlexEvent(FlexEvent.VALUE_COMMIT);
}
return selectionChanged;
}
/**
* @copy spark.components.Grid#removeSelectedCell()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function removeSelectedCell(rowIndex:int, columnIndex:int):Boolean
{
var selectionChanged:Boolean;
if (grid)
{
selectionChanged = grid.removeSelectedCell(rowIndex, columnIndex);
}
else
{
selectionChanged = gridSelection.removeCell(rowIndex, columnIndex);
if (selectionChanged)
dispatchFlexEvent(FlexEvent.VALUE_COMMIT);
}
return selectionChanged;
}
/**
* @copy spark.components.Grid#selectCellRegion()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function selectCellRegion(rowIndex:int, columnIndex:int,
rowCount:uint, columnCount:uint):Boolean
{
var selectionChanged:Boolean;
if (grid)
{
selectionChanged = grid.selectCellRegion(
rowIndex, columnIndex, rowCount, columnCount);
}
else
{
selectionChanged = gridSelection.setCellRegion(
rowIndex, columnIndex, rowCount, columnCount);
if (selectionChanged)
dispatchFlexEvent(FlexEvent.VALUE_COMMIT);
}
return selectionChanged;
}
/**
* In response to user input (mouse or keyboard) which changes the
* selection, this method dispatches the <code>selectionChanging</code> event.
* If the event is not canceled, it then commits the selection change, and then
* dispatches the <code>selectionChange</code> event.
* The caret location is not updated.
* To detect if the caret has changed, use the <code>caretChanged</code> event.
*
* @param selectionEventKind A constant defined by the GridSelectionEventKind class
* that specifies the selection that is being committed. If not null, this is used to
* generate the <code>selectionChanging</code> event.
*
* @param rowIndex If <code>selectionEventKind</code> is for a row or a
* cell, the 0-based <code>rowIndex</code> of the selection in the
* data provider.
* If <code>selectionEventKind</code> is
* for multiple cells, the 0-based <code>rowIndex</code> of the origin of the
* cell region. The default is -1 to indicate this
* parameter is not being used.
*
* @param columnIndex If <code>selectionEventKind</code> is for a single row or
* a single cell, the 0-based <code>columnIndex</code> of the selection.
* If <code>selectionEventKind</code> is for multiple
* cells, the 0-based <code>columnIndex</code> of the origin of the
* cell region. The default is -1 to indicate this
* parameter is not being used.
*
* @param rowCount If <code>selectionEventKind</code> is for a cell region,
* the number of rows in the cell region. The default is -1 to indicate
* this parameter is not being used.
*
* @param columnCount If <code>selectionEventKind</code> is for a cell region,
* the number of columns in the cell region. The default is -1 to
* indicate this parameter is not being used.
*
* @param indices If <code>selectionEventKind</code> is for multiple rows,
* the 0-based row indices of the rows in the selection. The default is
* null to indicate this parameter is not being used.
*
* @return <code>true</code> if the selection was committed or did not change, or
* <code>false</code> if the selection was canceled or could not be committed due to
* an error, such as index out of range or the <code>selectionEventKind</code> is not
* compatible with the <code>selectionMode</code>.
*
* @see spark.events.GridSelectionEvent#SELECTION_CHANGE
* @see spark.events.GridSelectionEvent#SELECTION_CHANGING
* @see spark.events.GridSelectionEventKind
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
protected function commitInteractiveSelection(
selectionEventKind:String,
rowIndex:int,
columnIndex:int,
rowCount:int = 1,
columnCount:int = 1):Boolean
{
if (!grid)
return false;
// Assumes selectionEventKind is valid for given selectionMode. Assumes
// indices are within range.
var selectionChange:CellRegion =
new CellRegion(rowIndex, columnIndex, rowCount, columnCount);
// Step 1: determine if the selection will change if the operation.
// is committed.
if (!doesChangeCurrentSelection(selectionEventKind, selectionChange))
return true;
// Step 2: dispatch the "changing" event. If preventDefault() is called
// on this event, the selection change will be cancelled.
if (hasEventListener(GridSelectionEvent.SELECTION_CHANGING))
{
const changingEvent:GridSelectionEvent =
new GridSelectionEvent(GridSelectionEvent.SELECTION_CHANGING,
false, true,
selectionEventKind, selectionChange);
// The event was cancelled so don't change the selection.
if (!dispatchEvent(changingEvent))
return false;
}
// Step 3: commit the selection change. Call the gridSelection
// methods directly so that the caret position is not altered and
// a VALUE_COMMIT event is not dispatched.
var changed:Boolean;
switch (selectionEventKind)
{
case GridSelectionEventKind.SET_ROW:
{
changed = grid.gridSelection.setRow(rowIndex);
break;
}
case GridSelectionEventKind.ADD_ROW:
{
changed = grid.gridSelection.addRow(rowIndex);
break;
}
case GridSelectionEventKind.REMOVE_ROW:
{
changed = grid.gridSelection.removeRow(rowIndex);
break;
}
case GridSelectionEventKind.SET_ROWS:
{
changed = grid.gridSelection.setRows(rowIndex, rowCount);
break;
}
case GridSelectionEventKind.SET_CELL:
{
changed = grid.gridSelection.setCell(rowIndex, columnIndex);
break;
}
case GridSelectionEventKind.ADD_CELL:
{
changed = grid.gridSelection.addCell(rowIndex, columnIndex);
break;
}
case GridSelectionEventKind.REMOVE_CELL:
{
changed = grid.gridSelection.removeCell(rowIndex, columnIndex);
break;
}
case GridSelectionEventKind.SET_CELL_REGION:
{
changed = grid.gridSelection.setCellRegion(
rowIndex, columnIndex,
rowCount, columnCount);
break;
}
case GridSelectionEventKind.SELECT_ALL:
{
changed = grid.gridSelection.selectAll();
break;
}
}
// Selection change failed for some unforseen reason.
if (!changed)
return false;
grid.invalidateDisplayListFor("selectionIndicator");
// Step 4: dispatch the "change" event.
if (hasEventListener(GridSelectionEvent.SELECTION_CHANGE))
{
const changeEvent:GridSelectionEvent =
new GridSelectionEvent(GridSelectionEvent.SELECTION_CHANGE,
false, true,
selectionEventKind, selectionChange);
dispatchEvent(changeEvent);
// TBD: to trigger bindings on grid selectedCell/Index/Item properties
if (grid.hasEventListener(GridSelectionEvent.SELECTION_CHANGE))
grid.dispatchEvent(changeEvent);
}
// Step 5: dispatch the "valueCommit" event.
dispatchFlexEvent(FlexEvent.VALUE_COMMIT);
return true;
}
/**
* Updates the grid's caret position.
* If the caret position changes, the <code>grid</code> skin part dispatches a
* <code>caretChange</code> event.
*
* @param newCaretRowIndex The 0-based rowIndex of the new caret position.
*
* @param newCaretColumnIndex The 0-based columnIndex of the new caret
* position. If the selectionMode is row-based, this is -1.
*
* @see spark.events.GridCaretEvent#CARET_CHANGE
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
protected function commitCaretPosition(newCaretRowIndex:int,
newCaretColumnIndex:int):void
{
grid.caretRowIndex = newCaretRowIndex;
grid.caretColumnIndex = newCaretColumnIndex;
}
/**
* Creates a grid selection object to use to manage selection. Override this method if you have a custom grid
* selection that you want to use in place of the default.
*
* @see spark.components.Grid.createGridSelection
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
mx_internal function createGridSelection():GridSelection
{
return new GridSelection();
}
//--------------------------------------------------------------------------
//
// Selection Utility Methods
//
//--------------------------------------------------------------------------
/**
* @private
*/
protected function selectionContainsOnlyIndex(index:int):Boolean
{
if (grid)
return grid.selectionContainsIndex(index) && grid.selectionLength == 1;
else
return gridSelection.containsRow(index) && gridSelection.selectionLength == 1;
}
/**
* @private
* Return true, if the current selection, only contains the rows in
* the selection change.
*/
protected function selectionContainsOnlyIndices(selectionChange:CellRegion):Boolean
{
var selectionLength:int =
grid ? grid.selectionLength : gridSelection.selectionLength;
if (selectionChange.rowCount != selectionLength)
return false;
const bottom:int =
selectionChange.rowIndex + selectionChange.rowCount;
for (var rowIndex:int = selectionChange.rowIndex;
rowIndex < bottom;
rowIndex++)
{
if (grid)
{
if (!grid.selectionContainsIndex(rowIndex))
return false;
}
else
{
if (!gridSelection.containsRow(rowIndex))
return false;
}
}
return true;
}
/**
* @private
*/
private function selectionContainsOnlyCell(rowIndex:int, columnIndex:int):Boolean
{
if (grid)
return grid.selectionContainsCell(rowIndex, columnIndex) && grid.selectionLength == 1;
else
return gridSelection.containsCell(rowIndex, columnIndex) && gridSelection.selectionLength == 1;
}
/**
* @private
*/
private function selectionContainsOnlyCellRegion(rowIndex:int,
columnIndex:int,
rowCount:int,
columnCount:int):Boolean
{
if (grid)
{
return grid.selectionContainsCellRegion(
rowIndex, columnIndex, rowCount, columnCount) &&
grid.selectionLength == rowCount * columnCount;
}
else
{
return gridSelection.containsCellRegion(
rowIndex, columnIndex, rowCount, columnCount) &&
gridSelection.selectionLength == rowCount * columnCount;
}
}
//--------------------------------------------------------------------------
//
// Item Editor Methods
//
//--------------------------------------------------------------------------
/**
* Starts an editor session on a selected cell in the grid. This method
* by-passes checks of the editable property on the DataGrid and GridColumn
* that prevent the user interface from starting an editor session.
*
* A <code>startItemEditorSession</code> event is dispatched before
* an item editor is created. This allows a listener dynamically change
* the item editor for a specified cell.
*
* The event can also be cancelled by calling the
* <code>preventDefault()</code> method, to prevent the
* editor session from being created.
*
* @param rowIndex The zero-based row index of the cell to edit.
*
* @param columnIndex The zero-based column index of the cell to edit.
*
* @return <code>true</code> if the editor session was started.
* Returns <code>false</code> if the editor session was cancelled or was
* otherwise unable to be started. Note that an editor session cannot be
* started in a column that is not visible.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*
*/
public function startItemEditorSession(rowIndex:int, columnIndex:int):Boolean
{
if (editor)
return editor.startItemEditorSession(rowIndex, columnIndex);
return false;
}
/**
* Closes the currently active editor and optionally saves the editor's value
* by calling the item editor's <code>save()</code> method.
* If the <code>cancel</code> parameter is <code>true</code>,
* then the editor's <code>cancel()</code> method is called instead.
*
* @param cancel If <code>false</code>, the data in the editor is saved.
* Otherwise the data in the editor is discarded.
*
* @return <code>true</code> if the editor session was saved,
* and <code>false</code> if the save was cancelled.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function endItemEditorSession(cancel:Boolean = false):Boolean
{
if (editor)
return editor.endItemEditorSession(cancel);
return false;
}
/**
* Create the data grid editor. Overriding this function will
* allow the complete replacement of the data grid editor.
*/
mx_internal function createEditor():DataGridEditor
{
return new DataGridEditor(this);
}
//--------------------------------------------------------------------------
//
// Sorting Methods
//
//--------------------------------------------------------------------------
/**
* Sort the DataGrid by one or more columns, and refresh the display.
*
* <p>If the <code>dataProvider</code> is an ICollectionView, then it's <code>sort</code> property is
* set to a value based on each column's <code>dataField</code>, <code>sortCompareFunction</code>,
* and <code>sortDescending</code> flag.
* Then, the data provider's <code>refresh()</code> method is called. </p>
*
* <p>If the <code>dataProvider</code> is not an ICollectionView, then this method has no effect.</p>
*
* <p>If isInteractive is true then a <code>GridSortEvent.SORT_CHANGING</code> is dispatched before the
* sort is applied. Listeners can change modify the event to change the sort or cancel
* the event to cancel the sort. If isInteractive is true and the sort is not cancelled, then a
* <code>GridSortEvent.SORT_CHANGE</code> event is dispatched after the dataProvider's sort has been
* updated.</p>
*
* <p>If the sort has not be cancelled, the columnHeaderGroup's <code>visibleSortIndicatorIndices</code> is updated.</p>
*
* @param columnIndices The indices of the columns by which to sort the <code>dataProvider</code>.
*
* @param isInteractive If true, <code>GridSortEvent.SORT_CHANGING</code> and
* <code>GridSortEvent.SORT_CHANGE</code> events are dispatched.
*
* @return <code>true</code> if the <code>dataProvider</code> was sorted with the provided
* column indicies.
*
* @see spark.components.DataGrid#dataProvider
* @see spark.components.gridClasses.GridColumn#sortCompareFunction
* @see spark.components.gridClasses.GridColumn#sortDescending
* @see spark.components.gridClasses.GridColumn#sortField
* @see spark.components.gridClasses.GridColumnHeaderGroup#visibleSortIndicatorIndices
* @see spark.events.GridSortEvent
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function sortByColumns(columnIndices:Vector.<int>, isInteractive:Boolean=false):Boolean
{
const dataProvider:ICollectionView = this.dataProvider as ICollectionView;
if (!dataProvider)
return false;
var sort:ISort = dataProvider.sort;
if (sort)
sort.compareFunction = null;
else
sort = new Sort();
var sortFields:Array = createSortFields(columnIndices, sort.fields);
if (!sortFields || (sortFields.length == 0))
return false;
var oldSortFields:Array = (dataProvider.sort) ? dataProvider.sort.fields : null;
// Dispatch the "changing" event. If preventDefault() is called
// on this event, the sort operation will be cancelled. If columnIndices or
// sortFields are changed, the new values will be used.
if (isInteractive)
{
// This is a shallow copy which means only the pointers to the ISortField objects
// are copied to the new Array, not the ISortField objects themselves.
if (oldSortFields)
oldSortFields = oldSortFields.concat();
if (hasEventListener(GridSortEvent.SORT_CHANGING))
{
const changingEvent:GridSortEvent =
new GridSortEvent(GridSortEvent.SORT_CHANGING,
false, true,
columnIndices,
oldSortFields, /* intended to be read-only but no way to enforce this */
sortFields);
// The event was cancelled so don't sort.
if (!dispatchEvent(changingEvent))
return false;
// Update the sort columns since they might have changed.
columnIndices = changingEvent.columnIndices;
if (!columnIndices)
return false;
// Update the new sort fields since they might have changed.
sortFields = changingEvent.newSortFields;
if (!sortFields)
return false;
}
}
// Remove each old SortField that's not a member of the new sortFields Array
// as a "styleClient" of this DataGrid.
if (oldSortFields)
{
for each (var oldSortField:ISortField in oldSortFields)
{
var oldASC:AdvancedStyleClient = oldSortField as AdvancedStyleClient;
if (!oldASC || (oldASC.styleParent != this) || (sortFields.indexOf(oldASC) != -1))
continue;
removeStyleClient(oldASC);
}
}
// Add new SortFields as "styleClients" of this DataGrid so that they
// inherit this DataGrid's locale style.
for each (var newSortField:ISortField in sortFields)
{
var newASC:AdvancedStyleClient = newSortField as AdvancedStyleClient;
if (!newASC || (newASC.styleParent == this))
continue;
addStyleClient(newASC);
}
sort.fields = sortFields;
dataProvider.sort = sort;
dataProvider.refresh();
if (isInteractive)
{
// Dispatch the "change" event.
if (hasEventListener(GridSortEvent.SORT_CHANGE))
{
const changeEvent:GridSortEvent =
new GridSortEvent(GridSortEvent.SORT_CHANGE,
false, true,
columnIndices,
oldSortFields, sortFields);
dispatchEvent(changeEvent);
}
// Update the visible sort indicators.
if (columnHeaderGroup)
columnHeaderGroup.visibleSortIndicatorIndices = columnIndices;
}
return true;
}
/**
* @private
* Return an array of ISortFields, one per column. If a matching sort field is found in
* previousFields then it's used, otherwise a new sort field is created. Each sort field's
* sortDescending property is set to match its column's sortDescending property.
*/
private function createSortFields(columnIndices:Vector.<int>, previousFields:Array):Array
{
const fields:Array = []; // return value
for each (var columnIndex:int in columnIndices)
{
var col:GridColumn = this.getColumnAt(columnIndex);
if (!col || (!col.dataField && (col.labelFunction == null) && (col.sortCompareFunction == null)))
return null;
var dataField:String = col.dataField;
var isComplexDataField:Boolean = (dataField && (dataField.indexOf(".") != -1));
var sortField:ISortField = findSortField(dataField, previousFields, isComplexDataField);
if (!sortField)
sortField = col.sortField; // constructs a new sortField
else
sortField.descending = col.sortDescending;
fields.push(sortField);
}
return fields;
}
/**
* @private
* Finds a SortField using the provided dataField and returns it.
* If the dataField is complex, it tries to find a GridSortField
* with a matching dataFieldPath.
*
* @param dataField The dataField of the column.
* @param fields The array of SortFields to search through.
* @param isComplexDataField true if the dataField is a path.
*/
private static function findSortField(dataField:String, fields:Array, isComplexDataField:Boolean):ISortField
{
if (dataField == null)
return null;
for each (var field:ISortField in fields)
{
var name:String = field.name;
if (isComplexDataField && (field is GridSortField))
{
name = GridSortField(field).dataFieldPath;
}
if (name == dataField)
return field;
}
return null;
}
//--------------------------------------------------------------------------
//
// Private Methods
//
//--------------------------------------------------------------------------
/**
* @private
* @return True if there is an anchor position set.
*/
private function isAnchorSet():Boolean
{
if (!grid)
return false;
if (isRowSelectionMode())
return grid.anchorRowIndex != -1;
else
return grid.anchorRowIndex != -1 && grid.anchorRowIndex != -1;
}
/**
* @private
* Toggle the selection and set the caret to rowIndex/columnIndex.
*
* @return True if the selection has changed.
*/
private function toggleSelection(rowIndex:int, columnIndex:int):Boolean
{
var kind:String;
if (isRowSelectionMode())
{
if (grid.selectionContainsIndex(rowIndex))
kind = GridSelectionEventKind.REMOVE_ROW;
else if (selectionMode == GridSelectionMode.MULTIPLE_ROWS)
kind = GridSelectionEventKind.ADD_ROW;
else
kind = GridSelectionEventKind.SET_ROW;
}
else if (isCellSelectionMode())
{
if (grid.selectionContainsCell(rowIndex, columnIndex))
kind = GridSelectionEventKind.REMOVE_CELL;
else if (selectionMode == GridSelectionMode.MULTIPLE_CELLS)
kind = GridSelectionEventKind.ADD_CELL;
else
kind = GridSelectionEventKind.SET_CELL;
}
var success:Boolean =
commitInteractiveSelection(kind, rowIndex, columnIndex);
// Update the caret if the selection was not cancelled.
if (success)
commitCaretPosition(rowIndex, columnIndex);
return success;
}
/**
* @private
* Extends the selection from the anchor position to the given 'caret'
* position and updates the caret position.
*/
private function extendSelection(caretRowIndex:int,
caretColumnIndex:int):Boolean
{
if (!isAnchorSet())
return false;
const startRowIndex:int = Math.min(grid.anchorRowIndex, caretRowIndex);
const endRowIndex:int = Math.max(grid.anchorRowIndex, caretRowIndex);
var success:Boolean;
if (selectionMode == GridSelectionMode.MULTIPLE_ROWS)
{
success = commitInteractiveSelection(
GridSelectionEventKind.SET_ROWS,
startRowIndex, -1,
endRowIndex - startRowIndex + 1, 0);
}
else if (selectionMode == GridSelectionMode.SINGLE_ROW)
{
// Can't extend the selection so move it to the caret position.
success = commitInteractiveSelection(
GridSelectionEventKind.SET_ROW, caretRowIndex, -1, 1, 0);
}
else if (selectionMode == GridSelectionMode.MULTIPLE_CELLS)
{
const rowCount:int = endRowIndex - startRowIndex + 1;
const startColumnIndex:int =
Math.min(grid.anchorColumnIndex, caretColumnIndex);
const endColumnIndex:int =
Math.max(grid.anchorColumnIndex, caretColumnIndex);
const columnCount:int = endColumnIndex - startColumnIndex + 1;
success = commitInteractiveSelection(
GridSelectionEventKind.SET_CELL_REGION,
startRowIndex, startColumnIndex,
rowCount, columnCount);
}
else if (selectionMode == GridSelectionMode.SINGLE_CELL)
{
// Can't extend the selection so move it to the caret position.
success = commitInteractiveSelection(
GridSelectionEventKind.SET_CELL,
caretRowIndex, caretColumnIndex, 1, 1);
}
// Update the caret.
if (success)
commitCaretPosition(caretRowIndex, caretColumnIndex);
return success;
}
/**
* @private
* Sets the selection and updates the caret and anchor positions.
*/
private function setSelectionAnchorCaret(rowIndex:int, columnIndex:int):Boolean
{
// click sets the selection and updates the caret and anchor
// positions.
var success:Boolean;
if (isRowSelectionMode())
{
// Select the row.
success = commitInteractiveSelection(
GridSelectionEventKind.SET_ROW,
rowIndex, columnIndex);
}
else if (isCellSelectionMode())
{
// Select the cell.
success = commitInteractiveSelection(
GridSelectionEventKind.SET_CELL,
rowIndex, columnIndex);
}
// Update the caret and anchor positions unless cancelled.
if (success)
{
commitCaretPosition(rowIndex, columnIndex);
grid.anchorRowIndex = rowIndex;
grid.anchorColumnIndex = columnIndex;
}
return success;
}
/**
* @private
* Returns the new caret position based on the current caret position and
* the navigationUnit as a Point, where x is the columnIndex and y is the
* rowIndex. Assures there is a valid caretPosition.
*/
private function setCaretToNavigationDestination(navigationUnit:uint):CellPosition
{
var caretRowIndex:int = grid.caretRowIndex;
var caretColumnIndex:int = grid.caretColumnIndex;
const rowCount:int = dataProviderLength;
const columnCount:int = columnsLength;
const gridLayout:GridLayout = grid.layout as GridLayout;
const centerGridView:GridView = gridLayout.centerGridView;
const topGridView:GridView = gridLayout.topGridView;
var caretGridView:GridView;
switch (navigationUnit)
{
case NavigationUnit.LEFT:
{
if (isCellSelectionMode())
{
if (grid.caretColumnIndex > 0)
caretColumnIndex = grid.getPreviousVisibleColumnIndex(caretColumnIndex);
}
break;
}
case NavigationUnit.RIGHT:
{
if (isCellSelectionMode())
{
if (grid.caretColumnIndex + 1 < columnCount)
caretColumnIndex = grid.getNextVisibleColumnIndex(caretColumnIndex);
}
break;
}
case NavigationUnit.UP:
{
if (grid.caretRowIndex > 0)
caretRowIndex--;
break;
}
case NavigationUnit.DOWN:
{
if (grid.caretRowIndex + 1 < rowCount)
caretRowIndex++;
break;
}
case NavigationUnit.PAGE_UP:
{
// If the caret is below the first visible row, then just move the caret up to
// the first visible row. Otherwise scroll up far enough to put the caret row
// at the top of the view.
caretGridView = ((lockedRowCount > 0) && (caretRowIndex <= lockedRowCount)) ? topGridView : centerGridView;
const firstVisibleRowIndex:int = caretGridView.gridViewLayout.getFirstFullyVisibleRowIndex();
if (caretRowIndex > firstVisibleRowIndex)
{
caretRowIndex = firstVisibleRowIndex;
}
else if (caretRowIndex >= lockedRowCount)
{
// Attempt to synchronously scroll caretRowIndex to bottom of the view
// and then reset the caretRowIndex to whatever row actually ends up at the top.
const caretRowBounds:Rectangle = grid.getRowBounds(caretRowIndex);
const visibleBounds:Rectangle = centerGridView.gridViewLayout.getVisibleBounds();
const pageUpDelta:Number = visibleBounds.bottom - caretRowBounds.bottom;
grid.verticalScrollPosition -= pageUpDelta;
validateNow();
caretRowIndex = centerGridView.gridViewLayout.getFirstFullyVisibleRowIndex();
}
break;
}
case NavigationUnit.PAGE_DOWN:
{
// If the caret is on the last locked row, move to the first unlocked row. Otherwise:
// If the caret is above the last visible row, then just move the caret to the last visible row.
// Otherwise scroll down far enough to position the caret row at the top of the grid view and
// then reset the caret to the new last fully visible row.
caretGridView = ((lockedRowCount > 0) && (caretRowIndex < (lockedRowCount - 1))) ? topGridView : centerGridView;
const lastVisibleRowIndex:int = caretGridView.gridViewLayout.getLastFullyVisibleRowIndex();
if ((lockedRowCount > 0) && (rowCount > lockedRowCount) && (caretRowIndex == (lockedRowCount - 1)))
{
caretRowIndex = lockedRowCount;
}
else if (caretRowIndex < lastVisibleRowIndex)
{
caretRowIndex = lastVisibleRowIndex;
}
else if (caretRowIndex >= lockedRowCount)
{
// Attempt to synchronously scroll caretRowIndex to the top of the view
// and then reset the caretRowIndex to whatever row actually ends up at the bottom.
grid.verticalScrollPosition = grid.getRowBounds(caretRowIndex).y;
validateNow();
caretRowIndex = centerGridView.gridViewLayout.getLastFullyVisibleRowIndex();
}
break;
}
case NavigationUnit.HOME:
{
caretRowIndex = 0;
caretColumnIndex = isCellSelectionMode() ? grid.getNextVisibleColumnIndex(-1) : -1;
break;
}
case NavigationUnit.END:
{
caretRowIndex = rowCount - 1;
caretColumnIndex = isCellSelectionMode() ? grid.getPreviousVisibleColumnIndex(columnCount) : -1;
// The heights of any rows that have not been rendered yet are
// estimated. Force them to draw so the heights are accurate.
// TBD: is there a better way to do this?
grid.verticalScrollPosition = grid.contentHeight;
validateNow();
if (grid.contentHeight != grid.verticalScrollPosition)
{
grid.verticalScrollPosition = grid.contentHeight;
validateNow();
}
break;
}
default:
{
return null;
}
}
return new CellPosition(caretRowIndex, caretColumnIndex);
}
/**
* @copy spark.components.Grid#ensureCellIsVisible()
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 2.5
* @productversion Flex 4.5
*/
public function ensureCellIsVisible(rowIndex:int, columnIndex:int = -1):void
{
if (grid)
grid.ensureCellIsVisible(rowIndex, columnIndex);
}
/**
* @private
*
* Adjusts the caret and the selection based on what keystroke is used
* in combination with a ctrl/cmd key or a shift key. Returns false
* if the selection was not changed.
*/
protected function adjustSelectionUponNavigation(event:KeyboardEvent):Boolean
{
// Some unrecognized key stroke was entered, return.
if (!NavigationUnit.isNavigationUnit(event.keyCode))
return false;
// If rtl layout, need to swap Keyboard.LEFT and Keyboard.RIGHT.
var navigationUnit:uint = mapKeycodeForLayoutDirection(event);
const newPosition:CellPosition = setCaretToNavigationDestination(navigationUnit);
if (!newPosition)
return false;
// Cancel so another component doesn't handle this event.
event.preventDefault();
var selectionChanged:Boolean = false;
if (event.shiftKey)
{
// The shift key-nav key combination extends the selection and
// updates the caret.
selectionChanged =
extendSelection(newPosition.rowIndex, newPosition.columnIndex);
}
else if (event.ctrlKey)
{
// If its a ctrl/cmd key-nav key combination, there is nothing
// more to do then set the caret.
commitCaretPosition(newPosition.rowIndex, newPosition.columnIndex);
}
else
{
// Select the current row/cell.
setSelectionAnchorCaret(newPosition.rowIndex, newPosition.columnIndex);
}
// Ensure this position is visible.
ensureCellIsVisible(newPosition.rowIndex, newPosition.columnIndex);
return true;
}
/**
* @private
*
* Returns true if committing the given selection operation would change
* the current selection.
*/
private function doesChangeCurrentSelection(
selectionEventKind:String,
selectionChange:CellRegion):Boolean
{
var changesSelection:Boolean;
const rowIndex:int = selectionChange.rowIndex;
const columnIndex:int = selectionChange.columnIndex;
const rowCount:int = selectionChange.rowCount;
const columnCount:int = selectionChange.columnCount;
switch (selectionEventKind)
{
case GridSelectionEventKind.SET_ROW:
{
changesSelection =
!selectionContainsOnlyIndex(rowIndex);
break;
}
case GridSelectionEventKind.ADD_ROW:
{
changesSelection =
!grid.selectionContainsIndex(rowIndex);
break;
}
case GridSelectionEventKind.REMOVE_ROW:
{
changesSelection = requireSelection ?
!selectionContainsOnlyIndex(rowIndex) :
grid.selectionContainsIndex(rowIndex);
break;
}
case GridSelectionEventKind.SET_ROWS:
{
changesSelection =
!selectionContainsOnlyIndices(selectionChange);
break;
}
case GridSelectionEventKind.SET_CELL:
{
changesSelection =
!selectionContainsOnlyCell(rowIndex, columnIndex);
break;
}
case GridSelectionEventKind.ADD_CELL:
{
changesSelection =
!grid.selectionContainsCell(rowIndex, columnIndex);
break;
}
case GridSelectionEventKind.REMOVE_CELL:
{
changesSelection = requireSelection ?
!selectionContainsOnlyCell(rowIndex, columnIndex) :
grid.selectionContainsCell(rowIndex, columnIndex);
break;
}
case GridSelectionEventKind.SET_CELL_REGION:
{
changesSelection =
!selectionContainsOnlyCellRegion(
rowIndex, columnIndex, rowCount, columnCount);
break;
}
case GridSelectionEventKind.SELECT_ALL:
{
changesSelection = true;
break;
}
}
return changesSelection;
}
//--------------------------------------------------------------------------
//
// Grid event handlers
//
//--------------------------------------------------------------------------
/**
* @private
* Updating the hover is disabled if the mouse button was depressed
* while not over the grid. The common case for this is while
* scrolling. While the scroll thumb is depressed don't want the
* hover updated if the mouse drifts into the grid.
*/
protected function grid_rollOverHandler(event:GridEvent):void
{
if (event.isDefaultPrevented())
return;
// The related object is the object that was previously under
// the pointer.
if (event.buttonDown && event.relatedObject != grid)
updateHoverOnRollOver = false;
grid.hoverRowIndex = updateHoverOnRollOver ? event.rowIndex : -1;
grid.hoverColumnIndex = updateHoverOnRollOver ? event.columnIndex : -1;
event.updateAfterEvent();
}
/**
* @private
* If the mouse button is depressed while outside of the grid, the hover
* indicator is not enabled again until GRID_MOUSE_UP or GRID_ROLL_OUT.
*/
protected function grid_rollOutHandler(event:GridEvent):void
{
if (event.isDefaultPrevented())
return;
grid.hoverRowIndex = -1;
grid.hoverColumnIndex = -1;
updateHoverOnRollOver = true;
event.updateAfterEvent();
}
/**
* @private
* If the mouse button is depressed while outside of the grid, the hover
* indicator is not enabled again until GRID_MOUSE_UP or GRID_ROLL_OUT.
*/
protected function grid_mouseUpHandler(event:GridEvent):void
{
if (event.isDefaultPrevented())
return;
if (!updateHoverOnRollOver)
{
grid.hoverRowIndex = event.rowIndex;
grid.hoverColumnIndex = event.columnIndex;
updateHoverOnRollOver = true;
}
}
/**
* @private
*/
protected function grid_mouseDownHandler(event:GridEvent):void
{
if (event.isDefaultPrevented())
return;
const isCellSelection:Boolean = isCellSelectionMode();
const rowIndex:int = event.rowIndex;
const columnIndex:int = isCellSelection ? event.columnIndex : -1;
// Clicked on empty place in grid. Don't change selection or caret
// position.
if (rowIndex == -1 || isCellSelection && columnIndex == -1)
return;
if (dragEnabled && isRowSelectionMode() && selectionContainsIndex(rowIndex))
{
pendingSelectionOnMouseUp = true;
pendingSelectionShiftKey = event.shiftKey;
pendingSelectionCtrlKey = event.ctrlKey;
}
else
{
if (event.ctrlKey)
{
// ctrl-click toggles the selection and updates caret and anchor.
if (!toggleSelection(rowIndex, columnIndex))
return;
grid.anchorRowIndex = rowIndex;
grid.anchorColumnIndex = columnIndex;
}
else if (event.shiftKey)
{
// shift-click extends the selection and updates the caret.
if (grid.selectionMode == GridSelectionMode.MULTIPLE_ROWS ||
grid.selectionMode == GridSelectionMode.MULTIPLE_CELLS)
{
if (!extendSelection(rowIndex, columnIndex))
return;
}
}
else
{
// click sets the selection and updates the caret and anchor positions.
setSelectionAnchorCaret(rowIndex, columnIndex);
}
}
// If selection is pending on mouse up then we have just moused down on
// an item, part of an already commited selection.
// However if we moused down on an item that's not currently selected,
// we must commit the selection before trying to start dragging since
// listeners may prevent the item from being selected.
if (!pendingSelectionOnMouseUp)
validateProperties();
mouseDownPoint = event.target.localToGlobal(new Point(event.localX, event.localY));
mouseDownObject = event.target as DisplayObject;
mouseDownRowIndex = rowIndex;
mouseDownColumnIndex = columnIndex;
var listenForDrag:Boolean = (dragEnabled &&
getStyle("interactionMode") == InteractionMode.MOUSE && selectedIndices &&
this.selectedIndices.indexOf(rowIndex) != -1);
// Handle any drag gestures that may have been started
if (listenForDrag)
{
// Listen for GRID_MOUSE_DRAG.
// The user may have cliked on the item renderer close
// to the edge of the list, and we still want to start a drag
// operation if they move out of the list.
grid.addEventListener(GridEvent.GRID_MOUSE_DRAG, grid_mouseDragHandler);
}
if (pendingSelectionOnMouseUp || listenForDrag)
{
// FIXME (dloverin): When dragging a proxy in an untrusted
// child application the cursor does not follow drag proxy.
// FIXME (dloverin): The listener on the sandbox root can be removed when:
// 1. MouseEventUtil.addDownDragUpListeners() dispatches
// a MOUSE_UP_SOMEWHERE.
// 2. Grid.grid_mouseDownDragUpHandler() changes its parameter from
// a MouseEvent to an event so a MOUSE_UP_SOMEWHERE event does
// not cause an RTE. Grid can then handle the MOUSE_UP_SOMEWHERE
// event by dispatching a MOUSE_UP or aGRID_MOUSE_UP_SOMEWHERE
// event.
systemManager.getSandboxRoot().addEventListener(SandboxMouseEvent.MOUSE_UP_SOMEWHERE, sandbox_mouseUpHandler, false, 0, true);
}
}
/**
* @private
* Redispatch the grid's "caretChange" event.
*/
protected function grid_caretChangeHandler(event:GridCaretEvent):void
{
if (hasEventListener(GridCaretEvent.CARET_CHANGE))
dispatchEvent(event);
}
/**
* @private
* Redispatch the grid's "valueCommit" event.
*/
protected function grid_valueCommitHandler(event:FlexEvent):void
{
if (hasEventListener(FlexEvent.VALUE_COMMIT))
dispatchEvent(event);
}
/**
* @private
*/
private function grid_invalidateDisplayListHandler(event:Event):void
{
// invalidate all IDataGridElements
if (columnHeaderGroup && grid.isInvalidateDisplayListReason("horizontalScrollPosition"))
columnHeaderGroup.invalidateDisplayList();
}
/**
* @private
*/
private function grid_invalidateSizeHandler(event:Event):void
{
// invalidate all IDataGridElements
if (columnHeaderGroup)
columnHeaderGroup.invalidateSize();
}
/**
* @private
*/
private function grid_gridViewsChangedHandler(event:Event):void
{
if (columnHeaderGroup)
columnHeaderGroup.configureGridColumnHeaderViews();
}
//--------------------------------------------------------------------------
//
// Header event handlers
//
//--------------------------------------------------------------------------
private var stretchCursorID:int = CursorManager.NO_CURSOR;
private var resizeColumn:GridColumn = null;
private var resizeAnchorX:Number = NaN;
private var resizeColumnWidth:Number = NaN;
private var nextColumn:GridColumn = null; // RTL layout only
private var nextColumnWidth:Number = NaN; // RTL layout only
/**
* @private
* Flip the specified column's sortDescending flag and and sort the dataProvider. If
* isMultiColumnSort is true, add the column to the set of columns being sorted (that's
* columnHeaderGroup.visibleSortIndicatorIndices) otherwise just sort per the specified column.
*
* If the sort was possible and was not cancelled (see sortByColumns()) then set the
* columnHeaderGroup's selectedColumnIndex and return true, otherwise return false.
*/
private function interactiveSortByColumns(column:GridColumn, isMultiColumnSort:Boolean):Boolean
{
if (!enabled || !sortableColumns || !column || !column.sortable || !columnHeaderGroup)
return false;
const columnIndex:int = column.columnIndex;
const currentSortColumnIndices:Vector.<int> = columnHeaderGroup.visibleSortIndicatorIndices;
const reverseSort:Boolean = currentSortColumnIndices.indexOf(columnIndex) != -1;
var sortColumnIndices:Vector.<int>;
if (isMultiColumnSort && multiColumnSortingEnabled)
{
sortColumnIndices = currentSortColumnIndices;
if (!reverseSort)
sortColumnIndices.push(columnIndex);
}
else
{
sortColumnIndices = new <int>[columnIndex];
}
if (reverseSort)
column.sortDescending = !column.sortDescending;
if (!sortByColumns(sortColumnIndices, true) && reverseSort)
{
column.sortDescending = !column.sortDescending; // sort was cancelled
return false;
}
columnHeaderGroup.selectedColumnIndex = column.columnIndex;
return true;
}
/**
* @private
*/
protected function columnHeaderGroup_clickHandler(event:GridEvent):void
{
interactiveSortByColumns(event.column, event.ctrlKey);
}
/**
* @private
*/
protected function columnHeaderGroup_rollOverHandler(event:GridEvent):void
{
if (resizeColumn || !enabled)
return;
columnHeaderGroup.hoverColumnIndex = event.columnIndex;
}
/**
* @private
*/
protected function columnHeaderGroup_rollOutHandler(event:GridEvent):void
{
if (!enabled)
return;
columnHeaderGroup.hoverColumnIndex = -1;
}
/**
* @private
*/
protected function separator_mouseDownHandler(event:GridEvent):void
{
const column:GridColumn = event.column;
if (!enabled || !grid.resizableColumns || !column || !column.resizable)
return;
resizeColumn = event.column;
resizeAnchorX = event.localX;
resizeColumnWidth = grid.getColumnWidth(resizeColumn.columnIndex);
// If we're laying out RTL then dragging to the left - which increases
// a column's width - and the Grid's width is unconstrained, then only
// allow the column's width to grow to the extent that the adjacent
// (next) column can shrink.
if (isNaN(explicitWidth) && (layoutDirection == LayoutDirection.RTL))
{
const nextColumnIndex:int = grid.getNextVisibleColumnIndex(resizeColumn.columnIndex);
nextColumn = getColumnAt(nextColumnIndex);
nextColumnWidth = Math.ceil(grid.getColumnWidth(nextColumnIndex));
}
else
{
nextColumn = null;
nextColumnWidth = NaN;
}
// Give all of the columns to the left of this one an explicit so that resizing
// this column doesn't change their width and, consequently, this column's location.
const resizeColumnIndex:int = resizeColumn.columnIndex;
for (var columnIndex:int = 0; columnIndex < resizeColumnIndex; columnIndex++)
{
var gc:GridColumn = getColumnAt(columnIndex);
if (gc.visible && isNaN(gc.width))
gc.width = grid.getColumnWidth(columnIndex);
}
}
/**
* @private
*/
protected function separator_mouseDragHandler(event:GridEvent):void
{
if (!resizeColumn)
return;
const widthDelta:Number = event.localX - resizeAnchorX;
const minWidth:Number = isNaN(resizeColumn.minWidth) ? 0 : resizeColumn.minWidth;
const maxWidth:Number = resizeColumn.maxWidth;
var newWidth:Number = Math.ceil(resizeColumnWidth + widthDelta);
// Layout is RTL (see sparator_mouseDownHandler). Make sure that the
// next column's width can shrink as much as the resizeColumn is growing,
// or vice versa.
if (nextColumn)
{
const nextMinWidth:Number = isNaN(nextColumn.minWidth) ? 0 : nextColumn.minWidth;
if (Math.ceil(nextColumnWidth - widthDelta) <= nextMinWidth)
return;
if (Math.ceil(resizeColumnWidth + widthDelta) <= minWidth)
return;
nextColumn.width = nextColumnWidth - widthDelta;
}
newWidth = Math.max(newWidth, minWidth);
if (!isNaN(maxWidth))
newWidth = Math.min(newWidth, maxWidth);
resizeColumn.width = newWidth;
validateNow(); // smooth out the drag
event.updateAfterEvent();
}
/**
* @private
*/
protected function separator_mouseUpHandler(event:GridEvent):void
{
if (!resizeColumn)
return;
resizeColumn = null;
cursorManager.removeCursor(stretchCursorID);
}
/**
* @private
*/
protected function separator_rollOverHandler(event:GridEvent):void
{
const column:GridColumn = event.column;
if (resizeColumn || !enabled || !grid.resizableColumns || !column || !column.resizable)
return;
var stretchCursorClass:Class = getStyle("stretchCursor") as Class;
if (stretchCursorClass)
stretchCursorID = cursorManager.setCursor(stretchCursorClass, CursorManagerPriority.HIGH, 0, 0);
}
/**
* @private
*/
protected function separator_rollOutHandler(event:GridEvent):void
{
if (!enabled || resizeColumn)
return;
cursorManager.removeCursor(stretchCursorID);
}
//--------------------------------------------------------------------------
//
// DataGrid event handlers
//
//--------------------------------------------------------------------------
/**
* @private
* The UIComponent's focusInHandler and focusOutHandler draw the
* focus. This handler exists only when there is a caretIndicator part.
*/
protected function dataGrid_focusHandler(event:FocusEvent):void
{
if (!grid)
return;
const isFocusIn:Boolean = event.type == FocusEvent.FOCUS_IN;
const isFocusOut:Boolean = event.type == FocusEvent.FOCUS_OUT;
if (isOurFocus(DisplayObject(event.target)))
grid.showCaret = isFocusIn && (selectionMode != GridSelectionMode.NONE);
if (isFocusIn)
internalFocusOwner = GRID_FOCUS_OWNER;
else if (isFocusOut)
internalFocusOwner = NO_FOCUS_OWNER;
}
//--------------------------------------------------------------------------
//
// Drag methods
//
//--------------------------------------------------------------------------
/**
* @private
* The default handler for the <code>dragStart</code> event.
*
* @param event The DragEvent object.
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
protected function dragStartHandler(event:DragEvent):void
{
if (event.isDefaultPrevented())
return;
var dragSource:DragSource = new DragSource();
addDragData(dragSource);
DragManager.doDrag(this,
dragSource,
event,
createDragIndicator(),
0 /*xOffset*/,
0 /*yOffset*/,
0.5 /*imageAlpha*/,
dragMoveEnabled);
}
/**
* @private
* Used to sort the selected indices during drag and drop operations.
*/
private function compareValues(a:int, b:int):int
{
return a - b;
}
/**
* @private
* Handles <code>DragEvent.DRAG_COMPLETE</code> events. This method
* removes the items from the data provider.
*
* @param event The DragEvent object.
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
protected function dragCompleteHandler(event:DragEvent):void
{
if (event.isDefaultPrevented())
return;
// Remove the dragged items only if they were drag moved to
// a different list. If the items were drag moved to this
// list, the reordering was already handles in the
// DragEvent.DRAG_DROP listener.
if (!dragMoveEnabled ||
event.action != DragManager.MOVE ||
event.relatedObject == this)
return;
// Clear the selection, but remember which items were moved
var movedIndices:Vector.<int> = selectedIndices;
selectedIndices = new Vector.<int>();
validateProperties(); // To commit the selection
// Remove the moved items
movedIndices.sort(compareValues);
var count:int = movedIndices.length;
for (var i:int = count - 1; i >= 0; i--)
{
dataProvider.removeItemAt(movedIndices[i]);
}
}
/**
* Creates an instance of a class that is used to display the visuals
* of the dragged items during a drag and drop operation.
* The default <code>DragEvent.DRAG_START</code> handler passes the
* instance to the <code>DragManager.doDrag()</code> method.
*
* @return The IFlexDisplayObject representing the drag indicator.
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
public function createDragIndicator():IFlexDisplayObject
{
var dragIndicator:IFlexDisplayObject;
var dragIndicatorClass:Class = Class(getStyle("dragIndicatorClass"));
if (dragIndicatorClass)
{
dragIndicator = new dragIndicatorClass();
if (dragIndicator is IVisualElement)
IVisualElement(dragIndicator).owner = this;
}
return dragIndicator;
}
/**
* Adds the selected items to the DragSource object as part of
* a drag-and-drop operation.
* Override this method to add other data to the drag source.
*
* @param ds The DragSource object to which to add the data.
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
public function addDragData(dragSource:DragSource):void
{
dragSource.addHandler(copySelectedItemsForDragDrop, "itemsByIndex");
// Calculate the index of the focus item within the vector
// of ordered items returned for the "itemsByIndex" format.
var caretIndex:int = 0;
var draggedIndices:Vector.<int> = selectedIndices;
var count:int = draggedIndices.length;
for (var i:int = 0; i < count; i++)
{
if (mouseDownRowIndex > draggedIndices[i])
caretIndex++;
}
dragSource.addData(caretIndex, "caretIndex");
}
/**
* @private
*/
private function copySelectedItemsForDragDrop():Vector.<Object>
{
// Copy the vector so that we don't modify the original
// since selectedIndices returns a reference.
var draggedIndices:Vector.<int> = selectedIndices.slice(0, selectedIndices.length);
var result:Vector.<Object> = new Vector.<Object>(draggedIndices.length);
// Sort in the order of the data source
draggedIndices.sort(compareValues);
// Copy the items
var count:int = draggedIndices.length;
for (var i:int = 0; i < count; i++)
result[i] = dataProvider.getItemAt(draggedIndices[i]);
return result;
}
/**
* @private
* Handles <code>MouseEvent.MOUSE_MOVE</code> events from any mouse
* targets contained in the list including the renderers. This method
* watches for a gesture that constitutes the beginning of a
* drag drop and send a <code>DragEvent.DRAG_START</code> event.
* It also checks to see if the mouse is over a non-target area of a
* renderer so that Flex can try to make it look like that renderer was
* the target.
*
* @param event The MouseEvent object.
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
protected function grid_mouseDragHandler(event:MouseEvent):void
{
if (!mouseDownPoint || !dragEnabled)
return;
var pt:Point = new Point(event.localX, event.localY);
pt = DisplayObject(event.target).localToGlobal(pt);
const DRAG_THRESHOLD:int = 5;
if (Math.abs(mouseDownPoint.x - pt.x) > DRAG_THRESHOLD ||
Math.abs(mouseDownPoint.y - pt.y) > DRAG_THRESHOLD)
{
var dragEvent:DragEvent = new DragEvent(DragEvent.DRAG_START);
dragEvent.dragInitiator = this;
var localMouseDownPoint:Point = this.globalToLocal(mouseDownPoint);
dragEvent.localX = localMouseDownPoint.x;
dragEvent.localY = localMouseDownPoint.y;
dragEvent.buttonDown = true;
// We're starting a drag operation, remove the handlers
// that are monitoring the mouse move, we don't need them anymore:
dispatchEvent(dragEvent);
var gridEvent:GridEvent = new GridEvent(GridEvent.GRID_MOUSE_UP, false, false, event.localX, event.localY,
event.relatedObject, event.ctrlKey, event.altKey, event.shiftKey, event.buttonDown, event.delta);
// Finally, remove the mouse handlers
removeMouseHandlersForDragStart(gridEvent);
}
}
private function removeMouseHandlersForDragStart(event:GridEvent):void
{
// If dragging failed, but we had a pending selection, commit it here
if (pendingSelectionOnMouseUp && !DragManager.isDragging)
{
const rowIndex:int = mouseDownRowIndex;
const columnIndex:int = mouseDownColumnIndex;
if (event.ctrlKey)
{
// ctrl-click toggles the selection and updates caret and anchor.
if (!toggleSelection(rowIndex, columnIndex))
return;
grid.anchorRowIndex = rowIndex;
grid.anchorColumnIndex = columnIndex;
}
else if (event.shiftKey)
{
// shift-click extends the selection and updates the caret.
if (grid.selectionMode == GridSelectionMode.MULTIPLE_ROWS ||
grid.selectionMode == GridSelectionMode.MULTIPLE_CELLS)
{
if (!extendSelection(rowIndex, columnIndex))
return;
}
}
else
{
// click sets the selection and updates the caret and anchor
// positions.
setSelectionAnchorCaret(rowIndex, columnIndex);
}
}
// Always clean up the flag, even if currently dragging.
pendingSelectionOnMouseUp = false;
mouseDownPoint = null;
mouseDownObject = null;
mouseDownRowIndex = -1;
mouseDownColumnIndex = -1;
grid.removeEventListener(GridEvent.GRID_MOUSE_DRAG, grid_mouseDragHandler);
systemManager.getSandboxRoot().removeEventListener(SandboxMouseEvent.MOUSE_UP_SOMEWHERE, sandbox_mouseUpHandler, false);
}
/**
* @private
* Handles <code>SandboxMouseEvent.MOUSE_UP_SOMEWHERE</code> events.
*
* @param event The SandboxMouseEvent object.
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 1.5
* @productversion Flex 4
*/
protected function sandbox_mouseUpHandler(event:SandboxMouseEvent):void
{
var sandboxMouseEvent:SandboxMouseEvent = SandboxMouseEvent(event);
var gridEvent:GridEvent = new GridEvent(GridEvent.GRID_MOUSE_UP, false, false, NaN, NaN, null,
sandboxMouseEvent.ctrlKey, sandboxMouseEvent.altKey, sandboxMouseEvent.shiftKey,
sandboxMouseEvent.buttonDown, 0);
removeMouseHandlersForDragStart(gridEvent);
}
//--------------------------------------------------------------------------
//
// Drop methods
//
//--------------------------------------------------------------------------
private function calculateDropLocation(event:DragEvent):DropLocation
{
// Verify data format
if (!enabled || !event.dragSource.hasFormat("itemsByIndex"))
return null;
// Calculate the drop location
return grid.layout.calculateDropLocation(event);
}
/**
* Creates and instance of the dropIndicator class that is used to
* display the visuals of the drop location during a drag and drop
* operation. The instance is set in the layout's
* <code>dropIndicator</code> property.
*
* <p>If you override the <code>dragEnter</code> event handler,
* and call <code>preventDefault()</code> so that the default handler does not execute,
* call <code>createDropIndicator()</code> to create the drop indicator.</p>
*
* @return Returns the dropIndicator that was set in the layout.
*
* @see #destroyDropIndicator
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
public function createDropIndicator():DisplayObject
{
// Do we have a drop indicator already?
if (grid.layout.dropIndicator)
return grid.layout.dropIndicator;
var dropIndicatorInstance:DisplayObject;
if (dropIndicator)
{
dropIndicatorInstance = DisplayObject(createDynamicPartInstance("dropIndicator"));
}
else
{
var dropIndicatorClass:Class = Class(getStyle("dropIndicatorSkin"));
if (dropIndicatorClass)
dropIndicatorInstance = new dropIndicatorClass();
}
if (dropIndicatorInstance is IVisualElement)
IVisualElement(dropIndicatorInstance).owner = this;
// Set it in the layout
grid.layout.dropIndicator = dropIndicatorInstance;
return dropIndicatorInstance;
}
/**
* Releases the <code>dropIndicator</code> instance that is currently set in the layout.
*
* <p>If you override the <code>dragExit</code> event handler,
* and call <code>preventDefault()</code> so that the default handler does not execute,
* call <code>destroyDropIndicator()</code> to delete the drop indicator.</p>
*
* @return Returns the dropIndicator that was removed.
*
* @see #createDropIndicator
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
public function destroyDropIndicator():DisplayObject
{
var dropIndicatorInstance:DisplayObject = grid.layout.dropIndicator;
if (!dropIndicatorInstance)
return null;
// Release the reference from the layout
grid.layout.dropIndicator = null;
// Release it if it's a dynamic skin part
var count:int = numDynamicParts("dropIndicator");
for (var i:int = 0; i < count; i++)
{
if (dropIndicatorInstance == getDynamicPartAt("dropIndicator", i))
{
// This was a dynamic part, remove it now:
removeDynamicPartInstance("dropIndicator", dropIndicatorInstance);
break;
}
}
return dropIndicatorInstance;
}
/**
* @private
* Handles <code>DragEvent.DRAG_ENTER</code> events. This method
* determines if the DragSource object contains valid elements and uses
* the <code>DragManager.showDropFeedback()</code> method to set up the
* UI feedback as well as the layout's <code>showDropIndicator()</code>
* method to display the drop indicator and initiate drag scrolling.
*
* @param event The DragEvent object.
*
* @see spark.layouts.LayoutBase#showDropIndicator
* @see spark.layouts.LayoutBase#hideDropIndicator
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
protected function dragEnterHandler(event:DragEvent):void
{
if (event.isDefaultPrevented())
return;
var dropLocation:DropLocation = calculateDropLocation(event);
if (dropLocation)
{
DragManager.acceptDragDrop(this);
// Create the dropIndicator instance. The layout will take care of
// parenting, sizing, positioning and validating the dropIndicator.
createDropIndicator();
// Show focus
drawFocusAnyway = true;
drawFocus(true);
// Notify manager we can drop
DragManager.showFeedback(event.ctrlKey ? DragManager.COPY : DragManager.MOVE);
// Show drop indicator
grid.layout.showDropIndicator(dropLocation);
}
else
{
DragManager.showFeedback(DragManager.NONE);
}
}
/**
* @private
* Handles <code>DragEvent.DRAG_OVER</code> events. This method
* determines if the DragSource object contains valid elements and uses
* the <code>showDropFeedback()</code> method to set up the UI feedback
* as well as the layout's <code>showDropIndicator()</code> method
* to display the drop indicator and initiate drag scrolling.
*
* @param event The DragEvent object.
*
* @see spark.layouts.LayoutBase#showDropIndicator
* @see spark.layouts.LayoutBase#hideDropIndicator
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
protected function dragOverHandler(event:DragEvent):void
{
if (event.isDefaultPrevented())
return;
var dropLocation:DropLocation = calculateDropLocation(event);
if (dropLocation)
{
// Show focus
drawFocusAnyway = true;
drawFocus(true);
// Notify manager we can drop
DragManager.showFeedback(event.ctrlKey ? DragManager.COPY : DragManager.MOVE);
// Show drop indicator
grid.layout.showDropIndicator(dropLocation);
}
else
{
// Hide if previously showing
grid.layout.hideDropIndicator();
// Hide focus
drawFocus(false);
drawFocusAnyway = false;
// Notify manager we can't drop
DragManager.showFeedback(DragManager.NONE);
}
}
/**
* @private
* Handles <code>DragEvent.DRAG_EXIT</code> events. This method hides
* the UI feedback by calling the <code>hideDropFeedback()</code> method
* and also hides the drop indicator by calling the layout's
* <code>hideDropIndicator()</code> method.
*
* @param event The DragEvent object.
*
* @see spark.layouts.LayoutBase#showDropIndicator
* @see spark.layouts.LayoutBase#hideDropIndicator
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
protected function dragExitHandler(event:DragEvent):void
{
if (event.isDefaultPrevented())
return;
// Hide if previously showing
grid.layout.hideDropIndicator();
// Hide focus
drawFocus(false);
drawFocusAnyway = false;
// Destroy the dropIndicator instance
destroyDropIndicator();
}
/**
* @private
*
* @langversion 3.0
* @playerversion Flash 10
* @playerversion AIR 1.5
* @productversion Flex 4
*/
private function touchInteractionStartHandler(event:TouchInteractionEvent):void
{
// cancel actual selection
mouseDownRowIndex = -1;
mouseDownColumnIndex = -1;
mouseDownObject = null;
mouseDownPoint = null;
pendingSelectionOnMouseUp = false;
}
/**
* @private
* Handles <code>DragEvent.DRAG_DROP events</code>. This method hides
* the drop feedback by calling the <code>hideDropFeedback()</code> method.
*
* <p>If the action is a <code>COPY</code>,
* then this method makes a deep copy of the object
* by calling the <code>ObjectUtil.copy()</code> method,
* and replaces the copy's <code>uid</code> property (if present)
* with a new value by calling the <code>UIDUtil.createUID()</code> method.</p>
*
* @param event The DragEvent object.
*
* @see mx.utils.ObjectUtil
* @see mx.utils.UIDUtil
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
protected function dragDropHandler(event:DragEvent):void
{
if (event.isDefaultPrevented())
return;
// Hide the drop indicator
grid.layout.hideDropIndicator();
destroyDropIndicator();
// Hide focus
drawFocus(false);
drawFocusAnyway = false;
// Get the dropLocation
var dropLocation:DropLocation = calculateDropLocation(event);
if (!dropLocation)
return;
// Find the dropIndex
var dropIndex:int = dropLocation.dropIndex;
// Make sure the manager has the appropriate action
DragManager.showFeedback(event.ctrlKey ? DragManager.COPY : DragManager.MOVE);
var dragSource:DragSource = event.dragSource;
var items:Vector.<Object> = dragSource.dataForFormat("itemsByIndex") as Vector.<Object>;
var caretIndex:int = -1;
if (dragSource.hasFormat("caretIndex"))
caretIndex = event.dragSource.dataForFormat("caretIndex") as int;
// Clear the selection first to avoid extra work while adding and removing items.
// We will set a new selection further below in the method.
var indices:Vector.<int> = selectedIndices;
clearSelection();
validateProperties(); // To commit the selection
// If we are reordering the list, remove the items now,
// adjusting the dropIndex in the mean time.
// If the items are drag moved to this list from a different list,
// the drag initiator will remove the items when it receives the
// DragEvent.DRAG_COMPLETE event.
if (dragMoveEnabled &&
event.action == DragManager.MOVE &&
event.dragInitiator == this)
{
// Remove the previously selected items
indices.sort(compareValues);
for (var i:int = indices.length - 1; i >= 0; i--)
{
if (indices[i] < dropIndex)
dropIndex--;
dataProvider.removeItemAt(indices[i]);
}
}
// Drop the items at the dropIndex
var newSelection:Vector.<int> = new Vector.<int>();
// Update the selection with the index of the caret item
if (caretIndex != -1)
newSelection.push(dropIndex + caretIndex);
// Create dataProvider if needed
if (!dataProvider)
dataProvider = new ArrayCollection();
var copyItems:Boolean = (event.action == DragManager.COPY);
for (i = 0; i < items.length; i++)
{
// Get the item, clone if needed
var item:Object = items[i];
if (copyItems)
item = copyItemWithUID(item);
// Copy the data
dataProvider.addItemAt(item, dropIndex + i);
// Update the selection
if (i != caretIndex)
newSelection.push(dropIndex + i);
}
// Set the selection
selectedIndices = newSelection;
// Scroll the caret index in view
if (caretIndex != -1)
ensureCellIsVisible(dropIndex + items.length);
}
/**
* Makes a deep copy of the object by calling the
* <code>ObjectUtil.copy()</code> method, and replaces
* the copy's <code>uid</code> property (if present) with a
* new value by calling the <code>UIDUtil.createUID()</code> method.
*
* <p>This method is used for a drag and drop copy.</p>
*
* @param item The item to copy.
*
* @return The copy of the object.
*
* @see mx.utils.ObjectUtil
* @see mx.utils.UIDUtil
*
* @langversion 3.0
* @playerversion Flash 11
* @playerversion AIR 3.0
* @productversion Flex 5.0
*/
protected function copyItemWithUID(item:Object):Object
{
var copyObj:Object = ObjectUtil.copy(item);
if (copyObj is IUID)
{
IUID(copyObj).uid = UIDUtil.createUID();
}
else if (copyObj is Object && "mx_internal_uid" in copyObj)
{
copyObj.mx_internal_uid = UIDUtil.createUID();
}
return copyObj;
}
}
} |
package {
public class Main {
public function Main() {
new Some$(EntryPoint)([]);
}
}
}
class Some {
public function Some() {
}
} |
/*
Copyright (c) 2012 Josh Tynjala
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
*/
package feathers.data
{
import flash.errors.IllegalOperationError;
/**
* An <code>IListCollectionDataDescriptor</code> implementation for Vectors.
*
* @see ListCollection
* @see IListCollectionDataDescriptor
*/
public class VectorListCollectionDataDescriptor implements IListCollectionDataDescriptor
{
/**
* Constructor.
*/
public function VectorListCollectionDataDescriptor()
{
}
/**
* @inheritDoc
*/
public function getLength(data:Object):int
{
this.checkForCorrectDataType(data);
return (data as Vector.<*>).length;
}
/**
* @inheritDoc
*/
public function getItemAt(data:Object, index:int):Object
{
this.checkForCorrectDataType(data);
return (data as Vector.<*>)[index];
}
/**
* @inheritDoc
*/
public function setItemAt(data:Object, item:Object, index:int):void
{
this.checkForCorrectDataType(data);
(data as Vector.<*>)[index] = item;
}
/**
* @inheritDoc
*/
public function addItemAt(data:Object, item:Object, index:int):void
{
this.checkForCorrectDataType(data);
(data as Vector.<*>).splice(index, 0, item);
}
/**
* @inheritDoc
*/
public function removeItemAt(data:Object, index:int):Object
{
this.checkForCorrectDataType(data);
return (data as Vector.<*>).splice(index, 1)[0];
}
/**
* @inheritDoc
*/
public function getItemIndex(data:Object, item:Object):int
{
this.checkForCorrectDataType(data);
return (data as Vector.<*>).indexOf(item);
}
/**
* @private
*/
protected function checkForCorrectDataType(data:Object):void
{
if(!(data is Vector.<*>))
{
throw new IllegalOperationError("Expected Vector. Received " + Object(data).constructor + " instead.");
}
}
}
} |
package
{
public class Spin2Constants
{
public static const CHAT_FRAME_POOL_INITIAL_SIZE:int = 5;
public static const CHAT_FRAME_POOL_GROW_SIZE:int = 5;
public static const CHAT_FRAME_POOL_WARN_LIMIT:int = 80;
public static const PAYLOAD_POOL_INITIAL_SIZE:int = 5;
public static const PAYLOAD_POOL_GROW_SIZE:int = 5;
public static const PAYLOAD_POOL_WARN_LIMIT:int = 80;
public static const REQUEST_POOL_INITIAL_SIZE:int = 5;
public static const REQUEST_POOL_GROW_SIZE:int = 5;
public static const REQUEST_POOL_WARN_LIMIT:int = 80;
public static const RESPONSE_POOL_INITIAL_SIZE:int = 5;
public static const RESPONSE_POOL_GROW_SIZE:int = 5;
public static const RESPONSE_POOL_WARN_LIMIT:int = 80;
public function Spin2Constants()
{
super();
}
}
}
|
package com.sixfootsoftware.pitstop {
public class SpriteRegistry {
public static var grid:CarGrid;
public static var backgroundCarGrid:BackgroundCar;
public static function reset():void {
grid = new CarGrid();
backgroundCarGrid = new BackgroundCar();
}
}
}
|
/*
Feathers
Copyright 2012-2020 Bowler Hat LLC. All Rights Reserved.
This program is free software. You can redistribute and/or modify it in
accordance with the terms of the accompanying license agreement.
*/
package feathers.core
{
import feathers.controls.text.BitmapFontTextRenderer;
import feathers.controls.text.StageTextTextEditor;
import feathers.events.FeathersEventType;
import feathers.layout.ILayoutData;
import feathers.layout.ILayoutDisplayObject;
import feathers.motion.effectClasses.IEffectContext;
import feathers.motion.effectClasses.IMoveEffectContext;
import feathers.motion.effectClasses.IResizeEffectContext;
import feathers.skins.IStyleProvider;
import feathers.utils.display.getDisplayObjectDepthFromStage;
import flash.errors.IllegalOperationError;
import flash.geom.Matrix;
import flash.geom.Point;
import flash.geom.Rectangle;
import flash.utils.Dictionary;
import flash.utils.getQualifiedClassName;
import starling.display.DisplayObject;
import starling.display.Sprite;
import starling.events.Event;
import starling.events.EventDispatcher;
import starling.utils.MatrixUtil;
import starling.utils.Pool;
/**
* If this component supports focus, this optional skin will be
* displayed above the component when <code>showFocus()</code> is
* called. The focus indicator skin is not always displayed when the
* component has focus. Typically, if the component receives focus from
* a touch, the focus indicator is not displayed.
*
* <p>The <code>touchable</code> of this skin will always be set to
* <code>false</code> so that it does not "steal" touches from the
* component or its sub-components. This skin will not affect the
* dimensions of the component or its hit area. It is simply a visual
* indicator of focus.</p>
*
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* <p>In the following example, the focus indicator skin is set:</p>
*
* <listing version="3.0">
* control.focusIndicatorSkin = new Image( texture );</listing>
*
* @default null
*
* @see #style:focusPaddingTop
* @see #style:focusPaddingRight
* @see #style:focusPaddingBottom
* @see #style:focusPaddingLeft
* @see #style:focusPadding
*/
[Style(name="focusIndicatorSkin",type="starling.display.DisplayObject")]
/**
* Quickly sets all focus padding properties to the same value. The
* <code>focusPadding</code> getter always returns the value of
* <code>focusPaddingTop</code>, but the other focus padding values may
* be different.
*
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* <p>The following example gives the button 2 pixels of focus padding
* on all sides:</p>
*
* <listing version="3.0">
* control.focusPadding = 2;</listing>
*
* @default 0
*
* @see #style:focusPaddingTop
* @see #style:focusPaddingRight
* @see #style:focusPaddingBottom
* @see #style:focusPaddingLeft
*/
[Style(name="focusPadding",type="Number")]
/**
* The minimum space, in pixels, between the object's top edge and the
* top edge of the focus indicator skin. A negative value may be used
* to expand the focus indicator skin outside the bounds of the object.
*
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* <p>The following example gives the focus indicator skin -2 pixels of
* padding on the top edge only:</p>
*
* <listing version="3.0">
* control.focusPaddingTop = -2;</listing>
*
* @default 0
*
* @see #style:focusPadding
*/
[Style(name="focusPaddingTop",type="Number")]
/**
* The minimum space, in pixels, between the object's right edge and the
* right edge of the focus indicator skin. A negative value may be used
* to expand the focus indicator skin outside the bounds of the object.
*
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* <p>The following example gives the focus indicator skin -2 pixels of
* padding on the right edge only:</p>
*
* <listing version="3.0">
* control.focusPaddingRight = -2;</listing>
*
* @default 0
*
* @see #style:focusPadding
*/
[Style(name="focusPaddingRight",type="Number")]
/**
* The minimum space, in pixels, between the object's bottom edge and the
* bottom edge of the focus indicator skin. A negative value may be used
* to expand the focus indicator skin outside the bounds of the object.
*
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* <p>The following example gives the focus indicator skin -2 pixels of
* padding on the bottom edge only:</p>
*
* <listing version="3.0">
* control.focusPaddingBottom = -2;</listing>
*
* @default 0
*
* @see #style:focusPadding
*/
[Style(name="focusPaddingBottom",type="Number")]
/**
* The minimum space, in pixels, between the object's left edge and the
* left edge of the focus indicator skin. A negative value may be used
* to expand the focus indicator skin outside the bounds of the object.
*
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* <p>The following example gives the focus indicator skin -2 pixels of
* padding on the right edge only:</p>
*
* <listing version="3.0">
* control.focusPaddingLeft = -2;</listing>
*
* @default 0
*
* @see #style:focusPadding
*/
[Style(name="focusPaddingLeft",type="Number")]
/**
* Dispatched after <code>initialize()</code> has been called, but before
* the first time that <code>draw()</code> has been called.
*
* <p>The properties of the event object have the following values:</p>
* <table class="innertable">
* <tr><th>Property</th><th>Value</th></tr>
* <tr><td><code>bubbles</code></td><td>false</td></tr>
* <tr><td><code>currentTarget</code></td><td>The Object that defines the
* event listener that handles the event. For example, if you use
* <code>myButton.addEventListener()</code> to register an event listener,
* myButton is the value of the <code>currentTarget</code>.</td></tr>
* <tr><td><code>data</code></td><td>null</td></tr>
* <tr><td><code>target</code></td><td>The Object that dispatched the event;
* it is not always the Object listening for the event. Use the
* <code>currentTarget</code> property to always access the Object
* listening for the event.</td></tr>
* </table>
*
* @eventType feathers.events.FeathersEventType.INITIALIZE
*/
[Event(name="initialize",type="starling.events.Event")]
/**
* Dispatched after the component has validated for the first time. Both
* <code>initialize()</code> and <code>draw()</code> will have been called,
* and all children will have been created.
*
* <p>The properties of the event object have the following values:</p>
* <table class="innertable">
* <tr><th>Property</th><th>Value</th></tr>
* <tr><td><code>bubbles</code></td><td>false</td></tr>
* <tr><td><code>currentTarget</code></td><td>The Object that defines the
* event listener that handles the event. For example, if you use
* <code>myButton.addEventListener()</code> to register an event listener,
* myButton is the value of the <code>currentTarget</code>.</td></tr>
* <tr><td><code>data</code></td><td>null</td></tr>
* <tr><td><code>target</code></td><td>The Object that dispatched the event;
* it is not always the Object listening for the event. Use the
* <code>currentTarget</code> property to always access the Object
* listening for the event.</td></tr>
* </table>
*
* @eventType feathers.events.FeathersEventType.CREATION_COMPLETE
*/
[Event(name="creationComplete",type="starling.events.Event")]
/**
* Dispatched when the width or height of the control changes.
*
* <p>The properties of the event object have the following values:</p>
* <table class="innertable">
* <tr><th>Property</th><th>Value</th></tr>
* <tr><td><code>bubbles</code></td><td>false</td></tr>
* <tr><td><code>currentTarget</code></td><td>The Object that defines the
* event listener that handles the event. For example, if you use
* <code>myButton.addEventListener()</code> to register an event listener,
* myButton is the value of the <code>currentTarget</code>.</td></tr>
* <tr><td><code>data</code></td><td>null</td></tr>
* <tr><td><code>target</code></td><td>The Object that dispatched the event;
* it is not always the Object listening for the event. Use the
* <code>currentTarget</code> property to always access the Object
* listening for the event.</td></tr>
* </table>
*
* @eventType starling.events.Event.RESIZE
*/
[Event(name="resize",type="starling.events.Event")]
/**
* Base class for all UI controls. Implements invalidation and sets up some
* basic template functions like <code>initialize()</code> and
* <code>draw()</code>.
*
* <p>This is a base class for Feathers components that isn't meant to be
* instantiated directly. It should only be subclassed. For a simple
* component that will automatically size itself based on its children,
* and with optional support for layouts, see <code>LayoutGroup</code>.</p>
*
* @see feathers.controls.LayoutGroup
*
* @productversion Feathers 1.0.0
*/
public class FeathersControl extends Sprite implements IFeathersControl, ILayoutDisplayObject
{
/**
* @private
*/
private static const HELPER_POINT:Point = new Point();
/**
* Flag to indicate that everything is invalid and should be redrawn.
*/
public static const INVALIDATION_FLAG_ALL:String = "all";
/**
* Invalidation flag to indicate that the state has changed. Used by
* <code>isEnabled</code>, but may be used for other control states too.
*
* @see #isEnabled
*/
public static const INVALIDATION_FLAG_STATE:String = "state";
/**
* Invalidation flag to indicate that the dimensions of the UI control
* have changed.
*/
public static const INVALIDATION_FLAG_SIZE:String = "size";
/**
* Invalidation flag to indicate that the styles or visual appearance of
* the UI control has changed.
*/
public static const INVALIDATION_FLAG_STYLES:String = "styles";
/**
* Invalidation flag to indicate that the skin of the UI control has changed.
*/
public static const INVALIDATION_FLAG_SKIN:String = "skin";
/**
* Invalidation flag to indicate that the layout of the UI control has
* changed.
*/
public static const INVALIDATION_FLAG_LAYOUT:String = "layout";
/**
* Invalidation flag to indicate that the primary data displayed by the
* UI control has changed.
*/
public static const INVALIDATION_FLAG_DATA:String = "data";
/**
* Invalidation flag to indicate that the scroll position of the UI
* control has changed.
*/
public static const INVALIDATION_FLAG_SCROLL:String = "scroll";
/**
* Invalidation flag to indicate that the selection of the UI control
* has changed.
*/
public static const INVALIDATION_FLAG_SELECTED:String = "selected";
/**
* Invalidation flag to indicate that the focus of the UI control has
* changed.
*/
public static const INVALIDATION_FLAG_FOCUS:String = "focus";
/**
* @private
*/
protected static const INVALIDATION_FLAG_TEXT_RENDERER:String = "textRenderer";
/**
* @private
*/
protected static const INVALIDATION_FLAG_TEXT_EDITOR:String = "textEditor";
/**
* @private
*/
protected static const ILLEGAL_WIDTH_ERROR:String = "A component's width cannot be NaN.";
/**
* @private
*/
protected static const ILLEGAL_HEIGHT_ERROR:String = "A component's height cannot be NaN.";
/**
* @private
*/
protected static const ABSTRACT_CLASS_ERROR:String = "FeathersControl is an abstract class. For a lightweight Feathers wrapper, use feathers.controls.LayoutGroup.";
/**
* A function used by all UI controls that support text renderers to
* create an ITextRenderer instance. You may replace the default
* function with your own, if you prefer not to use the
* BitmapFontTextRenderer.
*
* <p>The function is expected to have the following signature:</p>
* <pre>function():ITextRenderer</pre>
*
* @see ../../../help/text-renderers.html Introduction to Feathers text renderers
* @see feathers.core.ITextRenderer
*/
public static var defaultTextRendererFactory:Function = function():ITextRenderer
{
return new BitmapFontTextRenderer();
}
/**
* A function used by all UI controls that support text editor to
* create an <code>ITextEditor</code> instance. You may replace the
* default function with your own, if you prefer not to use the
* <code>StageTextTextEditor</code>.
*
* <p>The function is expected to have the following signature:</p>
* <pre>function():ITextEditor</pre>
*
* @see ../../../help/text-editors.html Introduction to Feathers text editors
* @see feathers.core.ITextEditor
*/
public static var defaultTextEditorFactory:Function = function():ITextEditor
{
return new StageTextTextEditor();
}
/**
* Constructor.
*/
public function FeathersControl()
{
super();
if(Object(this).constructor == FeathersControl)
{
throw new Error(ABSTRACT_CLASS_ERROR);
}
this.styleProvider = this.defaultStyleProvider;
this.addEventListener(Event.ADDED_TO_STAGE, feathersControl_addedToStageHandler);
this.addEventListener(Event.REMOVED_FROM_STAGE, feathersControl_removedFromStageHandler);
if(this is IFocusDisplayObject)
{
this.addEventListener(FeathersEventType.FOCUS_IN, focusInHandler);
this.addEventListener(FeathersEventType.FOCUS_OUT, focusOutHandler);
}
}
/**
* @private
*/
protected var _showEffectContext:IEffectContext = null;
/**
* @private
*/
protected var _showEffect:Function = null;
/**
* An optional effect that is activated when the component is shown.
* More specifically, this effect plays when the <code>visible</code>
* property is set to <code>true</code>.
*
* <p>In the following example, a show effect fades the component's
* <code>alpha</code> property from <code>0</code> to <code>1</code>:</p>
*
* <listing version="3.0">
* control.showEffect = Fade.createFadeBetweenEffect(0, 1);</listing>
*
* <p>A number of animated effects may be found in the
* <a href="../motion/package-detail.html">feathers.motion</a> package.
* However, you are not limited to only these effects. It's possible
* to create custom effects too.</p>
*
* <p>A custom effect function should have the following signature:</p>
* <pre>function(target:DisplayObject):IEffectContext</pre>
*
* <p>The <code>IEffectContext</code> is used by the component to
* control the effect, performing actions like playing the effect,
* pausing it, or cancelling it.</p>
*
* <p>Custom animated effects that use
* <code>starling.display.Tween</code> typically return a
* <code>TweenEffectContext</code>. In the following example, we
* recreate the <code>Fade.createFadeBetweenEffect()</code> used in the
* previous example.</p>
*
* <listing version="3.0">
* control.showEffect = function(target:DisplayObject):IEffectContext
* {
* target.alpha = 0;
* var tween:Tween = new Tween(target, 0.5, Transitions.EASE_OUT);
* tween.fadeTo(1);
* return new TweenEffectContext(target, tween);
* };</listing>
*
* @default null
*
* @see #visible
* @see #hideEffect
* @see ../../../help/effects.html Effects and animation for Feathers components
* @see feathers.motion.effectClasses.IEffectContext
* @see feathers.motion.effectClasses.TweenEffectContext
*/
public function get showEffect():Function
{
return this._showEffect;
}
/**
* @private
*/
public function set showEffect(value:Function):void
{
this._showEffect = value;
}
/**
* @private
*/
protected var _hideEffectContext:IEffectContext = null;
/**
* @private
*/
protected var _hideEffect:Function = null;
/**
* An optional effect that is activated when the component is hidden.
* More specifically, this effect plays when the <code>visible</code>
* property is set to <code>false</code>.
*
* <p>In the following example, a hide effect fades the component's
* <code>alpha</code> property to <code>0</code>:</p>
*
* <listing version="3.0">
* control.hideEffect = Fade.createFadeOutEffect();</listing>
*
* <p>A number of animated effects may be found in the
* <a href="../motion/package-detail.html">feathers.motion</a> package.
* However, you are not limited to only these effects. It's possible
* to create custom effects too.</p>
*
* <p>A custom effect function should have the following signature:</p>
* <pre>function(target:DisplayObject):IEffectContext</pre>
*
* <p>The <code>IEffectContext</code> is used by the component to
* control the effect, performing actions like playing the effect,
* pausing it, or cancelling it.</p>
*
* <p>Custom animated effects that use
* <code>starling.display.Tween</code> typically return a
* <code>TweenEffectContext</code>. In the following example, we
* recreate the <code>Fade.createFadeOutEffect()</code> used in the
* previous example.</p>
*
* <listing version="3.0">
* control.hideEffect = function(target:DisplayObject):IEffectContext
* {
* var tween:Tween = new Tween(target, 0.5, Transitions.EASE_OUT);
* tween.fadeTo(0);
* return new TweenEffectContext(target, tween);
* };</listing>
*
* @default null
*
* @see #visible
* @see #showEffect
* @see ../../../help/effects.html Effects and animation for Feathers components
* @see feathers.motion.effectClasses.IEffectContext
* @see feathers.motion.effectClasses.TweenEffectContext
*/
public function get hideEffect():Function
{
return this._hideEffect;
}
/**
* @private
*/
public function set hideEffect(value:Function):void
{
this._hideEffect = value;
}
/**
* @private
*/
protected var _pendingVisible:Boolean = true;
/**
* @private
*/
override public function set visible(value:Boolean):void
{
if(value == this._pendingVisible)
{
return;
}
this._pendingVisible = value;
if(this._suspendEffectsCount == 0 && this._hideEffectContext !== null)
{
this._hideEffectContext.interrupt();
this._hideEffectContext = null;
}
if(this._suspendEffectsCount == 0 && this._showEffectContext !== null)
{
this._showEffectContext.interrupt();
this._showEffectContext = null;
}
if(this._pendingVisible)
{
super.visible = this._pendingVisible;
if(this.isCreated && this._suspendEffectsCount == 0 && this._showEffect !== null && this.stage !== null)
{
this._showEffectContext = IEffectContext(this._showEffect(this));
this._showEffectContext.addEventListener(Event.COMPLETE, showEffectContext_completeHandler);
this._showEffectContext.play();
}
}
else
{
if(!this.isCreated || this._suspendEffectsCount > 0 || this._hideEffect === null || this.stage === null)
{
super.visible = this._pendingVisible;
}
else
{
this._hideEffectContext = IEffectContext(this._hideEffect(this));
this._hideEffectContext.addEventListener(Event.COMPLETE, hideEffectContext_completeHandler);
this._hideEffectContext.play();
}
}
}
/**
* @private
*/
protected var _focusInEffectContext:IEffectContext = null;
/**
* @private
*/
protected var _focusInEffect:Function = null;
/**
* An optional effect that is activated when the component receives
* focus.
*
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* <p>A number of animated effects may be found in the
* <a href="../motion/package-detail.html">feathers.motion</a> package.
* However, you are not limited to only these effects. It's possible
* to create custom effects too.</p>
*
* <p>A custom effect function should have the following signature:</p>
* <pre>function(target:DisplayObject):IEffectContext</pre>
*
* <p>The <code>IEffectContext</code> is used by the component to
* control the effect, performing actions like playing the effect,
* pausing it, or cancelling it.</p>
*
* <p>Custom animated effects that use
* <code>starling.display.Tween</code> typically return a
* <code>TweenEffectContext</code>.</p>
*
* @default null
*
* @see #focusOutEffect
* @see ../../../help/effects.html Effects and animation for Feathers components
* @see feathers.motion.effectClasses.IEffectContext
* @see feathers.motion.effectClasses.TweenEffectContext
*/
public function get focusInEffect():Function
{
return this._focusInEffect;
}
/**
* @private
*/
public function set focusInEffect(value:Function):void
{
this._focusInEffect = value;
}
/**
* @private
*/
protected var _focusOutEffectContext:IEffectContext = null;
/**
* @private
*/
protected var _focusOutEffect:Function = null;
/**
* An optional effect that is activated when the component loses focus.
*
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* <p>A number of animated effects may be found in the
* <a href="../motion/package-detail.html">feathers.motion</a> package.
* However, you are not limited to only these effects. It's possible
* to create custom effects too.</p>
*
* <p>A custom effect function should have the following signature:</p>
* <pre>function(target:DisplayObject):IEffectContext</pre>
*
* <p>The <code>IEffectContext</code> is used by the component to
* control the effect, performing actions like playing the effect,
* pausing it, or cancelling it.</p>
*
* <p>Custom animated effects that use
* <code>starling.display.Tween</code> typically return a
* <code>TweenEffectContext</code>.</p>
*
* @default null
*
* @see #focusInEffect
* @see ../../../help/effects.html Effects and animation for Feathers components
* @see feathers.motion.effectClasses.IEffectContext
* @see feathers.motion.effectClasses.TweenEffectContext
*/
public function get focusOutEffect():Function
{
return this._focusOutEffect;
}
/**
* @private
*/
public function set focusOutEffect(value:Function):void
{
this._focusOutEffect = value;
}
/**
* @private
*/
protected var _addedEffectContext:IEffectContext = null;
/**
* @private
*/
protected var _addedEffect:Function = null;
/**
* An optional effect that is activated when the component is added to
* the stage. Typically used to animate the component's appearance when
* it is first displayed.
*
* <p>In the following example, an added effect fades the component's
* <code>alpha</code> property from <code>0</code> to <code>1</code>:</p>
*
* <listing version="3.0">
* control.addedEffect = Fade.createFadeBetweenEffect(0, 1);</listing>
*
* <p>A number of animated effects may be found in the
* <a href="../motion/package-detail.html">feathers.motion</a> package.
* However, you are not limited to only these effects. It's possible
* to create custom effects too.</p>
*
* <p>A custom effect function should have the following signature:</p>
* <pre>function(target:DisplayObject):IEffectContext</pre>
*
* <p>The <code>IEffectContext</code> is used by the component to
* control the effect, performing actions like playing the effect,
* pausing it, or cancelling it.</p>
*
* <p>Custom animated effects that use
* <code>starling.display.Tween</code> typically return a
* <code>TweenEffectContext</code>. In the following example, we
* recreate the <code>Fade.createFadeBetweenEffect()</code> used in the
* previous example.</p>
*
* <listing version="3.0">
* control.addedEffect = function(target:DisplayObject):IEffectContext
* {
* target.alpha = 0;
* var tween:Tween = new Tween(target, 0.5, Transitions.EASE_OUT);
* tween.fadeTo(1);
* return new TweenEffectContext(target, tween);
* };</listing>
*
* @default null
*
* @see #removeFromParentWithEffect()
* @see ../../../help/effects.html Effects and animation for Feathers components
* @see feathers.motion.effectClasses.IEffectContext
* @see feathers.motion.effectClasses.TweenEffectContext
*/
public function get addedEffect():Function
{
return this._addedEffect;
}
/**
* @private
*/
public function set addedEffect(value:Function):void
{
this._addedEffect = value;
}
/**
* @private
*/
protected var _removedEffectContext:IEffectContext = null;
/**
* @private
*/
protected var _disposeAfterRemovedEffect:Boolean = false;
/**
* @private
*/
protected var _validationQueue:ValidationQueue;
/**
* The concatenated <code>styleNameList</code>, with values separated
* by spaces. Style names are somewhat similar to classes in CSS
* selectors. In Feathers, they are a non-unique identifier that can
* differentiate multiple styles of the same type of UI control. A
* single control may have many style names, and many controls can share
* a single style name. A <a target="_top" href="../../../help/themes.html">theme</a>
* or another skinning mechanism may use style names to provide a
* variety of visual appearances for a single component class.
*
* <p>In general, the <code>styleName</code> property should not be set
* directly on a Feathers component. You should add and remove style
* names from the <code>styleNameList</code> property instead.</p>
*
* @default ""
*
* @see #styleNameList
* @see ../../../help/themes.html Introduction the Feathers themes
* @see ../../../help/custom-themes.html Creating custom Feathers themes
*/
public function get styleName():String
{
return this._styleNameList.value;
}
/**
* @private
*/
public function set styleName(value:String):void
{
this._styleNameList.value = value;
}
/**
* @private
*/
protected var _styleNameList:TokenList = new TokenList();
/**
* Contains a list of all "styles" assigned to this control. Names are
* like classes in CSS selectors. They are a non-unique identifier that
* can differentiate multiple styles of the same type of UI control. A
* single control may have many names, and many controls can share a
* single name. A <a target="_top" href="../../../help/themes.html">theme</a>
* or another skinning mechanism may use style names to provide a
* variety of visual appearances for a single component class.
*
* <p>Names may be added, removed, or toggled on the
* <code>styleNameList</code>. Names cannot contain spaces.</p>
*
* <p>In the following example, a name is added to the name list:</p>
*
* <listing version="3.0">
* control.styleNameList.add( "custom-component-name" );</listing>
*
* @see #styleName
* @see ../../../help/themes.html Introduction to Feathers themes
* @see ../../../help/custom-themes.html Creating custom Feathers themes
*/
public function get styleNameList():TokenList
{
return this._styleNameList;
}
/**
* @private
*/
protected var _styleProvider:IStyleProvider;
/**
* When a component initializes, a style provider may be used to set
* properties that affect the component's visual appearance.
*
* <p>You can set or replace an existing style provider at any time
* before a component initializes without immediately affecting the
* component's visual appearance. After the component initializes, the
* style provider may still be changed, but any properties that
* were set by the previous style provider will not be reset to their
* default values.</p>
*
* @see #styleName
* @see #styleNameList
* @see ../../../help/themes.html Introduction to Feathers themes
*/
public function get styleProvider():IStyleProvider
{
return this._styleProvider;
}
/**
* @private
*/
public function set styleProvider(value:IStyleProvider):void
{
if(this._styleProvider === value)
{
return;
}
if(this._applyingStyles)
{
throw new IllegalOperationError("Cannot change styleProvider while the current style provider is applying styles.")
}
if(this._styleProvider !== null && this._styleProvider is EventDispatcher)
{
EventDispatcher(this._styleProvider).removeEventListener(Event.CHANGE, styleProvider_changeHandler);
}
this._styleProvider = value;
if(this._styleProvider !== null)
{
if(this.isInitialized)
{
this._applyingStyles = true;
this._styleProvider.applyStyles(this);
this._applyingStyles = false;
}
if(this._styleProvider is EventDispatcher)
{
EventDispatcher(this._styleProvider).addEventListener(Event.CHANGE, styleProvider_changeHandler);
}
}
}
/**
* When the <code>FeathersControl</code> constructor is called, the
* <code>styleProvider</code> property is set to this value. May be
* <code>null</code>.
*
* <p>Typically, a subclass of <code>FeathersControl</code> will
* override this function to return its static <code>globalStyleProvider</code>
* value. For instance, <code>feathers.controls.Button</code> overrides
* this function, and its implementation looks like this:</p>
*
* <listing version="3.0">
* override protected function get defaultStyleProvider():IStyleProvider
* {
* return Button.globalStyleProvider;
* }</listing>
*
* @see #styleProvider
*/
protected function get defaultStyleProvider():IStyleProvider
{
return null;
}
/**
* @private
*/
protected var _isQuickHitAreaEnabled:Boolean = false;
/**
* Similar to <code>mouseChildren</code> on the classic display list. If
* <code>true</code>, children cannot dispatch touch events, but hit
* tests will be much faster. Easier than overriding
* <code>hitTest()</code>.
*
* <p>In the following example, the quick hit area is enabled:</p>
*
* <listing version="3.0">
* control.isQuickHitAreaEnabled = true;</listing>
*
* @default false
*/
public function get isQuickHitAreaEnabled():Boolean
{
return this._isQuickHitAreaEnabled;
}
/**
* @private
*/
public function set isQuickHitAreaEnabled(value:Boolean):void
{
this._isQuickHitAreaEnabled = value;
}
/**
* @private
*/
protected var _hitArea:Rectangle = new Rectangle();
/**
* @private
*/
protected var _isInitializing:Boolean = false;
/**
* @private
*/
protected var _isInitialized:Boolean = false;
/**
* Determines if the component has been initialized yet. The
* <code>initialize()</code> function is called one time only, when the
* Feathers UI control is added to the display list for the first time.
*
* <p>In the following example, we check if the component is initialized
* or not, and we listen for an event if it isn't:</p>
*
* <listing version="3.0">
* if( !control.isInitialized )
* {
* control.addEventListener( FeathersEventType.INITIALIZE, initializeHandler );
* }</listing>
*
* @see #event:initialize
* @see #isCreated
*/
public function get isInitialized():Boolean
{
return this._isInitialized;
}
/**
* @private
*/
protected var _applyingStyles:Boolean = false;
/**
* @private
*/
protected var _restrictedStyles:Dictionary;
/**
* @private
* A flag that indicates that everything is invalid. If true, no other
* flags will need to be tracked.
*/
protected var _isAllInvalid:Boolean = false;
/**
* @private
*/
protected var _invalidationFlags:Object = {};
/**
* @private
*/
protected var _delayedInvalidationFlags:Object = {};
/**
* @private
*/
protected var _isEnabled:Boolean = true;
/**
* Indicates whether the control is interactive or not.
*
* <p>In the following example, the control is disabled:</p>
*
* <listing version="3.0">
* control.isEnabled = false;</listing>
*
* @default true
*/
public function get isEnabled():Boolean
{
return _isEnabled;
}
/**
* @private
*/
public function set isEnabled(value:Boolean):void
{
if(this._isEnabled == value)
{
return;
}
this._isEnabled = value;
this.invalidate(INVALIDATION_FLAG_STATE);
}
/**
* @private
*/
protected var _explicitWidth:Number = NaN;
/**
* The width value explicitly set by passing a value to the
* <code>width</code> setter or to the <code>setSize()</code> method.
*/
public function get explicitWidth():Number
{
return this._explicitWidth;
}
/**
* @private
*/
protected var _resizeEffectContext:IEffectContext = null;
/**
* @private
*/
protected var _resizeEffect:Function = null;
/**
* An optional effect that is activated when the component is resized
* with new dimensions. More specifically, this effect plays when the
* <code>width</code> or <code>height</code> property changes.
*
* <p>In the following example, a resize effect will animate the new
* dimensions of the component when it resizes:</p>
*
* <listing version="3.0">
* control.resizeEffect = Resize.createResizeEffect();</listing>
*
* <p>A custom effect function should have the following signature:</p>
* <pre>function(target:DisplayObject):IResizeEffectContext</pre>
*
* <p>The <code>IResizeEffectContext</code> is used by the component to
* control the effect, performing actions like playing the effect,
* pausing it, or cancelling it. Custom animated resize effects that use
* <code>starling.display.Tween</code> typically return a
* <code>TweenResizeEffectContext</code>.</p>
*
* @see feathers.motion.Resize
* @see #width
* @see #height
* @see #setSize()
*/
public function get resizeEffect():Function
{
return this._resizeEffect;
}
/**
* @private
*/
public function set resizeEffect(value:Function):void
{
this._resizeEffect = value;
}
/**
* @private
*/
protected var _moveEffectContext:IEffectContext = null;
/**
* @private
*/
protected var _moveEffect:Function = null;
/**
* An optional effect that is activated when the component is moved to
* a new position. More specifically, this effect plays when the
* <code>x</code> or <code>y</code> property changes.
*
* <p>In the following example, a move effect will animate the new
* position of the component when it moves:</p>
*
* <listing version="3.0">
* control.moveEffect = Move.createMoveEffect();</listing>
*
* <p>A custom effect function should have the following signature:</p>
* <pre>function(target:DisplayObject):IMoveEffectContext</pre>
*
* <p>The <code>IMoveEffectContext</code> is used by the component to
* control the effect, performing actions like playing the effect,
* pausing it, or cancelling it. Custom animated move effects that use
* <code>starling.display.Tween</code> typically return a
* <code>TweenMoveEffectContext</code>.</p>
*
* @default null
*
* @see feathers.motion.Move
* @see #x
* @see #y
* @see #move()
*/
public function get moveEffect():Function
{
return this._moveEffect;
}
/**
* @private
*/
public function set moveEffect(value:Function):void
{
this._moveEffect = value;
}
/**
* @private
*/
override public function set x(value:Number):void
{
var newY:Number = this.y;
if(this._suspendEffectsCount == 0 && this._moveEffectContext !== null)
{
if(this._moveEffectContext is IMoveEffectContext)
{
var moveEffectContext:IMoveEffectContext = IMoveEffectContext(this._moveEffectContext);
newY = moveEffectContext.newY;
}
this._moveEffectContext.interrupt();
this._moveEffectContext = null;
}
if(this.isCreated && this._suspendEffectsCount == 0 && this._moveEffect !== null)
{
this._moveEffectContext = IEffectContext(this._moveEffect(this));
this._moveEffectContext.addEventListener(Event.COMPLETE, moveEffectContext_completeHandler);
if(this._moveEffectContext is IMoveEffectContext)
{
moveEffectContext = IMoveEffectContext(this._moveEffectContext);
moveEffectContext.oldX = this.x;
moveEffectContext.oldY = this.y;
moveEffectContext.newX = value;
moveEffectContext.newY = newY;
}
else
{
super.x = value;
}
this._moveEffectContext.play();
}
else
{
super.x = value;
}
}
/**
* @private
*/
override public function set y(value:Number):void
{
var newX:Number = this.x;
if(this._suspendEffectsCount == 0 && this._moveEffectContext !== null)
{
if(this._moveEffectContext is IMoveEffectContext)
{
var moveEffectContext:IMoveEffectContext = IMoveEffectContext(this._moveEffectContext);
newX = moveEffectContext.newX;
}
this._moveEffectContext.interrupt();
this._moveEffectContext = null;
}
if(this.isCreated && this._suspendEffectsCount == 0 && this._moveEffect !== null)
{
this._moveEffectContext = IEffectContext(this._moveEffect(this));
this._moveEffectContext.addEventListener(Event.COMPLETE, moveEffectContext_completeHandler);
if(this._moveEffectContext is IMoveEffectContext)
{
moveEffectContext = IMoveEffectContext(this._moveEffectContext);
moveEffectContext.oldX = this.x;
moveEffectContext.oldY = this.y;
moveEffectContext.newX = newX;
moveEffectContext.newY = value;
}
else
{
super.y = value;
}
this._moveEffectContext.play();
}
else
{
super.y = value;
}
}
/**
* The final width value that should be used for layout. If the width
* has been explicitly set, then that value is used. If not, the actual
* width will be calculated automatically. Each component has different
* automatic sizing behavior, but it's usually based on the component's
* skin or content, including text or subcomponents.
*/
protected var actualWidth:Number = 0;
/**
* @private
* The <code>actualWidth</code> value that accounts for
* <code>scaleX</code>. Not intended to be used for layout since layout
* uses unscaled values. This is the value exposed externally through
* the <code>width</code> getter.
*/
protected var scaledActualWidth:Number = 0;
/**
* The width of the component, in pixels. This could be a value that was
* set explicitly, or the component will automatically resize if no
* explicit width value is provided. Each component has a different
* automatic sizing behavior, but it's usually based on the component's
* skin or content, including text or subcomponents.
*
* <p><strong>Note:</strong> Values of the <code>width</code> and
* <code>height</code> properties may not be accurate until after
* validation. If you are seeing <code>width</code> or <code>height</code>
* values of <code>0</code>, but you can see something on the screen and
* know that the value should be larger, it may be because you asked for
* the dimensions before the component had validated. Call
* <code>validate()</code> to tell the component to immediately redraw
* and calculate an accurate values for the dimensions.</p>
*
* <p>In the following example, the width is set to 120 pixels:</p>
*
* <listing version="3.0">
* control.width = 120;</listing>
*
* <p>In the following example, the width is cleared so that the
* component can automatically measure its own width:</p>
*
* <listing version="3.0">
* control.width = NaN;</listing>
*
* @see feathers.core.FeathersControl#setSize()
* @see feathers.core.FeathersControl#validate()
*/
override public function get width():Number
{
return this.scaledActualWidth;
}
/**
* @private
*/
override public function set width(value:Number):void
{
var valueIsNaN:Boolean = value !== value; //isNaN
if(valueIsNaN &&
this._explicitWidth !== this._explicitWidth) //isNaN
{
return;
}
if(this.scaleX != 1)
{
value /= this.scaleX;
}
if(this._explicitWidth == value)
{
return;
}
var hasSetExplicitWidth:Boolean = false;
var newHeight:Number = this.actualHeight;
if(this._suspendEffectsCount == 0 && this._resizeEffectContext !== null)
{
if(this._resizeEffectContext is IResizeEffectContext)
{
var resizeEffectContext:IResizeEffectContext = IResizeEffectContext(this._resizeEffectContext);
newHeight = resizeEffectContext.newHeight;
}
this._resizeEffectContext.interrupt();
this._resizeEffectContext = null;
}
if(!valueIsNaN && this.isCreated && this._suspendEffectsCount == 0 && this._resizeEffect !== null)
{
this._resizeEffectContext = IEffectContext(this._resizeEffect(this));
this._resizeEffectContext.addEventListener(Event.COMPLETE, resizeEffectContext_completeHandler);
if(this._resizeEffectContext is IResizeEffectContext)
{
resizeEffectContext = IResizeEffectContext(this._resizeEffectContext);
resizeEffectContext.oldWidth = this.actualWidth;
resizeEffectContext.oldHeight = this.actualHeight;
resizeEffectContext.newWidth = value;
resizeEffectContext.newHeight = newHeight;
}
else
{
this._explicitWidth = value;
hasSetExplicitWidth = true;
}
this._resizeEffectContext.play();
}
else
{
this._explicitWidth = value;
hasSetExplicitWidth = true;
}
if(hasSetExplicitWidth)
{
if(valueIsNaN)
{
this.actualWidth = this.scaledActualWidth = 0;
this.invalidate(INVALIDATION_FLAG_SIZE);
}
else
{
var result:Boolean = this.saveMeasurements(value, this.actualHeight, this.actualMinWidth, this.actualMinHeight);
if(result)
{
this.invalidate(INVALIDATION_FLAG_SIZE);
}
}
}
}
/**
* @private
*/
protected var _explicitHeight:Number = NaN;
/**
* The height value explicitly set by passing a value to the
* <code>height</code> setter or by calling the <code>setSize()</code>
* function.
*/
public function get explicitHeight():Number
{
return this._explicitHeight;
}
/**
* The final height value that should be used for layout. If the height
* has been explicitly set, then that value is used. If not, the actual
* height will be calculated automatically. Each component has different
* automatic sizing behavior, but it's usually based on the component's
* skin or content, including text or subcomponents.
*/
protected var actualHeight:Number = 0;
/**
* @private
* The <code>actualHeight</code> value that accounts for
* <code>scaleY</code>. Not intended to be used for layout since layout
* uses unscaled values. This is the value exposed externally through
* the <code>height</code> getter.
*/
protected var scaledActualHeight:Number = 0;
/**
* The height of the component, in pixels. This could be a value that
* was set explicitly, or the component will automatically resize if no
* explicit height value is provided. Each component has a different
* automatic sizing behavior, but it's usually based on the component's
* skin or content, including text or subcomponents.
*
* <p><strong>Note:</strong> Values of the <code>width</code> and
* <code>height</code> properties may not be accurate until after
* validation. If you are seeing <code>width</code> or <code>height</code>
* values of <code>0</code>, but you can see something on the screen and
* know that the value should be larger, it may be because you asked for
* the dimensions before the component had validated. Call
* <code>validate()</code> to tell the component to immediately redraw
* and calculate an accurate values for the dimensions.</p>
*
* <p>In the following example, the height is set to 120 pixels:</p>
*
* <listing version="3.0">
* control.height = 120;</listing>
*
* <p>In the following example, the height is cleared so that the
* component can automatically measure its own height:</p>
*
* <listing version="3.0">
* control.height = NaN;</listing>
*
* @see feathers.core.FeathersControl#setSize()
* @see feathers.core.FeathersControl#validate()
*/
override public function get height():Number
{
return this.scaledActualHeight;
}
/**
* @private
*/
override public function set height(value:Number):void
{
var valueIsNaN:Boolean = value !== value; //isNaN
if(valueIsNaN &&
this._explicitHeight !== this._explicitHeight) //isNaN
{
return;
}
if(this.scaleY != 1)
{
value /= this.scaleY;
}
if(this._explicitHeight == value)
{
return;
}
var hasSetExplicitHeight:Boolean = false;
var newWidth:Number = this.actualWidth;
if(this._suspendEffectsCount == 0 && this._resizeEffectContext !== null)
{
if(this._resizeEffectContext is IResizeEffectContext)
{
var resizeEffectContext:IResizeEffectContext = IResizeEffectContext(this._resizeEffectContext);
newWidth = resizeEffectContext.newWidth;
}
this._resizeEffectContext.interrupt();
this._resizeEffectContext = null;
}
if(!valueIsNaN && this.isCreated && this._suspendEffectsCount == 0 && this._resizeEffect !== null)
{
this._resizeEffectContext = IEffectContext(this._resizeEffect(this));
this._resizeEffectContext.addEventListener(Event.COMPLETE, resizeEffectContext_completeHandler);
if(this._resizeEffectContext is IResizeEffectContext)
{
resizeEffectContext = IResizeEffectContext(this._resizeEffectContext);
resizeEffectContext.oldWidth = this.actualWidth;
resizeEffectContext.oldHeight = this.actualHeight;
resizeEffectContext.newWidth = newWidth;
resizeEffectContext.newHeight = value;
}
else
{
this._explicitHeight = value;
hasSetExplicitHeight = true;
}
this._resizeEffectContext.play();
}
else
{
this._explicitHeight = value;
hasSetExplicitHeight = true;
}
if(hasSetExplicitHeight)
{
if(valueIsNaN)
{
this.actualHeight = this.scaledActualHeight = 0;
this.invalidate(INVALIDATION_FLAG_SIZE);
}
else
{
var result:Boolean = this.saveMeasurements(this.actualWidth, value, this.actualMinWidth, this.actualMinHeight);
if(result)
{
this.invalidate(INVALIDATION_FLAG_SIZE);
}
}
}
}
/**
* @private
*/
protected var _minTouchWidth:Number = 0;
/**
* If using <code>isQuickHitAreaEnabled</code>, and the hit area's
* width is smaller than this value, it will be expanded.
*
* <p>In the following example, the minimum width of the hit area is
* set to 120 pixels:</p>
*
* <listing version="3.0">
* control.minTouchWidth = 120;</listing>
*
* @default 0
*/
public function get minTouchWidth():Number
{
return this._minTouchWidth;
}
/**
* @private
*/
public function set minTouchWidth(value:Number):void
{
if(this._minTouchWidth == value)
{
return;
}
this._minTouchWidth = value;
this.refreshHitAreaX();
}
/**
* @private
*/
protected var _minTouchHeight:Number = 0;
/**
* If using <code>isQuickHitAreaEnabled</code>, and the hit area's
* height is smaller than this value, it will be expanded.
*
* <p>In the following example, the minimum height of the hit area is
* set to 120 pixels:</p>
*
* <listing version="3.0">
* control.minTouchHeight = 120;</listing>
*
* @default 0
*/
public function get minTouchHeight():Number
{
return this._minTouchHeight;
}
/**
* @private
*/
public function set minTouchHeight(value:Number):void
{
if(this._minTouchHeight == value)
{
return;
}
this._minTouchHeight = value;
this.refreshHitAreaY();
}
/**
* @private
*/
protected var _explicitMinWidth:Number = NaN;
/**
* The minimum width value explicitly set by passing a value to the
* <code>minWidth</code> setter.
*
* <p>If no value has been passed to the <code>minWidth</code> setter,
* this property returns <code>NaN</code>.</p>
*/
public function get explicitMinWidth():Number
{
return this._explicitMinWidth;
}
/**
* The final minimum width value that should be used for layout. If the
* minimum width has been explicitly set, then that value is used. If
* not, the actual minimum width will be calculated automatically. Each
* component has different automatic sizing behavior, but it's usually
* based on the component's skin or content, including text or
* subcomponents.
*/
protected var actualMinWidth:Number = 0;
/**
* @private
* The <code>actualMinWidth</code> value that accounts for
* <code>scaleX</code>. Not intended to be used for layout since layout
* uses unscaled values. This is the value exposed externally through
* the <code>minWidth</code> getter.
*/
protected var scaledActualMinWidth:Number = 0;
/**
* The minimum recommended width to be used for self-measurement and,
* optionally, by any code that is resizing this component. This value
* is not strictly enforced in all cases. An explicit width value that
* is smaller than <code>minWidth</code> may be set and will not be
* affected by the minimum.
*
* <p>In the following example, the minimum width of the control is
* set to 120 pixels:</p>
*
* <listing version="3.0">
* control.minWidth = 120;</listing>
*
* @default 0
*/
public function get minWidth():Number
{
return this.scaledActualMinWidth;
}
/**
* @private
*/
public function set minWidth(value:Number):void
{
var valueIsNaN:Boolean = value !== value; //isNaN
if(valueIsNaN &&
this._explicitMinWidth !== this._explicitMinWidth) //isNaN
{
return;
}
if(this.scaleX != 1)
{
value /= this.scaleX;
}
if(this._explicitMinWidth == value)
{
return;
}
var oldValue:Number = this._explicitMinWidth;
this._explicitMinWidth = value;
if(valueIsNaN)
{
this.actualMinWidth = this.scaledActualMinWidth = 0;
this.invalidate(INVALIDATION_FLAG_SIZE);
}
else
{
//saveMeasurements() might change actualWidth, so keep the old
//value for the comparisons below
var actualWidth:Number = this.actualWidth;
this.saveMeasurements(actualWidth, this.actualHeight, value, this.actualMinHeight);
if(this._explicitWidth !== this._explicitWidth && //isNaN
(actualWidth < value || actualWidth == oldValue))
{
//only invalidate if this change might affect the width
//because everything else was handled in saveMeasurements()
this.invalidate(INVALIDATION_FLAG_SIZE);
}
}
}
/**
* @private
*/
protected var _explicitMinHeight:Number = NaN;
/**
* The minimum height value explicitly set by passing a value to the
* <code>minHeight</code> setter.
*
* <p>If no value has been passed to the <code>minHeight</code> setter,
* this property returns <code>NaN</code>.</p>
*/
public function get explicitMinHeight():Number
{
return this._explicitMinHeight;
}
/**
* The final minimum height value that should be used for layout. If the
* minimum height has been explicitly set, then that value is used. If
* not, the actual minimum height will be calculated automatically. Each
* component has different automatic sizing behavior, but it's usually
* based on the component's skin or content, including text or
* subcomponents.
*/
protected var actualMinHeight:Number = 0;
/**
* @private
* The <code>actuaMinHeight</code> value that accounts for
* <code>scaleY</code>. Not intended to be used for layout since layout
* uses unscaled values. This is the value exposed externally through
* the <code>minHeight</code> getter.
*/
protected var scaledActualMinHeight:Number = 0;
/**
* The minimum recommended height to be used for self-measurement and,
* optionally, by any code that is resizing this component. This value
* is not strictly enforced in all cases. An explicit height value that
* is smaller than <code>minHeight</code> may be set and will not be
* affected by the minimum.
*
* <p>In the following example, the minimum height of the control is
* set to 120 pixels:</p>
*
* <listing version="3.0">
* control.minHeight = 120;</listing>
*
* @default 0
*/
public function get minHeight():Number
{
return this.scaledActualMinHeight;
}
/**
* @private
*/
public function set minHeight(value:Number):void
{
var valueIsNaN:Boolean = value !== value; //isNaN
if(valueIsNaN &&
this._explicitMinHeight !== this._explicitMinHeight) //isNaN
{
return;
}
if(this.scaleY != 1)
{
value /= this.scaleY;
}
if(this._explicitMinHeight == value)
{
return;
}
var oldValue:Number = this._explicitMinHeight;
this._explicitMinHeight = value;
if(valueIsNaN)
{
this.actualMinHeight = this.scaledActualMinHeight = 0;
this.invalidate(INVALIDATION_FLAG_SIZE);
}
else
{
//saveMeasurements() might change actualHeight, so keep the old
//value for the comparisons below
var actualHeight:Number = this.actualHeight;
this.saveMeasurements(this.actualWidth, actualHeight, this.actualMinWidth, value);
if(this._explicitHeight !== this._explicitHeight && //isNaN
(actualHeight < value || actualHeight == oldValue))
{
//only invalidate if this change might affect the height
//because everything else was handled in saveMeasurements()
this.invalidate(INVALIDATION_FLAG_SIZE);
}
}
}
/**
* @private
*/
protected var _explicitMaxWidth:Number = Number.POSITIVE_INFINITY;
/**
* The maximum width value explicitly set by passing a value to the
* <code>maxWidth</code> setter.
*
* <p>If no value has been passed to the <code>maxWidth</code> setter,
* this property returns <code>NaN</code>.</p>
*/
public function get explicitMaxWidth():Number
{
return this._explicitMaxWidth;
}
/**
* The maximum recommended width to be used for self-measurement and,
* optionally, by any code that is resizing this component. This value
* is not strictly enforced in all cases. An explicit width value that
* is larger than <code>maxWidth</code> may be set and will not be
* affected by the maximum.
*
* <p>In the following example, the maximum width of the control is
* set to 120 pixels:</p>
*
* <listing version="3.0">
* control.maxWidth = 120;</listing>
*
* @default Number.POSITIVE_INFINITY
*/
public function get maxWidth():Number
{
return this._explicitMaxWidth;
}
/**
* @private
*/
public function set maxWidth(value:Number):void
{
if(value < 0)
{
value = 0;
}
if(this._explicitMaxWidth == value)
{
return;
}
if(value !== value) //isNaN
{
throw new ArgumentError("maxWidth cannot be NaN");
}
var oldValue:Number = this._explicitMaxWidth;
this._explicitMaxWidth = value;
if(this._explicitWidth !== this._explicitWidth && //isNaN
(this.actualWidth > value || this.actualWidth == oldValue))
{
//only invalidate if this change might affect the width
this.invalidate(INVALIDATION_FLAG_SIZE);
}
}
/**
* @private
*/
protected var _explicitMaxHeight:Number = Number.POSITIVE_INFINITY;
/**
* The maximum height value explicitly set by passing a value to the
* <code>maxHeight</code> setter.
*
* <p>If no value has been passed to the <code>maxHeight</code> setter,
* this property returns <code>NaN</code>.</p>
*/
public function get explicitMaxHeight():Number
{
return this._explicitMaxHeight;
}
/**
* The maximum recommended height to be used for self-measurement and,
* optionally, by any code that is resizing this component. This value
* is not strictly enforced in all cases. An explicit height value that
* is larger than <code>maxHeight</code> may be set and will not be
* affected by the maximum.
*
* <p>In the following example, the maximum width of the control is
* set to 120 pixels:</p>
*
* <listing version="3.0">
* control.maxWidth = 120;</listing>
*
* @default Number.POSITIVE_INFINITY
*/
public function get maxHeight():Number
{
return this._explicitMaxHeight;
}
/**
* @private
*/
public function set maxHeight(value:Number):void
{
if(value < 0)
{
value = 0;
}
if(this._explicitMaxHeight == value)
{
return;
}
if(value !== value) //isNaN
{
throw new ArgumentError("maxHeight cannot be NaN");
}
var oldValue:Number = this._explicitMaxHeight;
this._explicitMaxHeight = value;
if(this._explicitHeight !== this._explicitHeight && //isNaN
(this.actualHeight > value || this.actualHeight == oldValue))
{
//only invalidate if this change might affect the width
this.invalidate(INVALIDATION_FLAG_SIZE);
}
}
/**
* @private
*/
override public function set scaleX(value:Number):void
{
super.scaleX = value;
this.saveMeasurements(this.actualWidth, this.actualHeight, this.actualMinWidth, this.actualMinHeight);
}
/**
* @private
*/
override public function set scaleY(value:Number):void
{
super.scaleY = value;
this.saveMeasurements(this.actualWidth, this.actualHeight, this.actualMinWidth, this.actualMinHeight);
}
/**
* @private
*/
protected var _includeInLayout:Boolean = true;
/**
* @inheritDoc
*
* @default true
*/
public function get includeInLayout():Boolean
{
return this._includeInLayout;
}
/**
* @private
*/
public function set includeInLayout(value:Boolean):void
{
if(this._includeInLayout == value)
{
return;
}
this._includeInLayout = value;
this.dispatchEventWith(FeathersEventType.LAYOUT_DATA_CHANGE);
}
/**
* @private
*/
protected var _layoutData:ILayoutData;
/**
* @inheritDoc
*
* @default null
*/
public function get layoutData():ILayoutData
{
return this._layoutData;
}
/**
* @private
*/
public function set layoutData(value:ILayoutData):void
{
if(this._layoutData == value)
{
return;
}
if(this._layoutData)
{
this._layoutData.removeEventListener(Event.CHANGE, layoutData_changeHandler);
}
this._layoutData = value;
if(this._layoutData)
{
this._layoutData.addEventListener(Event.CHANGE, layoutData_changeHandler);
}
this.dispatchEventWith(FeathersEventType.LAYOUT_DATA_CHANGE);
}
/**
* @private
*/
protected var _toolTip:String;
/**
* Text to display in a tool tip to when hovering over this component,
* if the <code>ToolTipManager</code> is enabled.
*
* @default null
*
* @see ../../../help/tool-tips.html Tool tips in Feathers
* @see feathers.core.ToolTipManager
*/
public function get toolTip():String
{
return this._toolTip;
}
/**
* @private
*/
public function set toolTip(value:String):void
{
this._toolTip = value;
}
/**
* @private
*/
protected var _focusManager:IFocusManager;
/**
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* @copy feathers.core.IFocusDisplayObject#focusManager
*
* @default null
*
* @see feathers.core.IFocusDisplayObject
*/
public function get focusManager():IFocusManager
{
return this._focusManager;
}
/**
* @private
*/
public function set focusManager(value:IFocusManager):void
{
if(!(this is IFocusDisplayObject))
{
throw new IllegalOperationError("Cannot pass a focus manager to a component that does not implement feathers.core.IFocusDisplayObject");
}
if(this._focusManager == value)
{
return;
}
this._focusManager = value;
}
/**
* @private
*/
protected var _focusOwner:IFocusDisplayObject;
/**
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* @copy feathers.core.IFocusDisplayObject#focusOwner
*
* @default null
*
* @see feathers.core.IFocusDisplayObject
*/
public function get focusOwner():IFocusDisplayObject
{
return this._focusOwner;
}
/**
* @private
*/
public function set focusOwner(value:IFocusDisplayObject):void
{
this._focusOwner = value;
}
/**
* @private
*/
protected var _isFocusEnabled:Boolean = true;
/**
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* @copy feathers.core.IFocusDisplayObject#isFocusEnabled
*
* @default true
*
* @see feathers.core.IFocusDisplayObject
*/
public function get isFocusEnabled():Boolean
{
return this._isEnabled && this._isFocusEnabled;
}
/**
* @private
*/
public function set isFocusEnabled(value:Boolean):void
{
if(!(this is IFocusDisplayObject))
{
throw new IllegalOperationError("Cannot enable focus on a component that does not implement feathers.core.IFocusDisplayObject");
}
if(this._isFocusEnabled == value)
{
return;
}
this._isFocusEnabled = value;
}
/**
* <p>The implementation of this method is provided for convenience, but
* it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* @copy feathers.core.IFocusDisplayObject#isShowingFocus
*
* @see feathers.core.IFocusDisplayObject#showFocus()
* @see feathers.core.IFocusDisplayObject#hideFocus()
* @see feathers.core.IFocusDisplayObject
*/
public function get isShowingFocus():Boolean
{
return this._showFocus;
}
/**
* <p>The implementation of this method is provided for convenience, but
* it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* @copy feathers.core.IFocusDisplayObject#maintainTouchFocus
*
* @see feathers.core.IFocusDisplayObject
*/
public function get maintainTouchFocus():Boolean
{
return false;
}
/**
* @private
*/
protected var _nextTabFocus:IFocusDisplayObject = null;
/**
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* @copy feathers.core.IFocusDisplayObject#nextTabFocus
*
* @default null
*
* @see feathers.core.IFocusDisplayObject
*/
public function get nextTabFocus():IFocusDisplayObject
{
return this._nextTabFocus;
}
/**
* @private
*/
public function set nextTabFocus(value:IFocusDisplayObject):void
{
if(!(this is IFocusDisplayObject))
{
throw new IllegalOperationError("Cannot set nextTabFocus on a component that does not implement feathers.core.IFocusDisplayObject");
}
this._nextTabFocus = value;
}
/**
* @private
*/
protected var _previousTabFocus:IFocusDisplayObject = null;
/**
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* @copy feathers.core.IFocusDisplayObject#previousTabFocus
*
* @default null
*
* @see feathers.core.IFocusDisplayObject
*/
public function get previousTabFocus():IFocusDisplayObject
{
return this._previousTabFocus;
}
/**
* @private
*/
public function set previousTabFocus(value:IFocusDisplayObject):void
{
if(!(this is IFocusDisplayObject))
{
throw new IllegalOperationError("Cannot set previousTabFocus on a component that does not implement feathers.core.IFocusDisplayObject");
}
this._previousTabFocus = value;
}
/**
* @private
*/
protected var _nextUpFocus:IFocusDisplayObject = null;
/**
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* @copy feathers.core.IFocusDisplayObject#nextUpFocus
*
* @default null
*
* @see feathers.core.IFocusDisplayObject
*
* @productversion Feathers 3.4.0
*/
public function get nextUpFocus():IFocusDisplayObject
{
return this._nextUpFocus;
}
/**
* @private
*/
public function set nextUpFocus(value:IFocusDisplayObject):void
{
if(!(this is IFocusDisplayObject))
{
throw new IllegalOperationError("Cannot set nextUpFocus on a component that does not implement feathers.core.IFocusDisplayObject");
}
this._nextUpFocus = value;
}
/**
* @private
*/
protected var _nextRightFocus:IFocusDisplayObject = null;
/**
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* @copy feathers.core.IFocusDisplayObject#nextRightFocus
*
* @default null
*
* @see feathers.core.IFocusDisplayObject
*
* @productversion Feathers 3.4.0
*/
public function get nextRightFocus():IFocusDisplayObject
{
return this._nextRightFocus;
}
/**
* @private
*/
public function set nextRightFocus(value:IFocusDisplayObject):void
{
if(!(this is IFocusDisplayObject))
{
throw new IllegalOperationError("Cannot set nextRightFocus on a component that does not implement feathers.core.IFocusDisplayObject");
}
this._nextRightFocus = value;
}
/**
* @private
*/
protected var _nextDownFocus:IFocusDisplayObject = null;
/**
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* @copy feathers.core.IFocusDisplayObject#nextDownFocus
*
* @default null
*
* @see feathers.core.IFocusDisplayObject
*
* @productversion Feathers 3.4.0
*/
public function get nextDownFocus():IFocusDisplayObject
{
return this._nextDownFocus;
}
/**
* @private
*/
public function set nextDownFocus(value:IFocusDisplayObject):void
{
if(!(this is IFocusDisplayObject))
{
throw new IllegalOperationError("Cannot set nextDownFocus on a component that does not implement feathers.core.IFocusDisplayObject");
}
this._nextDownFocus = value;
}
/**
* @private
*/
protected var _nextLeftFocus:IFocusDisplayObject = null;
/**
* <p>The implementation of this property is provided for convenience,
* but it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* @copy feathers.core.IFocusDisplayObject#nextLeftFocus
*
* @default null
*
* @see feathers.core.IFocusDisplayObject
*
* @productversion Feathers 3.4.0
*/
public function get nextLeftFocus():IFocusDisplayObject
{
return this._nextLeftFocus;
}
/**
* @private
*/
public function set nextLeftFocus(value:IFocusDisplayObject):void
{
if(!(this is IFocusDisplayObject))
{
throw new IllegalOperationError("Cannot set nextLeftFocus on a component that does not implement feathers.core.IFocusDisplayObject");
}
this._nextLeftFocus = value;
}
/**
* @private
*/
protected var _focusIndicatorSkin:DisplayObject;
/**
* @private
*/
public function get focusIndicatorSkin():DisplayObject
{
return this._focusIndicatorSkin;
}
/**
* @private
*/
public function set focusIndicatorSkin(value:DisplayObject):void
{
if(!(this is IFocusDisplayObject))
{
throw new IllegalOperationError("Cannot set focus indicator skin on a component that does not implement feathers.core.IFocusDisplayObject");
}
if(this.processStyleRestriction(arguments.callee))
{
return;
}
if(this._focusIndicatorSkin === value)
{
return;
}
if(this._focusIndicatorSkin)
{
if(this._focusIndicatorSkin.parent == this)
{
this._focusIndicatorSkin.removeFromParent(false);
}
if(this._focusIndicatorSkin is IStateObserver &&
this is IStateContext)
{
IStateObserver(this._focusIndicatorSkin).stateContext = null;
}
}
this._focusIndicatorSkin = value;
if(this._focusIndicatorSkin)
{
this._focusIndicatorSkin.touchable = false;
}
if(this._focusIndicatorSkin is IStateObserver &&
this is IStateContext)
{
IStateObserver(this._focusIndicatorSkin).stateContext = IStateContext(this);
}
if(this._focusManager && this._focusManager.focus == this)
{
this.invalidate(INVALIDATION_FLAG_STYLES);
}
}
/**
* @private
*/
public function get focusPadding():Number
{
return this._focusPaddingTop;
}
/**
* @private
*/
public function set focusPadding(value:Number):void
{
this.focusPaddingTop = value;
this.focusPaddingRight = value;
this.focusPaddingBottom = value;
this.focusPaddingLeft = value;
}
/**
* @private
*/
protected var _focusPaddingTop:Number = 0;
/**
* @private
*/
public function get focusPaddingTop():Number
{
return this._focusPaddingTop;
}
/**
* @private
*/
public function set focusPaddingTop(value:Number):void
{
if(this.processStyleRestriction(arguments.callee))
{
return;
}
if(this._focusPaddingTop == value)
{
return;
}
this._focusPaddingTop = value;
this.invalidate(INVALIDATION_FLAG_FOCUS);
}
/**
* @private
*/
protected var _focusPaddingRight:Number = 0;
/**
* @private
*/
public function get focusPaddingRight():Number
{
return this._focusPaddingRight;
}
/**
* @private
*/
public function set focusPaddingRight(value:Number):void
{
if(this.processStyleRestriction(arguments.callee))
{
return;
}
if(this._focusPaddingRight == value)
{
return;
}
this._focusPaddingRight = value;
this.invalidate(INVALIDATION_FLAG_FOCUS);
}
/**
* @private
*/
protected var _focusPaddingBottom:Number = 0;
/**
* @private
*/
public function get focusPaddingBottom():Number
{
return this._focusPaddingBottom;
}
/**
* @private
*/
public function set focusPaddingBottom(value:Number):void
{
if(this.processStyleRestriction(arguments.callee))
{
return;
}
if(this._focusPaddingBottom == value)
{
return;
}
this._focusPaddingBottom = value;
this.invalidate(INVALIDATION_FLAG_FOCUS);
}
/**
* @private
*/
protected var _focusPaddingLeft:Number = 0;
/**
* @private
*/
public function get focusPaddingLeft():Number
{
return this._focusPaddingLeft;
}
/**
* @private
*/
public function set focusPaddingLeft(value:Number):void
{
if(this.processStyleRestriction(arguments.callee))
{
return;
}
if(this._focusPaddingLeft == value)
{
return;
}
this._focusPaddingLeft = value;
this.invalidate(INVALIDATION_FLAG_FOCUS);
}
/**
* Indicates if effects have been suspended.
*
* @see #suspendEffects()
* @see #resumeEffects()
*/
public function get effectsSuspended():Boolean
{
return this._suspendEffectsCount > 0;
}
/**
* @private
*/
protected var _hasFocus:Boolean = false;
/**
* @private
*/
protected var _showFocus:Boolean = false;
/**
* @private
* Flag to indicate that the control is currently validating.
*/
protected var _isValidating:Boolean = false;
/**
* @private
* Flag to indicate that the control has validated at least once.
*/
protected var _hasValidated:Boolean = false;
/**
* Determines if the component has been initialized and validated for
* the first time.
*
* <p>In the following example, we check if the component is created or
* not, and we listen for an event if it isn't:</p>
*
* <listing version="3.0">
* if( !control.isCreated )
* {
* control.addEventListener( FeathersEventType.CREATION_COMPLETE, creationCompleteHandler );
* }</listing>
*
* @see #event:creationComplete
* @see #isInitialized
*/
public function get isCreated():Boolean
{
return this._hasValidated;
}
/**
* @private
*/
protected var _depth:int = -1;
/**
* @copy feathers.core.IValidating#depth
*/
public function get depth():int
{
return this._depth;
}
/**
* @private
*/
protected var _suspendEffectsCount:int = 0;
/**
* @private
*/
protected var _ignoreNextStyleRestriction:Boolean = false;
/**
* @private
*/
protected var _invalidateCount:int = 0;
/**
* Feathers components use an optimized <code>getBounds()</code>
* implementation that may sometimes behave differently than regular
* Starling display objects. For instance, filters may need some special
* customization. If a component's children appear outside of its
* bounds (such as at negative dimensions), padding should be added to
* the filter to account for these regions.
*/
override public function getBounds(targetSpace:DisplayObject, resultRect:Rectangle=null):Rectangle
{
if(!resultRect)
{
resultRect = new Rectangle();
}
var minX:Number = Number.MAX_VALUE, maxX:Number = -Number.MAX_VALUE;
var minY:Number = Number.MAX_VALUE, maxY:Number = -Number.MAX_VALUE;
if (targetSpace == this) // optimization
{
minX = 0;
minY = 0;
maxX = this.actualWidth;
maxY = this.actualHeight;
}
else
{
var matrix:Matrix = Pool.getMatrix();
this.getTransformationMatrix(targetSpace, matrix);
MatrixUtil.transformCoords(matrix, 0, 0, HELPER_POINT);
minX = minX < HELPER_POINT.x ? minX : HELPER_POINT.x;
maxX = maxX > HELPER_POINT.x ? maxX : HELPER_POINT.x;
minY = minY < HELPER_POINT.y ? minY : HELPER_POINT.y;
maxY = maxY > HELPER_POINT.y ? maxY : HELPER_POINT.y;
MatrixUtil.transformCoords(matrix, 0, this.actualHeight, HELPER_POINT);
minX = minX < HELPER_POINT.x ? minX : HELPER_POINT.x;
maxX = maxX > HELPER_POINT.x ? maxX : HELPER_POINT.x;
minY = minY < HELPER_POINT.y ? minY : HELPER_POINT.y;
maxY = maxY > HELPER_POINT.y ? maxY : HELPER_POINT.y;
MatrixUtil.transformCoords(matrix, this.actualWidth, 0, HELPER_POINT);
minX = minX < HELPER_POINT.x ? minX : HELPER_POINT.x;
maxX = maxX > HELPER_POINT.x ? maxX : HELPER_POINT.x;
minY = minY < HELPER_POINT.y ? minY : HELPER_POINT.y;
maxY = maxY > HELPER_POINT.y ? maxY : HELPER_POINT.y;
MatrixUtil.transformCoords(matrix, this.actualWidth, this.actualHeight, HELPER_POINT);
minX = minX < HELPER_POINT.x ? minX : HELPER_POINT.x;
maxX = maxX > HELPER_POINT.x ? maxX : HELPER_POINT.x;
minY = minY < HELPER_POINT.y ? minY : HELPER_POINT.y;
maxY = maxY > HELPER_POINT.y ? maxY : HELPER_POINT.y;
Pool.putMatrix(matrix);
}
resultRect.x = minX;
resultRect.y = minY;
resultRect.width = maxX - minX;
resultRect.height = maxY - minY;
return resultRect;
}
/**
* @private
*/
override public function hitTest(localPoint:Point):DisplayObject
{
if(this._isQuickHitAreaEnabled)
{
if(!this.visible || !this.touchable)
{
return null;
}
if(this.mask && !this.hitTestMask(localPoint))
{
return null;
}
return this._hitArea.containsPoint(localPoint) ? this : null;
}
return super.hitTest(localPoint);
}
/**
* @private
*/
protected var _isDisposed:Boolean = false;
/**
* @private
*/
override public function dispose():void
{
//we don't dispose it if this is the parent because it'll
//already get disposed in super.dispose()
if(this._focusIndicatorSkin !== null && this._focusIndicatorSkin.parent !== this)
{
this._focusIndicatorSkin.dispose();
}
this._isDisposed = true;
this._validationQueue = null;
this.layoutData = null;
this._styleNameList.removeEventListeners();
super.dispose();
}
/**
* Call this function to tell the UI control that a redraw is pending.
* The redraw will happen immediately before Starling renders the UI
* control to the screen. The validation system exists to ensure that
* multiple properties can be set together without redrawing multiple
* times in between each property change.
*
* <p>If you cannot wait until later for the validation to happen, you
* can call <code>validate()</code> to redraw immediately. As an example,
* you might want to validate immediately if you need to access the
* correct <code>width</code> or <code>height</code> values of the UI
* control, since these values are calculated during validation.</p>
*
* @see feathers.core.FeathersControl#validate()
*/
public function invalidate(flag:String = INVALIDATION_FLAG_ALL):void
{
var isAlreadyInvalid:Boolean = this.isInvalid();
var isAlreadyDelayedInvalid:Boolean = false;
if(this._isValidating)
{
for(var otherFlag:String in this._delayedInvalidationFlags)
{
isAlreadyDelayedInvalid = true;
break;
}
}
if(!flag || flag == INVALIDATION_FLAG_ALL)
{
if(this._isValidating)
{
this._delayedInvalidationFlags[INVALIDATION_FLAG_ALL] = true;
}
else
{
this._isAllInvalid = true;
}
}
else
{
if(this._isValidating)
{
this._delayedInvalidationFlags[flag] = true;
}
else if(flag != INVALIDATION_FLAG_ALL && !this._invalidationFlags.hasOwnProperty(flag))
{
this._invalidationFlags[flag] = true;
}
}
if(this._validationQueue === null || !this._isInitialized)
{
//we'll add this component to the queue later, after it has been
//added to the stage.
return;
}
if(this._isValidating)
{
//if we've already incremented this counter this time, we can
//return. we're already in queue.
if(isAlreadyDelayedInvalid)
{
return;
}
this._invalidateCount++;
//if invalidate() is called during validation, we'll be added
//back to the end of the queue. we'll keep trying this a certain
//number of times, but at some point, it needs to be considered
//an infinite loop or a serious bug because it affects
//performance.
if(this._invalidateCount >= 10)
{
throw new Error(getQualifiedClassName(this) + " returned to validation queue too many times during validation. This may be an infinite loop. Try to avoid doing anything that calls invalidate() during validation.");
}
this._validationQueue.addControl(this);
return;
}
if(isAlreadyInvalid)
{
return;
}
this._invalidateCount = 0;
this._validationQueue.addControl(this);
}
/**
* @copy feathers.core.IValidating#validate()
*
* @see #invalidate()
*/
public function validate():void
{
if(this._isDisposed)
{
//disposed components have no reason to validate, but they may
//have been left in the queue.
return;
}
if(!this._isInitialized)
{
if(this._isInitializing)
{
throw new IllegalOperationError("A component cannot validate until after it has finished initializing.");
}
this.initializeNow();
}
//if we're not actually invalid, there's nothing to do here, so
//simply return.
if(!this.isInvalid())
{
return;
}
if(this._isValidating)
{
//we were already validating, so there's nothing to do here.
//the existing validation will continue.
return;
}
this._isValidating = true;
this.draw();
for(var flag:String in this._invalidationFlags)
{
delete this._invalidationFlags[flag];
}
this._isAllInvalid = false;
for(flag in this._delayedInvalidationFlags)
{
if(flag == INVALIDATION_FLAG_ALL)
{
this._isAllInvalid = true;
}
else
{
this._invalidationFlags[flag] = true;
}
delete this._delayedInvalidationFlags[flag];
}
this._isValidating = false;
if(!this._hasValidated)
{
this._hasValidated = true;
this.dispatchEventWith(FeathersEventType.CREATION_COMPLETE);
if(this._suspendEffectsCount == 0 && this.stage !== null && this._addedEffect !== null)
{
this._addedEffectContext = IEffectContext(this._addedEffect(this));
this._addedEffectContext.addEventListener(Event.COMPLETE, addedEffectContext_completeHandler);
this._addedEffectContext.play();
}
}
}
/**
* Indicates whether the control is pending validation or not. By
* default, returns <code>true</code> if any invalidation flag has been
* set. If you pass in a specific flag, returns <code>true</code> only
* if that flag has been set (others may be set too, but it checks the
* specific flag only. If all flags have been marked as invalid, always
* returns <code>true</code>.
*/
public function isInvalid(flag:String = null):Boolean
{
if(this._isAllInvalid)
{
return true;
}
if(!flag) //return true if any flag is set
{
for(flag in this._invalidationFlags)
{
return true;
}
return false;
}
return this._invalidationFlags[flag];
}
/**
* Sets both the width and the height of the control in a single
* function call.
*
* @see #width
* @see #height
*/
public function setSize(width:Number, height:Number):void
{
var hasSetExplicitSize:Boolean = false;
if(this._suspendEffectsCount == 0 && this._resizeEffectContext !== null)
{
this._resizeEffectContext.interrupt();
this._resizeEffectContext = null;
}
var widthIsNaN:Boolean = width !== width; //isNaN
var heightIsNaN:Boolean = height !== height; //isNaN
if((!widthIsNaN || !heightIsNaN) && this.isCreated && this._suspendEffectsCount == 0 && this._resizeEffect !== null)
{
this._resizeEffectContext = IEffectContext(this._resizeEffect(this));
this._resizeEffectContext.addEventListener(Event.COMPLETE, resizeEffectContext_completeHandler);
if(this._resizeEffectContext is IResizeEffectContext)
{
var resizeEffectContext:IResizeEffectContext = IResizeEffectContext(this._resizeEffectContext);
resizeEffectContext.oldWidth = this.actualWidth;
resizeEffectContext.oldHeight = this.actualHeight;
if(widthIsNaN)
{
resizeEffectContext.newWidth = this.actualWidth;
}
else
{
resizeEffectContext.newWidth = width;
}
if(heightIsNaN)
{
resizeEffectContext.newHeight = this.actualHeight;
}
else
{
resizeEffectContext.newHeight = height;
}
}
else
{
this._explicitWidth = width;
this._explicitHeight = height;
hasSetExplicitSize = true;
}
this._resizeEffectContext.play();
}
else
{
this._explicitWidth = width;
this._explicitHeight = height;
hasSetExplicitSize = true;
}
if(hasSetExplicitSize)
{
if(widthIsNaN)
{
this.actualWidth = this.scaledActualWidth = 0;
}
if(heightIsNaN)
{
this.actualHeight = this.scaledActualHeight = 0;
}
if(widthIsNaN || heightIsNaN)
{
this.invalidate(INVALIDATION_FLAG_SIZE);
}
else
{
var result:Boolean = this.saveMeasurements(width, height, this.actualMinWidth, this.actualMinHeight);
if(result)
{
this.invalidate(INVALIDATION_FLAG_SIZE);
}
}
}
}
/**
* Sets both the x and the y positions of the control in a single
* function call.
*
* @see #x
* @see #y
*/
public function move(x:Number, y:Number):void
{
if(this._suspendEffectsCount == 0 && this._moveEffectContext !== null)
{
this._moveEffectContext.interrupt();
this._moveEffectContext = null;
}
if(this.isCreated && this._suspendEffectsCount == 0 && this._moveEffect !== null)
{
this._moveEffectContext = IEffectContext(this._moveEffect(this));
this._moveEffectContext.addEventListener(Event.COMPLETE, moveEffectContext_completeHandler);
if(this._moveEffectContext is IMoveEffectContext)
{
var moveEffectContext:IMoveEffectContext = IMoveEffectContext(this._moveEffectContext);
moveEffectContext.oldX = this.x;
moveEffectContext.oldY = this.y;
moveEffectContext.newX = x;
moveEffectContext.newY = y;
}
else
{
super.x = x;
super.y = y;
}
this._moveEffectContext.play();
}
else
{
super.x = x;
super.y = y;
}
}
/**
* Plays an effect before removing the component from its parent.
*
* <p>In the following example, an effect fades the component's
* <code>alpha</code> property to <code>0</code> before removing the
* component from its parent:</p>
*
* <listing version="3.0">
* control.removeFromParentWithEffect(Fade.createFadeOutEffect(), true);</listing>
*
* <p>A number of animated effects may be found in the
* <a href="../motion/package-detail.html">feathers.motion</a> package.
* However, you are not limited to only these effects. It's possible
* to create custom effects too.</p>
*
* <p>A custom effect function should have the following signature:</p>
* <pre>function(target:DisplayObject):IEffectContext</pre>
*
* <p>The <code>IEffectContext</code> is used by the component to
* control the effect, performing actions like playing the effect,
* pausing it, or cancelling it.</p>
*
* <p>Custom animated effects that use
* <code>starling.display.Tween</code> typically return a
* <code>TweenEffectContext</code>. In the following example, we
* recreate the <code>Fade.createFadeOutEffect()</code> used in the
* previous example.</p>
*
* <listing version="3.0">
* function customEffect(target:DisplayObject):IEffectContext
* {
* var tween:Tween = new Tween(target, 0.5, Transitions.EASE_OUT);
* tween.fadeTo(0);
* return new TweenEffectContext(target, tween);
* }
* control.removeFromParentWithEffect(customEffect, true);</listing>
*
* @see #addedEffect
* @see ../../../help/effects.html Effects and animation for Feathers components
* @see feathers.motion.effectClasses.IEffectContext
* @see feathers.motion.effectClasses.TweenEffectContext
*/
public function removeFromParentWithEffect(effect:Function, dispose:Boolean = false):void
{
if(this.isCreated && this._suspendEffectsCount == 0)
{
this._disposeAfterRemovedEffect = dispose;
this._removedEffectContext = IEffectContext(effect(this));
this._removedEffectContext.addEventListener(Event.COMPLETE, removedEffectContext_completeHandler);
this._removedEffectContext.play();
}
else
{
this.removeFromParent(dispose);
}
}
/**
* Resets the <code>styleProvider</code> property to its default value,
* which is usually the global style provider for the component.
*
* @see #styleProvider
* @see #defaultStyleProvider
*/
public function resetStyleProvider():void
{
this.styleProvider = this.defaultStyleProvider;
}
/**
* Indicates that effects should not be activated temporarily. Call
* <code>resumeEffects()</code> when effects should be allowed again.
*
* @see #resumeEffects()
*/
public function suspendEffects():void
{
this._suspendEffectsCount++;
}
/**
* Indicates that effects should be re-activated after being suspended.
*
* @see #suspendEffects()
*/
public function resumeEffects():void
{
this._suspendEffectsCount--;
}
/**
* <p>The implementation of this method is provided for convenience, but
* it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* @copy feathers.core.IFocusDisplayObject#showFocus()
*
* @see feathers.core.IFocusDisplayObject
*/
public function showFocus():void
{
if(!this._hasFocus || !this._focusIndicatorSkin)
{
return;
}
this._showFocus = true;
this.invalidate(INVALIDATION_FLAG_FOCUS);
}
/**
* <p>The implementation of this method is provided for convenience, but
* it cannot be used unless a subclass implements the
* <code>IFocusDisplayObject</code> interface.</p>
*
* @copy feathers.core.IFocusDisplayObject#hideFocus()
*
* @see feathers.core.IFocusDisplayObject
*/
public function hideFocus():void
{
if(!this._hasFocus || !this._focusIndicatorSkin)
{
return;
}
this._showFocus = false;
this.invalidate(INVALIDATION_FLAG_FOCUS);
}
/**
* If the component has not yet initialized, initializes immediately.
* The <code>initialize()</code> function will be called, and the
* <code>FeathersEventType.INITIALIZE</code> event will be dispatched.
* Then, if the component has a style provider, it will be applied. The
* component will not validate, though. To initialize and validate
* immediately, call <code>validate()</code> instead.
*
* @see #isInitialized
* @see #initialize()
* @see #event:initialize FeathersEventType.INITIALIZE
* @see #styleProvider
* @see #validate()
*/
public function initializeNow():void
{
if(this._isInitialized || this._isInitializing)
{
return;
}
this._isInitializing = true;
this.initialize();
this.invalidate(); //invalidate everything
this._isInitializing = false;
this._isInitialized = true;
this.dispatchEventWith(FeathersEventType.INITIALIZE);
if(this._styleProvider !== null)
{
this._applyingStyles = true;
this._styleProvider.applyStyles(this);
this._applyingStyles = false;
}
this._styleNameList.addEventListener(Event.CHANGE, styleNameList_changeHandler);
}
/**
* Sets the width and height of the control, with the option of
* invalidating or not. Intended to be used when the <code>width</code>
* and <code>height</code> values have not been set explicitly, and the
* UI control needs to measure itself and choose an "ideal" size.
*/
protected function setSizeInternal(width:Number, height:Number, canInvalidate:Boolean):Boolean
{
var changed:Boolean = this.saveMeasurements(width, height, this.actualMinWidth, this.actualMinHeight);
if(canInvalidate && changed)
{
this.invalidate(INVALIDATION_FLAG_SIZE);
}
return changed;
}
/**
* Saves the dimensions and minimum dimensions calculated for the
* component. Returns true if the reported values have changed and
* <code>Event.RESIZE</code> was dispatched.
*/
protected function saveMeasurements(width:Number, height:Number, minWidth:Number = 0, minHeight:Number = 0):Boolean
{
if(this._explicitMinWidth === this._explicitMinWidth) //!isNaN
{
//the min width has been set explicitly. it has precedence over
//the measured min width
minWidth = this._explicitMinWidth;
}
else if(minWidth > this._explicitMaxWidth)
{
//similarly, if the max width has been set explicitly, it can
//affect the measured min width (but not explicit min width)
minWidth = this._explicitMaxWidth;
}
if(this._explicitMinHeight === this._explicitMinHeight) //!isNaN
{
//the min height has been set explicitly. it has precedence over
//the measured min height
minHeight = this._explicitMinHeight;
}
else if(minHeight > this._explicitMaxHeight)
{
//similarly, if the max height has been set explicitly, it can
//affect the measured min height (but not explicit min height)
minHeight = this._explicitMaxHeight;
}
if(this._explicitWidth === this._explicitWidth) //!isNaN
{
width = this._explicitWidth;
}
else
{
if(width < minWidth)
{
width = minWidth;
}
else if(width > this._explicitMaxWidth)
{
width = this._explicitMaxWidth;
}
}
if(this._explicitHeight === this._explicitHeight) //!isNaN
{
height = this._explicitHeight;
}
else
{
if(height < minHeight)
{
height = minHeight;
}
else if(height > this._explicitMaxHeight)
{
height = this._explicitMaxHeight;
}
}
if(width !== width) //isNaN
{
throw new ArgumentError(ILLEGAL_WIDTH_ERROR);
}
if(height !== height) //isNaN
{
throw new ArgumentError(ILLEGAL_HEIGHT_ERROR);
}
var scaleX:Number = this.scaleX;
if(scaleX < 0)
{
scaleX = -scaleX;
}
var scaleY:Number = this.scaleY;
if(scaleY < 0)
{
scaleY = -scaleY;
}
var resized:Boolean = false;
if(this.actualWidth != width)
{
this.actualWidth = width;
this.refreshHitAreaX();
resized = true;
}
if(this.actualHeight != height)
{
this.actualHeight = height;
this.refreshHitAreaY();
resized = true;
}
if(this.actualMinWidth != minWidth)
{
this.actualMinWidth = minWidth;
resized = true;
}
if(this.actualMinHeight != minHeight)
{
this.actualMinHeight = minHeight;
resized = true;
}
width = this.scaledActualWidth;
height = this.scaledActualHeight;
this.scaledActualWidth = this.actualWidth * scaleX;
this.scaledActualHeight = this.actualHeight * scaleY;
this.scaledActualMinWidth = this.actualMinWidth * scaleX;
this.scaledActualMinHeight = this.actualMinHeight * scaleY;
if(width != this.scaledActualWidth || height != this.scaledActualHeight)
{
resized = true;
this.dispatchEventWith(Event.RESIZE);
}
return resized;
}
/**
* Called the first time that the UI control is added to the stage, and
* you should override this function to customize the initialization
* process. Do things like create children and set up event listeners.
* After this function is called, <code>FeathersEventType.INITIALIZE</code>
* is dispatched.
*
* @see #event:initialize feathers.events.FeathersEventType.INITIALIZE
*/
protected function initialize():void
{
}
/**
* Override to customize layout and to adjust properties of children.
* Called when the component validates, if any flags have been marked
* to indicate that validation is pending.
*/
protected function draw():void
{
}
/**
* Sets an invalidation flag. This will not add the component to the
* validation queue. It only sets the flag. A subclass might use
* this function during <code>draw()</code> to manipulate the flags that
* its superclass sees.
*/
protected function setInvalidationFlag(flag:String):void
{
if(this._invalidationFlags.hasOwnProperty(flag))
{
return;
}
this._invalidationFlags[flag] = true;
}
/**
* Clears an invalidation flag. This will not remove the component from
* the validation queue. It only clears the flag. A subclass might use
* this function during <code>draw()</code> to manipulate the flags that
* its superclass sees.
*/
protected function clearInvalidationFlag(flag:String):void
{
delete this._invalidationFlags[flag];
}
/**
* Used by setters for properties that are considered "styles" to
* determine if the setter has been called directly on the component or
* from a <em>style provider</em>. A style provider is typically
* associated with a theme. When a style is set directly on the
* component (outside of a style provider), then any attempts by the
* style provider to set the style later will be ignored. This allows
* developers to customize a component's styles directly without
* worrying about conflicts from the style provider or theme.
*
* <p>If a style provider is currently applying styles to the component,
* returns <code>true</code> if the style is restricted or false if it
* may be set.</p>
*
* <p>If the style setter is called outside of a style provider, marks
* the style as restricted and returns <code>false</code>.</p>
*
* <p>The <code>key</code> parameter should be a unique value for each
* separate style. In most cases, <code>processStyleRestriction()</code>
* will be called in the style property setter, so
* <code>arguments.callee</code> is recommended. Alternatively, a unique
* string value may be used instead.</p>
*
* <p>The following example shows how to use
* <code>processStyleRestriction()</code> in a style property
* setter:</p>
*
* <listing version="3.0">
* private var _customStyle:Object;
*
* public function get customStyle():Object
* {
* return this._customStyle;
* }
*
* public function set customStyle( value:Object ):void
* {
* if( this.processStyleRestriction( arguments.callee ) )
* {
* // if a style is restricted, don't set it
* return;
* }
*
* this._customStyle = value;
* }</listing>
*
* @see #ignoreNextStyleRestriction()
*/
protected function processStyleRestriction(key:Object):Boolean
{
var ignore:Boolean = this._ignoreNextStyleRestriction;
this._ignoreNextStyleRestriction = false;
//in most cases, the style is not restricted, and we can set it
if(this._applyingStyles)
{
return this._restrictedStyles !== null &&
key in this._restrictedStyles;
}
if(ignore)
{
return false;
}
if(this._restrictedStyles === null)
{
//only create the object if it is needed
this._restrictedStyles = new Dictionary();
}
this._restrictedStyles[key] = true;
return false;
}
/**
* The next style that is set will not be restricted. This allows
* components to set defaults by calling the setter while still allowing
* the style property to be replaced by a theme in the future.
*
* @see #processStyleRestriction()
*/
protected function ignoreNextStyleRestriction():void
{
this._ignoreNextStyleRestriction = true;
}
/**
* Updates the focus indicator skin by showing or hiding it and
* adjusting its position and dimensions. This function is not called
* automatically. Components that support focus should call this
* function at an appropriate point within the <code>draw()</code>
* function. This function may be overridden if the default behavior is
* not desired.
*/
protected function refreshFocusIndicator():void
{
if(this._focusIndicatorSkin)
{
if(this._hasFocus && this._showFocus)
{
if(this._focusIndicatorSkin.parent != this)
{
this.addChild(this._focusIndicatorSkin);
}
else
{
this.setChildIndex(this._focusIndicatorSkin, this.numChildren - 1);
}
}
else if(this._focusIndicatorSkin.parent)
{
this._focusIndicatorSkin.removeFromParent(false);
}
this._focusIndicatorSkin.x = this._focusPaddingLeft;
this._focusIndicatorSkin.y = this._focusPaddingTop;
this._focusIndicatorSkin.width = this.actualWidth - this._focusPaddingLeft - this._focusPaddingRight;
this._focusIndicatorSkin.height = this.actualHeight - this._focusPaddingTop - this._focusPaddingBottom;
}
}
/**
* @private
*/
protected function refreshHitAreaX():void
{
if(this.actualWidth < this._minTouchWidth)
{
this._hitArea.width = this._minTouchWidth;
}
else
{
this._hitArea.width = this.actualWidth;
}
var hitAreaX:Number = (this.actualWidth - this._hitArea.width) / 2;
if(hitAreaX !== hitAreaX) //isNaN
{
this._hitArea.x = 0;
}
else
{
this._hitArea.x = hitAreaX;
}
}
/**
* @private
*/
protected function refreshHitAreaY():void
{
if(this.actualHeight < this._minTouchHeight)
{
this._hitArea.height = this._minTouchHeight;
}
else
{
this._hitArea.height = this.actualHeight;
}
var hitAreaY:Number = (this.actualHeight - this._hitArea.height) / 2;
if(hitAreaY !== hitAreaY) //isNaN
{
this._hitArea.y = 0;
}
else
{
this._hitArea.y = hitAreaY;
}
}
/**
* Default event handler for <code>FeathersEventType.FOCUS_IN</code>
* that may be overridden in subclasses to perform additional actions
* when the component receives focus.
*/
protected function focusInHandler(event:Event):void
{
this._hasFocus = true;
this.invalidate(INVALIDATION_FLAG_FOCUS);
if(this._focusOutEffectContext !== null)
{
this._focusOutEffectContext.interrupt();
this._focusOutEffectContext = null;
}
if(this._suspendEffectsCount == 0 && this._focusInEffect !== null)
{
this._focusInEffectContext = IEffectContext(this._focusInEffect(this));
this._focusInEffectContext.addEventListener(Event.COMPLETE, focusInEffectContext_completeHandler);
this._focusInEffectContext.play();
}
}
/**
* Default event handler for <code>FeathersEventType.FOCUS_OUT</code>
* that may be overridden in subclasses to perform additional actions
* when the component loses focus.
*/
protected function focusOutHandler(event:Event):void
{
this._hasFocus = false;
this._showFocus = false;
this.invalidate(INVALIDATION_FLAG_FOCUS);
if(this._focusInEffectContext !== null)
{
this._focusInEffectContext.interrupt();
this._focusInEffectContext = null;
}
if(this._suspendEffectsCount == 0 && this._focusOutEffect !== null)
{
this._focusOutEffectContext = IEffectContext(this._focusOutEffect(this));
this._focusOutEffectContext.addEventListener(Event.COMPLETE, focusOutEffectContext_completeHandler);
this._focusOutEffectContext.play();
}
}
/**
* @private
* Initialize the control, if it hasn't been initialized yet. Then,
* invalidate. If already initialized, check if invalid and put back
* into queue.
*/
protected function feathersControl_addedToStageHandler(event:Event):void
{
if(this.stage === null)
{
//this could happen if removed from parent in another
//Event.ADDED_TO_STAGE listener
return;
}
//initialize before setting the validation queue to avoid
//getting added to the validation queue before initialization
//completes.
if(!this._isInitialized)
{
this.initializeNow();
}
this._depth = getDisplayObjectDepthFromStage(this);
this._validationQueue = ValidationQueue.forStarling(this.stage.starling);
if(this.isInvalid())
{
this._invalidateCount = 0;
//add to validation queue, if required
this._validationQueue.addControl(this);
}
//if the removed effect is still active, stop it
if(this._removedEffectContext !== null)
{
this._removedEffectContext.interrupt();
}
if(this.isCreated && this._suspendEffectsCount == 0 && this._addedEffect !== null)
{
this._addedEffectContext = IEffectContext(this._addedEffect(this));
this._addedEffectContext.addEventListener(Event.COMPLETE, addedEffectContext_completeHandler);
this._addedEffectContext.play();
}
}
/**
* @private
*/
protected function feathersControl_removedFromStageHandler(event:Event):void
{
if(this._addedEffectContext !== null)
{
this._addedEffectContext.interrupt();
}
this._depth = -1;
this._validationQueue = null;
}
/**
* @private
*/
protected function addedEffectContext_completeHandler(event:Event):void
{
this._addedEffectContext = null;
}
/**
* @private
*/
protected function removedEffectContext_completeHandler(event:Event, stopped:Boolean):void
{
this._removedEffectContext = null;
if(!stopped)
{
this.removeFromParent(this._disposeAfterRemovedEffect);
}
}
/**
* @private
*/
protected function showEffectContext_completeHandler(event:Event):void
{
this._showEffectContext.removeEventListener(Event.COMPLETE, showEffectContext_completeHandler);
this._showEffectContext = null;
}
/**
* @private
*/
protected function hideEffectContext_completeHandler(event:Event, stopped:Boolean):void
{
this._hideEffectContext.removeEventListener(Event.COMPLETE, hideEffectContext_completeHandler);
this._hideEffectContext = null;
if(!stopped)
{
this.suspendEffects();
this.visible = this._pendingVisible;
this.resumeEffects();
}
}
/**
* @private
*/
private function focusInEffectContext_completeHandler(event:Event):void
{
this._focusInEffectContext.removeEventListener(Event.COMPLETE, focusInEffectContext_completeHandler);
this._focusInEffectContext = null;
}
/**
* @private
*/
private function focusOutEffectContext_completeHandler(event:Event):void
{
this._focusOutEffectContext.removeEventListener(Event.COMPLETE, focusOutEffectContext_completeHandler);
this._focusOutEffectContext = null;
}
/**
* @private
*/
protected function moveEffectContext_completeHandler(event:Event):void
{
this._moveEffectContext.removeEventListener(Event.COMPLETE, moveEffectContext_completeHandler);
this._moveEffectContext = null;
}
/**
* @private
*/
protected function resizeEffectContext_completeHandler(event:Event):void
{
this._resizeEffectContext.removeEventListener(Event.COMPLETE, resizeEffectContext_completeHandler);
this._resizeEffectContext = null;
}
/**
* @private
*/
protected function layoutData_changeHandler(event:Event):void
{
this.dispatchEventWith(FeathersEventType.LAYOUT_DATA_CHANGE);
}
/**
* @private
*/
protected function styleNameList_changeHandler(event:Event):void
{
if(this._styleProvider === null)
{
return;
}
if(this._applyingStyles)
{
throw new IllegalOperationError("Cannot change styleNameList while the style provider is applying styles.");
}
this._applyingStyles = true;
this._styleProvider.applyStyles(this);
this._applyingStyles = false;
}
/**
* @private
*/
protected function styleProvider_changeHandler(event:Event):void
{
if(!this._isInitialized)
{
//safe to ignore changes until initialization
return;
}
if(this._applyingStyles)
{
throw new IllegalOperationError("Cannot change style provider while it is applying styles.");
}
this._applyingStyles = true;
this._styleProvider.applyStyles(this);
this._applyingStyles = false;
}
}
} |
/*
* BetweenAS3
*
* Licensed under the MIT License
*
* Copyright (c) 2009 BeInteractive! (www.be-interactive.org) and
* Spark project (www.libspark.org)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/
package
{
import flash.display.Shape;
import flash.display.Sprite;
import flash.events.Event;
import flash.events.MouseEvent;
import org.libspark.betweenas3.BetweenAS3;
import org.libspark.betweenas3.easing.*;
import org.libspark.betweenas3.tweens.ITween;
/**
* @author yossy:beinteractive
*/
[SWF(width = 800, height = 600, frameRate = 30, backgroundColor = 0xffffff)]
public class EaseSineTest extends Sprite
{
public function EaseSineTest()
{
setupBackground();
var box1:Box = addChild(new Box()) as Box;
var box2:Box = addChild(new Box()) as Box;
var box3:Box = addChild(new Box()) as Box;
var box4:Box = addChild(new Box()) as Box;
_t = BetweenAS3.parallel(
BetweenAS3.tween(box1, {x: 700, y: 120}, {x: 100, y: 120}, 1.0, Sine.easeIn),
BetweenAS3.tween(box2, {x: 700, y: 240}, {x: 100, y: 240}, 1.0, Sine.easeOut),
BetweenAS3.tween(box3, {x: 700, y: 360}, {x: 100, y: 360}, 1.0, Sine.easeInOut),
BetweenAS3.tween(box4, {x: 700, y: 480}, {x: 100, y: 480}, 1.0, Sine.easeOutIn)
);
_t.play();
stage.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler)
}
private var _t:ITween;
private function setupBackground():void
{
var bg:Shape = new Shape();
bg.graphics.beginFill(0xffffff);
bg.graphics.drawRect(0, 0, 800, 600);
bg.graphics.endFill();
bg.graphics.beginFill(0xcccccc);
bg.graphics.drawRect(100, 0, 1, 600);
bg.graphics.drawRect(700, 0, 1, 600);
bg.graphics.endFill();
addChild(bg);
}
private function mouseDownHandler(e:MouseEvent):void
{
if (_t.isPlaying) {
_t.stop();
}
else {
if (_t.position == _t.duration) {
_t.gotoAndPlay(0);
}
else {
_t.play();
}
}
}
}
}
import flash.display.Shape;
internal class Box extends Shape
{
public function Box()
{
graphics.beginFill(0x000000);
graphics.drawRect(-10, -10, 20, 20);
graphics.endFill();
}
} |
package flash.system {
public class SecurityDomain {
public function SecurityDomain() {
}
public static function get currentDomain() : SecurityDomain{
return null;
}
public function get domainID() : String{
return null;
}
}
} |
package org.ranapat.flatflash.examples {
import com.greensock.TweenLite;
import flash.events.MouseEvent;
import flash.geom.Point;
import flash.geom.Rectangle;
import org.ranapat.flatflash.DisplayObject;
import org.ranapat.flatflash.DisplayObjectContainer;
public class Carousel extends DisplayObjectContainer {
private var _items:Vector.<DisplayObject>;
private var _object:Vector.<CarouselObject>;
private var _visibleItems:uint;
private var _initialPoint:Point;
private var _initialSize:Rectangle;
private var angleDelta:uint;
private var radius:uint;
private var minAlpha:Number;
private var minScale:Number;
private var angleToHide:Number;
private var constDegreesToRadians:Number;
private var swipeDeltaTime:Number;
private var swipeAngle:Number;
private var swipeBusy:Boolean;
private var topElementIndex:uint;
public function Carousel() {
super();
this._items = new Vector.<DisplayObject>();
this._visibleItems = 3;
this.radius = 80;
this.minScale = .9;
this.minAlpha = .9;
this.angleToHide = 35;
this.swipeDeltaTime = .002;
this.swipeAngle = 1;
this.constDegreesToRadians = Math.PI / 180;
}
public function set items(value:Vector.<DisplayObject>):void {
this.removeAllChildren();
if (value.length >= this._visibleItems) {
this._items = value;
this._object = new Vector.<CarouselObject>();
this.initialize();
}
}
public function get items():Vector.<DisplayObject> {
return this._items;
}
public function set initialPoint(value:Point):void {
this._initialPoint = value;
}
public function set initialSize(value:Rectangle):void {
this._initialSize = value;
}
public function left():void {
if (!this.swipeBusy) {
this.swipeBusy = true;
var length:Number = this.angleDelta;
var step:Number = this.swipeAngle;
var deltaTime:Number = this.swipeDeltaTime;
for (var i:Number = 0; i < length; i += step) {
TweenLite.delayedCall(i * deltaTime, this.offsetAngle, [ step ]);
}
TweenLite.delayedCall(length * deltaTime, this.finalizeSwipe);
}
}
public function right():void {
if (!this.swipeBusy) {
this.swipeBusy = true;
var length:Number = this.angleDelta;
var step:Number = this.swipeAngle;
var deltaTime:Number = this.swipeDeltaTime;
for (var i:Number = 0; i < length; i += step) {
TweenLite.delayedCall(i * deltaTime, this.offsetAngle, [ -1 * step ]);
}
TweenLite.delayedCall(length * deltaTime, this.finalizeSwipe);
}
}
override protected function handleRemovedFromStage():void {
TweenLite.killDelayedCallsTo(this.offsetAngle);
TweenLite.killDelayedCallsTo(this.finalizeSwipe);
}
private function finalizeSwipe():void {
this.swipeBusy = false;
var i:uint;
var length:uint = this._items.length;
var topElementIndex:uint;
var topElement:DisplayObject;
for (i = 0; i < length; ++i) {
this._items[i].mouseEnabled = false;
if (!topElement || topElement.depth < this._items[i].depth) {
topElement = this._items[i];
topElementIndex = i;
}
//trace(i + " .. " + this._object[i].angle);
}
//trace("\n")
this.topElementIndex = topElementIndex;
//topElement.mouseEnabled = true;
}
private function offsetAngle(value:int):void {
var i:uint;
var length:uint = this._items.length;
for (i = 0; i < length; ++i) {
var angle:int = this._object[i].angle;
var newAngle:int = angle != 180? angle + value : 180;
var itemToActive:int;
var itemToActiveSet:Boolean;
var itemToActiveAngleAtTheSet:int;
if (
angle <= 90 + this.angleToHide && angle >= -90 - this.angleToHide
&& (newAngle > 90 + this.angleToHide || newAngle < -90 - this.angleToHide)
) {
itemToActiveSet = true;
itemToActiveAngleAtTheSet = newAngle;
if (value > 0) {
itemToActive = i + this.visibleItems;
} else {
itemToActive = i - this.visibleItems;
}
itemToActive = itemToActive >= length? itemToActive - length : itemToActive < 0? itemToActive + length : itemToActive;
angle = 180;
} else if (angle != 180) {
angle = newAngle;
}
this._object[i].angle = angle;
}
if (itemToActiveSet) {
this._object[itemToActive].angle = itemToActiveAngleAtTheSet > 0? (itemToActiveAngleAtTheSet - this.visibleItems * this.angleDelta) : (itemToActiveAngleAtTheSet + this.visibleItems * this.angleDelta);
}
this.invalidate();
}
private function initialize():void {
var visibleItems:uint = this.visibleItems;
var angleDelta:uint = 180 / (visibleItems - 1);
var i:uint;
var length:uint = this._items.length;
for (i = 0; i < length; ++i) {
this._object[this._object.length] = new CarouselObject(180, this._items[i]);
}
this._object[0].angle = 0;
//this._items[0].mouseEnabled = true;
this.topElementIndex = 0;
for (i = 1; i <= (visibleItems - 1) / 2; ++i) {
this._object[i].angle = -1 * angleDelta * i;
this._object[length - i].angle = 1 * angleDelta * i;
}
for (i = 0; i < length; ++i) {
this.addChild(this._items[i]);
this._items[i].onMouseEvent(this, this.handleMouseEvent);
}
this.invalidate();
this.angleDelta = angleDelta;
}
private function invalidate():void {
var i:uint;
var length:uint = this._items.length;
for (i = 0; i < length; ++i) {
this.offsetByAngle(i);
}
}
private function offsetByAngle(index:uint):void {
var object:DisplayObject = this._items[index];
if (object.initialized) {
var angle:int = this._object[index].angle;
if (angle != 180) {
var angleRadians:Number = angle * Math.PI / 180;
var depth:Number = Math.cos(angleRadians);
object.visible = true;
object.alpha = this.minAlpha + (1 - this.minAlpha) * depth;
object.depth = object.alpha;
object.scale = this.minScale + (1 - this.minScale) * depth;
object.x = this._initialPoint.x - this.radius * Math.sin(angleRadians) - object.drawnWidth / 2;
object.y = this._initialPoint.y + (this._initialSize.height - object.drawnHeight) / 2;
} else {
object.visible = false;
object.depth = 0;
object.alpha = 0;
}
} else {
object.onInitialize(this, this.handleObjectInitialized, [ index ]);
}
}
private function get visibleItems():uint {
return this._visibleItems;
}
private function handleObjectInitialized(index:uint):void {
this.offsetByAngle(index);
}
private function handleMouseEvent(e:MouseEvent):void {
if (e.type == MouseEvent.CLICK) {
trace("just clicked, we are here... " + this.topElementIndex)
}
}
}
}
import org.ranapat.flatflash.DisplayObject;
class CarouselObject {
public var angle:int;
public var displayObject:DisplayObject;
public function CarouselObject(angle:int, displayObject:DisplayObject) {
this.angle = angle;
this.displayObject = displayObject;
}
} |
package entities
{
import flash.display.BitmapData;
import flash.geom.Point;
import flash.geom.Rectangle;
public class Grid
{
private var _widthInTiles:uint;
private var _heightInTiles:uint;
private var _entities:Vector.<Entity>;
public function Grid(WidthInTiles:uint = 40, HeightInTiles:uint = 30)
{
_widthInTiles = WidthInTiles;
_heightInTiles = HeightInTiles;
_entities = new Vector.<Entity>();
}
public function selectEntities(SelectLeft:uint, SelectTop:uint, Width:uint = 1, Height:uint = 1):Vector.<Entity>
{
var SelectRight:uint = SelectLeft + Width - 1;
var SelectBottom:uint = SelectTop + Height - 1;
var SelectedEntities:Vector.<Entity> = new Vector.<Entity>();
for each (var CurrentEntity:Entity in _entities)
{
var Left:uint = CurrentEntity.gridX;
var Top:uint = CurrentEntity.gridY;
var Right:uint = Left + CurrentEntity.widthInTiles - 1;
var Bottom:uint = Top + CurrentEntity.heightInTiles - 1;
if (SelectLeft <= Right && SelectRight >= Left &&
SelectTop <= Bottom && SelectBottom >= Top)
SelectedEntities.push(CurrentEntity);
}
return SelectedEntities;
}
public function addEntity(EntityToAdd:Entity, GridX:uint, GridY:uint):void
{
//var Right:uint = GridX + EntityToAdd.widthInTiles - 1;
//var Bottom:uint = GridY + EntityToAdd.heightInTiles - 1;
//if (Right >= _widthInTiles || Bottom >= _heightInTiles)
// return false;
EntityToAdd.gridX = GridX;
EntityToAdd.gridY = GridY;
_entities.push(EntityToAdd);
//return true;
}
public function sortEntities():void
{
_entities.sort(sortEntitiesByDrawingLayer);
}
private function sortEntitiesByDrawingLayer(EntityA:Entity, EntityB:Entity):Number
{
if (EntityA.drawingLayer < EntityB.drawingLayer)
return -1;
else if (EntityA.drawingLayer > EntityB.drawingLayer)
return 1;
else
return 0;
}
public function get widthInTiles():uint
{
return _widthInTiles;
}
public function get heightInTiles():uint
{
return _heightInTiles;
}
public function get entities():Vector.<Entity>
{
return _entities;
}
}
}
|
package laya.d3.loaders {
import laya.d3.core.material.BaseMaterial;
import laya.d3.graphics.IndexBuffer3D;
import laya.d3.graphics.VertexBuffer3D;
import laya.d3.graphics.VertexDeclaration;
import laya.d3.graphics.VertexPosition;
import laya.d3.graphics.VertexPositionNTBTexture;
import laya.d3.graphics.VertexPositionNTBTexture0Texture1Skin;
import laya.d3.graphics.VertexPositionNormal;
import laya.d3.graphics.VertexPositionNormalColor;
import laya.d3.graphics.VertexPositionNormalColorSTangent;
import laya.d3.graphics.VertexPositionNormalColorSkin;
import laya.d3.graphics.VertexPositionNormalColorSkinSTangent;
import laya.d3.graphics.VertexPositionNormalColorSkinTangent;
import laya.d3.graphics.VertexPositionNormalColorTangent;
import laya.d3.graphics.VertexPositionNormalColorTexture;
import laya.d3.graphics.VertexPositionNormalColorTexture0Texture1;
import laya.d3.graphics.VertexPositionNormalColorTexture0Texture1STangent;
import laya.d3.graphics.VertexPositionNormalColorTexture0Texture1Skin;
import laya.d3.graphics.VertexPositionNormalColorTexture0Texture1SkinSTangent;
import laya.d3.graphics.VertexPositionNormalColorTexture0Texture1SkinTangent;
import laya.d3.graphics.VertexPositionNormalColorTexture0Texture1Tangent;
import laya.d3.graphics.VertexPositionNormalColorTextureSTangent;
import laya.d3.graphics.VertexPositionNormalColorTextureSkin;
import laya.d3.graphics.VertexPositionNormalColorTextureSkinSTangent;
import laya.d3.graphics.VertexPositionNormalColorTextureSkinTangent;
import laya.d3.graphics.VertexPositionNormalColorTextureTangent;
import laya.d3.graphics.VertexPositionNormalSTangent;
import laya.d3.graphics.VertexPositionNormalTangent;
import laya.d3.graphics.VertexPositionNormalTexture;
import laya.d3.graphics.VertexPositionNormalTexture0Texture1;
import laya.d3.graphics.VertexPositionNormalTexture0Texture1STangent;
import laya.d3.graphics.VertexPositionNormalTexture0Texture1Skin;
import laya.d3.graphics.VertexPositionNormalTexture0Texture1SkinSTangent;
import laya.d3.graphics.VertexPositionNormalTexture0Texture1SkinTangent;
import laya.d3.graphics.VertexPositionNormalTexture0Texture1Tangent;
import laya.d3.graphics.VertexPositionNormalTextureSTangent;
import laya.d3.graphics.VertexPositionNormalTextureSkin;
import laya.d3.graphics.VertexPositionNormalTextureSkinSTangent;
import laya.d3.graphics.VertexPositionNormalTextureSkinTangent;
import laya.d3.graphics.VertexPositionNormalTextureTangent;
import laya.d3.graphics.VertexPositionTexture0;
import laya.d3.math.Matrix4x4;
import laya.d3.resource.models.Mesh;
import laya.d3.resource.models.SubMesh;
import laya.net.Loader;
import laya.utils.Byte;
import laya.webgl.WebGLContext;
/**
* @private
* <code>LoadModel</code> 类用于模型加载。
*/
public class LoadModelV03 {
/**@private */
public static var _vertexDeclarationMap_Discard:Object = {//兼容代码
"POSITION,NORMAL,COLOR,UV,UV1,BLENDWEIGHT,BLENDINDICES,TANGENT": VertexPositionNormalColorTexture0Texture1SkinTangent.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV,UV1,BLENDWEIGHT,BLENDINDICES": VertexPositionNormalColorTexture0Texture1Skin.vertexDeclaration,
"POSITION,NORMAL,TANGENT,BINORMAL,UV,UV1,BLENDWEIGHT,BLENDINDICES,": VertexPositionNTBTexture0Texture1Skin.vertexDeclaration,
"POSITION,NORMAL,UV,UV1,BLENDWEIGHT,BLENDINDICES,TANGENT": VertexPositionNormalTexture0Texture1SkinTangent.vertexDeclaration,
"POSITION,NORMAL,UV,UV1,BLENDWEIGHT,BLENDINDICES": VertexPositionNormalTexture0Texture1Skin.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV,BLENDWEIGHT,BLENDINDICES,TANGENT": VertexPositionNormalColorTextureSkinTangent.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV,BLENDWEIGHT,BLENDINDICES": VertexPositionNormalColorTextureSkin.vertexDeclaration,
"POSITION,NORMAL,UV,BLENDWEIGHT,BLENDINDICES,TANGENT": VertexPositionNormalTextureSkinTangent.vertexDeclaration,
"POSITION,NORMAL,UV,BLENDWEIGHT,BLENDINDICES": VertexPositionNormalTextureSkin.vertexDeclaration,
"POSITION,NORMAL,COLOR,BLENDWEIGHT,BLENDINDICES,TANGENT": VertexPositionNormalColorSkinTangent.vertexDeclaration,
"POSITION,NORMAL,COLOR,BLENDWEIGHT,BLENDINDICES": VertexPositionNormalColorSkin.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV,UV1,TANGENT": VertexPositionNormalColorTexture0Texture1Tangent.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV,UV1": VertexPositionNormalColorTexture0Texture1.vertexDeclaration,
"POSITION,NORMAL,UV,UV1,TANGENT": VertexPositionNormalTexture0Texture1Tangent.vertexDeclaration,
"POSITION,NORMAL,UV,UV1": VertexPositionNormalTexture0Texture1.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV,TANGENT": VertexPositionNormalColorTextureTangent.vertexDeclaration,
"POSITION,NORMAL,UV,TANGENT,BINORMAL": VertexPositionNTBTexture.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV": VertexPositionNormalColorTexture.vertexDeclaration,
"POSITION,NORMAL,UV,TANGENT": VertexPositionNormalTextureTangent.vertexDeclaration,
"POSITION,NORMAL,UV": VertexPositionNormalTexture.vertexDeclaration,
"POSITION,NORMAL,COLOR,TANGENT": VertexPositionNormalColorTangent.vertexDeclaration,
"POSITION,NORMAL,COLOR": VertexPositionNormalColor.vertexDeclaration,
"POSITION,NORMAL,TANGENT": VertexPositionNormalTangent.vertexDeclaration,
"POSITION,NORMAL": VertexPositionNormal.vertexDeclaration,
"POSITION,UV": VertexPositionTexture0.vertexDeclaration,
"POSITION": VertexPosition.vertexDeclaration};
/**@private */
public static var _vertexDeclarationMap:Object = {
"POSITION,NORMAL,COLOR,UV,UV1,BLENDWEIGHT,BLENDINDICES,TANGENT": VertexPositionNormalColorTexture0Texture1SkinSTangent.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV,UV1,BLENDWEIGHT,BLENDINDICES": VertexPositionNormalColorTexture0Texture1Skin.vertexDeclaration,
"POSITION,NORMAL,TANGENT,BINORMAL,UV,UV1,BLENDWEIGHT,BLENDINDICES,": VertexPositionNTBTexture0Texture1Skin.vertexDeclaration,
"POSITION,NORMAL,UV,UV1,BLENDWEIGHT,BLENDINDICES,TANGENT": VertexPositionNormalTexture0Texture1SkinSTangent.vertexDeclaration,
"POSITION,NORMAL,UV,UV1,BLENDWEIGHT,BLENDINDICES": VertexPositionNormalTexture0Texture1Skin.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV,BLENDWEIGHT,BLENDINDICES,TANGENT": VertexPositionNormalColorTextureSkinSTangent.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV,BLENDWEIGHT,BLENDINDICES": VertexPositionNormalColorTextureSkin.vertexDeclaration,
"POSITION,NORMAL,UV,BLENDWEIGHT,BLENDINDICES,TANGENT": VertexPositionNormalTextureSkinSTangent.vertexDeclaration,
"POSITION,NORMAL,UV,BLENDWEIGHT,BLENDINDICES": VertexPositionNormalTextureSkin.vertexDeclaration,
"POSITION,NORMAL,COLOR,BLENDWEIGHT,BLENDINDICES,TANGENT": VertexPositionNormalColorSkinSTangent.vertexDeclaration,
"POSITION,NORMAL,COLOR,BLENDWEIGHT,BLENDINDICES": VertexPositionNormalColorSkin.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV,UV1,TANGENT": VertexPositionNormalColorTexture0Texture1STangent.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV,UV1": VertexPositionNormalColorTexture0Texture1.vertexDeclaration,
"POSITION,NORMAL,UV,UV1,TANGENT": VertexPositionNormalTexture0Texture1STangent.vertexDeclaration,
"POSITION,NORMAL,UV,UV1": VertexPositionNormalTexture0Texture1.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV,TANGENT": VertexPositionNormalColorTextureSTangent.vertexDeclaration,
"POSITION,NORMAL,UV,TANGENT,BINORMAL": VertexPositionNTBTexture.vertexDeclaration,
"POSITION,NORMAL,COLOR,UV": VertexPositionNormalColorTexture.vertexDeclaration,
"POSITION,NORMAL,UV,TANGENT": VertexPositionNormalTextureSTangent.vertexDeclaration,
"POSITION,NORMAL,UV": VertexPositionNormalTexture.vertexDeclaration,
"POSITION,NORMAL,COLOR,TANGENT": VertexPositionNormalColorSTangent.vertexDeclaration,
"POSITION,NORMAL,COLOR": VertexPositionNormalColor.vertexDeclaration,
"POSITION,NORMAL,TANGENT": VertexPositionNormalSTangent.vertexDeclaration,
"POSITION,NORMAL": VertexPositionNormal.vertexDeclaration,
"POSITION,UV": VertexPositionTexture0.vertexDeclaration,
"POSITION": VertexPosition.vertexDeclaration};
/**@private */
private static var _BLOCK:Object = {count: 0};
/**@private */
private static var _DATA:Object = {offset: 0, size: 0};
/**@private */
private static var _strings:Array = [];
/**@private */
private static var _readData:Byte;
/**@private */
private static var _version:String;
/**@private */
private static var _mesh:Mesh;
/**@private */
private static var _subMeshes:Vector.<SubMesh>;
/**@private */
private static var _materialMap:Object;
/**
* @private
*/
public static function parse(readData:Byte, version:String, mesh:Mesh, subMeshes:Vector.<SubMesh>, materialMap:Object):void {
_mesh = mesh;
_subMeshes = subMeshes;
_materialMap = materialMap;
_version = version;
_readData = readData;
READ_DATA();
READ_BLOCK();
READ_STRINGS();
for (var i:int = 0, n:int = _BLOCK.count; i < n; i++) {
_readData.pos = _BLOCK.blockStarts[i];
var index:int = _readData.getUint16();
var blockName:String = _strings[index];
var fn:Function = LoadModelV03["READ_" + blockName];
if (fn == null)
throw new Error("model file err,no this function:" + index + " " + blockName);
else
fn.call();
}
_strings.length = 0;
_readData = null;
_version = null;
_mesh = null;
_subMeshes = null;
_materialMap = null;
}
/**
* @private
*/
private static function _readString():String {
return _strings[_readData.getUint16()];
}
/**
* @private
*/
private static function READ_DATA():void {
_DATA.offset = _readData.getUint32();
_DATA.size = _readData.getUint32();
}
/**
* @private
*/
private static function READ_BLOCK():void {
var count:uint = _BLOCK.count = _readData.getUint16();
var blockStarts:Array = _BLOCK.blockStarts = [];
var blockLengths:Array = _BLOCK.blockLengths = [];
for (var i:int = 0; i < count; i++) {
blockStarts.push(_readData.getUint32());
blockLengths.push(_readData.getUint32());
}
}
/**
* @private
*/
private static function READ_STRINGS():void {
var offset:uint = _readData.getUint32();
var count:uint = _readData.getUint16();
var prePos:int = _readData.pos;
_readData.pos = offset + _DATA.offset;
for (var i:int = 0; i < count; i++)
_strings[i] = _readData.readUTFString();
_readData.pos = prePos;
}
/**
* @private
*/
private static function READ_MESH():Boolean {
var name:String = _readString();
var arrayBuffer:ArrayBuffer = _readData.__getBuffer();
var i:int, n:int;
var vertexBufferCount:uint = _readData.getInt16();
var offset:int = _DATA.offset;
for (i = 0; i < vertexBufferCount; i++) {
var vbStart:uint = offset + _readData.getUint32();
var vbLength:uint = _readData.getUint32();
var vbDatas:Float32Array = new Float32Array(arrayBuffer.slice(vbStart, vbStart + vbLength));
var bufferAttribute:String = _readString();
var vertexDeclaration:VertexDeclaration;
switch(_version){
case "LAYAMODEL:03":
vertexDeclaration= _vertexDeclarationMap_Discard[bufferAttribute];
break;
case "LAYAMODEL:0301":
vertexDeclaration= _vertexDeclarationMap[bufferAttribute];
break;
default:
throw new Error("LoadModelV03: unknown version.");
}
if (!vertexDeclaration)
throw new Error("LoadModelV03: unknown vertexDeclaration.");
var vertexBuffer:VertexBuffer3D = VertexBuffer3D.create(vertexDeclaration, (vbDatas.length * 4) / vertexDeclaration.vertexStride, WebGLContext.STATIC_DRAW, true);
vertexBuffer.setData(vbDatas);
_mesh._vertexBuffers.push(vertexBuffer);
}
var ibStart:uint = offset + _readData.getUint32();
var ibLength:uint = _readData.getUint32();
var ibDatas:Uint16Array = new Uint16Array(arrayBuffer.slice(ibStart, ibStart + ibLength));
var indexBuffer:IndexBuffer3D = IndexBuffer3D.create(IndexBuffer3D.INDEXTYPE_USHORT, ibLength / 2, WebGLContext.STATIC_DRAW, true);
indexBuffer.setData(ibDatas);
_mesh._indexBuffer = indexBuffer;
var boneNames:Vector.<String> = _mesh._boneNames = new Vector.<String>();
var boneCount:uint = _readData.getUint16();
boneNames.length = boneCount;
for (i = 0; i < boneCount; i++)
boneNames[i] = _strings[_readData.getUint16()];
_readData.pos += 8;//TODO:优化
var inverseGlobalBindPoseStart:uint = _readData.getUint32();
var inverseGlobalBinPoseLength:uint = _readData.getUint32();
var invGloBindPoseDatas:Float32Array = new Float32Array(arrayBuffer.slice(offset + inverseGlobalBindPoseStart, offset + inverseGlobalBindPoseStart + inverseGlobalBinPoseLength));
_mesh._inverseBindPoses = new Vector.<Matrix4x4>();
for (i = 0, n = invGloBindPoseDatas.length; i < n; i += 16) {
var inverseGlobalBindPose:Matrix4x4 = new Matrix4x4(invGloBindPoseDatas[i + 0], invGloBindPoseDatas[i + 1], invGloBindPoseDatas[i + 2], invGloBindPoseDatas[i + 3], invGloBindPoseDatas[i + 4], invGloBindPoseDatas[i + 5], invGloBindPoseDatas[i + 6], invGloBindPoseDatas[i + 7], invGloBindPoseDatas[i + 8], invGloBindPoseDatas[i + 9], invGloBindPoseDatas[i + 10], invGloBindPoseDatas[i + 11], invGloBindPoseDatas[i + 12], invGloBindPoseDatas[i + 13], invGloBindPoseDatas[i + 14], invGloBindPoseDatas[i + 15]);
_mesh._inverseBindPoses.push(inverseGlobalBindPose);
}
_mesh._skinnedDatas = new Float32Array(invGloBindPoseDatas.length*16);
//trace("READ_MESH:" + name);
return true;
}
/**
* @private
*/
private static function READ_SUBMESH():Boolean {
var arrayBuffer:ArrayBuffer = _readData.__getBuffer();
var submesh:SubMesh = new SubMesh(_mesh);
var vbIndex:int = _readData.getInt16();
var vbStart:int = _readData.getUint32();
var vbLength:int = _readData.getUint32();
submesh._vertexBuffer = _mesh._vertexBuffers[vbIndex];
submesh._vertexStart = vbStart;
submesh._vertexCount = vbLength;
var ibStart:int = _readData.getUint32();
var ibCount:int = _readData.getUint32();
var indexBuffer:IndexBuffer3D = _mesh._indexBuffer;
submesh._indexBuffer = indexBuffer;
submesh._indexStart = ibStart;
submesh._indexCount = ibCount;
submesh._indices = new Uint16Array(indexBuffer.getData().buffer, ibStart * 2, ibCount);
var offset:int = _DATA.offset;
var subIndexBufferStart:Vector.<int> = submesh._subIndexBufferStart;
var subIndexBufferCount:Vector.<int> = submesh._subIndexBufferCount;
var boneIndicesList:Vector.<Uint8Array> = submesh._boneIndicesList;
var drawCount:int = _readData.getUint16();
subIndexBufferStart.length = drawCount;
subIndexBufferCount.length = drawCount;
boneIndicesList.length = drawCount;
for (var i:int = 0; i < drawCount; i++) {
subIndexBufferStart[i] = _readData.getUint32();
subIndexBufferCount[i] = _readData.getUint32();
var boneDicofs:int = _readData.getUint32();
var boneDicsize:int = _readData.getUint32();
boneIndicesList[i] = new Uint8Array(arrayBuffer.slice(offset + boneDicofs, offset + boneDicofs + boneDicsize));
}
_subMeshes.push(submesh);
return true;
}
}
} |
//----------------------------------------------------------------------------------------------------
// NES Emulator
// Copyright (c) 2009 keim All rights reserved.
// Distributed under BSD-style license (see org.si.license.txt).
//--------------------------------------------------------------------------------
package org.si.sound.nsf {
public class APU {
//public var apu:APU_internal = new APU_internal();
function APU() {
}
public function reset() : void {
//apu.reset();
}
public function sync(cycles:int) : void {
//apu.sync(cycles);
}
public function readReg(addr:int) : int {
return 0;
}
public function writeReg(addr:int, data:int) : void {
}
}
}
|
/* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* ***** BEGIN LICENSE BLOCK *****
/* 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/. */
import com.adobe.test.Assert;
function START(summary)
{
// print out bugnumber
/*if ( BUGNUMBER ) {
writeLineToLog ("BUGNUMBER: " + BUGNUMBER );
}*/
XML.setSettings (null);
testcases = new Array();
// text field for results
tc = 0;
/*this.addChild ( tf );
tf.x = 30;
tf.y = 50;
tf.width = 200;
tf.height = 400;*/
//_print(summary);
var summaryParts = summary.split(" ");
//_print("section: " + summaryParts[0] + "!");
//fileName = summaryParts[0];
}
function TEST(section, expected, actual)
{
AddTestCase(section, expected, actual);
}
function TEST_XML(section, expected, actual)
{
var actual_t = typeof actual;
var expected_t = typeof expected;
if (actual_t != "xml") {
// force error on type mismatch
TEST(section, new XML(), actual);
return;
}
if (expected_t == "string") {
TEST(section, expected, actual.toXMLString());
} else if (expected_t == "number") {
TEST(section, String(expected), actual.toXMLString());
} else {
reportFailure ("", 'Bad TEST_XML usage: type of expected is "+expected_t+", should be number or string');
}
}
function reportFailure (section, msg)
{
trace("~FAILURE: " + section + " | " + msg);
}
function AddTestCase( description, expect, actual ) {
testcases[tc++] = Assert.expectEq(description, "|"+expect+"|", "|"+actual+"|" );
}
function myGetNamespace (obj, ns) {
if (ns != undefined) {
return obj.namespace(ns);
} else {
return obj.namespace();
}
}
function NL()
{
//return java.lang.System.getProperty("line.separator");
return "\n";
}
function BUG(arg){
// nothing here
}
function END()
{
//test();
}
START("13.4.3.6 - XML.prettyIndent");
// xml doc
XML.prettyPrinting = true;
var xmlDoc = "<XML><TEAM>Giants</TEAM><CITY>San Francisco</CITY><SPORT>Baseball</SPORT></XML>"
// a) value of prettyIndent
Assert.expectEq( "XML.prettyIndent = 4, XML.prettyIndent", 4, (XML.prettyIndent = 4, XML.prettyIndent));
Assert.expectEq( "XML.prettyIndent = 2, XML.prettyIndent", 2, (XML.prettyIndent = 2, XML.prettyIndent));
Assert.expectEq( "XML.prettyIndent = -1, XML.prettyIndent", -1, (XML.prettyIndent = -1, XML.prettyIndent));
// b) pretty printing
Assert.expectEq( "MYOB = new XML(xmlDoc); XML.prettyIndent = 2; MYOB.toString()",
"<XML>" + NL() + " <TEAM>Giants</TEAM>" + NL() + " <CITY>San Francisco</CITY>" + NL() + " <SPORT>Baseball</SPORT>" + NL() + "</XML>",
(MYOB = new XML(xmlDoc), XML.prettyIndent = 2, MYOB.toString()));
Assert.expectEq( "MYOB = new XML(xmlDoc); XML.prettyIdent = 4; MYOB.toString()",
"<XML>" + NL() + " <TEAM>Giants</TEAM>" + NL() + " <CITY>San Francisco</CITY>" + NL() + " <SPORT>Baseball</SPORT>" + NL() + "</XML>",
(MYOB = new XML(xmlDoc), XML.prettyIndent = 4, MYOB.toString()));
Assert.expectEq( "MYOB = new XML(xmlDoc); XML.prettyIndent = 1; MYOB.toString()",
"<XML>" + NL() + " <TEAM>Giants</TEAM>" + NL() + " <CITY>San Francisco</CITY>" + NL() + " <SPORT>Baseball</SPORT>" + NL() + "</XML>",
(MYOB = new XML(xmlDoc), XML.prettyIndent = 1, MYOB.toString()));
// !!@ bad value causes pretty printing to be disabled
Assert.expectEq( "MYOB = new XML(xmlDoc); XML.prettyIndent = -5; MYOB.toString()",
"<XML><TEAM>Giants</TEAM><CITY>San Francisco</CITY><SPORT>Baseball</SPORT></XML>",
//"<XML>" + NL() + " <TEAM>Giants</TEAM>" + NL() + " <CITY>San Francisco</CITY>" + NL() + " <SPORT>Baseball</SPORT>" + NL() + "</XML>",
(MYOB = new XML(xmlDoc), XML.prettyIndent = -5, MYOB.toString()));
// !!@ very simple example of printing output
XML.prettyPrinting = true;
XML.prettyIndent = 10;
Assert.expectEq( "MYOB = new XML(xmlDoc); XML.prettyPrinting = true; MYOB.toString()",
"<XML>" + NL() + " <TEAM>Giants</TEAM>" + NL() + " <CITY>San Francisco</CITY>" + NL() + " <SPORT>Baseball</SPORT>" + NL() + "</XML>",
(MYOB = new XML(xmlDoc), XML.prettyPrinting = true, MYOB.toString()));
// d) attributes
XML.prettyIndent = 5;
xmlDoc = "<XML><TEAM attr1=\"attr\" attr2=\"hi\">Giants</TEAM><CITY>San Francisco</CITY><SPORT>Baseball</SPORT></XML>"
Assert.expectEq( "MYOB = new XML(xmlDoc); XML.prettyPrinting = true; MYOB.toString()",
"<XML>" + NL() + " <TEAM attr1=\"attr\" attr2=\"hi\">Giants</TEAM>" + NL() + " <CITY>San Francisco</CITY>" + NL() + " <SPORT>Baseball</SPORT>" + NL() + "</XML>",
(MYOB = new XML(xmlDoc), XML.prettyPrinting = true, MYOB.toString()));
END();
|
package fairygui.gears
{
import fairygui.GObject;
public class GearIcon extends GearBase
{
private var _storage:Object;
private var _default:String;
public function GearIcon(owner:GObject)
{
super(owner);
}
override protected function init():void
{
_default = _owner.icon;
_storage = {};
}
override protected function addStatus(pageId:String, value:String):void
{
if(pageId==null)
_default = value;
else
_storage[pageId] = value;
}
override public function apply():void
{
_owner._gearLocked = true;
var data:* = _storage[_controller.selectedPageId];
if(data!=undefined)
_owner.icon = String(data);
else
_owner.icon = _default;
_owner._gearLocked = false;
}
override public function updateState():void
{
_storage[_controller.selectedPageId] = _owner.icon;
}
}
} |
//
// $Id$
package com.threerings.msoy.room.data {
/**
* Represents the addition of furniture to a room.
*/
public class FurniUpdate_Add extends FurniUpdate
{
// from FurniUpdate
override protected function doUpdate (model :MsoySceneModel) :void
{
model.addFurni(data);
}
}
}
|
package away3d.core.base
{
import away3d.arcane;
import away3d.core.managers.Stage3DProxy;
import flash.display3D.Context3D;
import flash.display3D.IndexBuffer3D;
import flash.display3D.VertexBuffer3D;
import flash.geom.Matrix3D;
import flash.geom.Vector3D;
use namespace arcane;
/**
* The SubGeometry class is a collections of geometric data that describes a triangle mesh. It is owned by a
* Geometry instance, and wrapped by a SubMesh in the scene graph.
* Several SubGeometries are grouped so they can be rendered with different materials, but still represent a single
* object.
*
* @see away3d.core.base.Geometry
* @see away3d.core.base.SubMesh
*/
public class SubGeometry
{
private var _parentGeometry : Geometry;
// raw data:
protected var _customData : Vector.<Number>;
protected var _vertices : Vector.<Number>;
protected var _uvs : Vector.<Number>;
protected var _secondaryUvs : Vector.<Number>;
protected var _vertexNormals : Vector.<Number>;
protected var _vertexTangents : Vector.<Number>;
protected var _indices : Vector.<uint>;
protected var _faceNormalsData : Vector.<Number>;
protected var _faceWeights : Vector.<Number>;
protected var _faceTangents : Vector.<Number>;
// buffers:
protected var _vertexBuffer : Vector.<VertexBuffer3D> = new Vector.<VertexBuffer3D>(8);
protected var _uvBuffer : Vector.<VertexBuffer3D> = new Vector.<VertexBuffer3D>(8);
protected var _secondaryUvBuffer : Vector.<VertexBuffer3D> = new Vector.<VertexBuffer3D>(8);
protected var _vertexNormalBuffer : Vector.<VertexBuffer3D> = new Vector.<VertexBuffer3D>(8);
protected var _vertexTangentBuffer : Vector.<VertexBuffer3D> = new Vector.<VertexBuffer3D>(8);
protected var _customBuffer : Vector.<VertexBuffer3D>;
protected var _indexBuffer : Vector.<IndexBuffer3D> = new Vector.<IndexBuffer3D>(8);
private var _autoGenerateUVs : Boolean = false;
private var _autoDeriveVertexNormals : Boolean = true;
private var _autoDeriveVertexTangents : Boolean = true;
private var _useFaceWeights : Boolean = false;
// raw data dirty flags:
protected var _uvsDirty : Boolean = true;
protected var _faceNormalsDirty : Boolean = true;
protected var _faceTangentsDirty : Boolean = true;
protected var _vertexNormalsDirty : Boolean = true;
protected var _vertexTangentsDirty : Boolean = true;
// buffer dirty flags, per context:
protected var _vertexBufferContext : Vector.<Context3D> = new Vector.<Context3D>(8);
protected var _uvBufferContext : Vector.<Context3D> = new Vector.<Context3D>(8);
protected var _secondaryUvBufferContext : Vector.<Context3D> = new Vector.<Context3D>(8);
protected var _indexBufferContext : Vector.<Context3D> = new Vector.<Context3D>(8);
protected var _vertexNormalBufferContext : Vector.<Context3D> = new Vector.<Context3D>(8);
protected var _vertexTangentBufferContext : Vector.<Context3D> = new Vector.<Context3D>(8);
protected var _customBufferContext : Vector.<Context3D>;
protected var _numVertices : uint;
protected var _numIndices : uint;
protected var _numTriangles : uint;
private var _uvScaleV : Number = 1;
private var _customElementsPerVertex : int;
/**
* Creates a new SubGeometry object.
*/
public function SubGeometry()
{
}
/**
* The total amount of vertices in the SubGeometry.
*/
public function get numVertices() : uint
{
return _numVertices;
}
/**
* The total amount of triangles in the SubGeometry.
*/
public function get numTriangles() : uint
{
return _numTriangles;
}
/**
* Defines whether a UV buffer should be automatically generated to contain dummy UV coordinates.
* Set to true if a geometry lacks UV data but uses a material that requires it, or leave as false
* in cases where UV data is explicitly defined or the material does not require UV data.
*/
public function get autoGenerateDummyUVs() : Boolean
{
return _autoGenerateUVs;
}
public function set autoGenerateDummyUVs(value : Boolean) : void
{
_autoGenerateUVs = value;
_uvsDirty = value;
}
/**
* True if the vertex normals should be derived from the geometry, false if the vertex normals are set
* explicitly.
*/
public function get autoDeriveVertexNormals() : Boolean
{
return _autoDeriveVertexNormals;
}
public function set autoDeriveVertexNormals(value : Boolean) : void
{
_autoDeriveVertexNormals = value;
_vertexNormalsDirty = value;
}
/**
* Indicates whether or not to take the size of faces into account when auto-deriving vertex normals and tangents.
*/
public function get useFaceWeights() : Boolean
{
return _useFaceWeights;
}
public function set useFaceWeights(value : Boolean) : void
{
_useFaceWeights = value;
if (_autoDeriveVertexNormals) _vertexNormalsDirty = true;
if (_autoDeriveVertexTangents) _vertexTangentsDirty = true;
_faceNormalsDirty = true;
}
/**
* True if the vertex tangents should be derived from the geometry, false if the vertex normals are set
* explicitly.
*/
public function get autoDeriveVertexTangents() : Boolean
{
return _autoDeriveVertexTangents;
}
public function set autoDeriveVertexTangents(value : Boolean) : void
{
_autoDeriveVertexTangents = value;
_vertexTangentsDirty = value;
}
public function initCustomBuffer(numVertices : int, elementsPerVertex : int) : void
{
_numVertices = numVertices;
_customElementsPerVertex = elementsPerVertex;
_customBuffer = new Vector.<VertexBuffer3D>(8);
_customBufferContext = new Vector.<Context3D>(8);
}
/**
* A buffer allowing you any sort of data. Needs to be initialized by calling initCustomBuffer
* @param stage3DProxy
* @return
*/
public function getCustomBuffer(stage3DProxy : Stage3DProxy) : VertexBuffer3D
{
var contextIndex : int = stage3DProxy._stage3DIndex;
var context : Context3D = stage3DProxy._context3D;
if (_customBufferContext[contextIndex] != context || !_customBuffer[contextIndex]) {
_customBuffer[contextIndex] = context.createVertexBuffer(_numVertices, _customElementsPerVertex);
_customBuffer[contextIndex].uploadFromVector(_customData, 0, _numVertices);
_customBufferContext[contextIndex] = context;
}
return _customBuffer[contextIndex];
}
/**
* Retrieves the VertexBuffer3D object that contains vertex positions.
* @param context The Context3D for which we request the buffer
* @return The VertexBuffer3D object that contains vertex positions.
*/
public function getVertexBuffer(stage3DProxy : Stage3DProxy) : VertexBuffer3D
{
var contextIndex : int = stage3DProxy._stage3DIndex;
var context : Context3D = stage3DProxy._context3D;
if (_vertexBufferContext[contextIndex] != context || !_vertexBuffer[contextIndex]) {
_vertexBuffer[contextIndex] = context.createVertexBuffer(_numVertices, 3);
_vertexBuffer[contextIndex].uploadFromVector(_vertices, 0, _numVertices);
_vertexBufferContext[contextIndex] = context;
}
return _vertexBuffer[contextIndex];
}
/**
* Retrieves the VertexBuffer3D object that contains texture coordinates.
* @param context The Context3D for which we request the buffer
* @return The VertexBuffer3D object that contains texture coordinates.
*/
public function getUVBuffer(stage3DProxy : Stage3DProxy) : VertexBuffer3D
{
var contextIndex : int = stage3DProxy._stage3DIndex;
var context : Context3D = stage3DProxy._context3D;
if (_autoGenerateUVs && _uvsDirty)
updateDummyUVs();
if (_uvBufferContext[contextIndex] != context || !_uvBuffer[contextIndex]) {
_uvBuffer[contextIndex] = context.createVertexBuffer(_numVertices, 2);
_uvBuffer[contextIndex].uploadFromVector(_uvs, 0, _numVertices);
_uvBufferContext[contextIndex] = context;
}
return _uvBuffer[contextIndex];
}
public function applyTransformation(transform:Matrix3D):void
{
var len : uint = _vertices.length/3;
var i:uint, i0:uint, i1:uint, i2:uint;
var v3:Vector3D = new Vector3D();
var bakeNormals:Boolean = _vertexNormals != null;
var bakeTangents:Boolean = _vertexTangents != null;
for (i = 0; i < len; ++i) {
i0 = 3 * i;
i1 = i0 + 1;
i2 = i0 + 2;
// bake position
v3.x = _vertices[i0];
v3.y = _vertices[i1];
v3.z = _vertices[i2];
v3 = transform.transformVector(v3);
_vertices[i0] = v3.x;
_vertices[i1] = v3.y;
_vertices[i2] = v3.z;
// bake normal
if(bakeNormals)
{
v3.x = _vertexNormals[i0];
v3.y = _vertexNormals[i1];
v3.z = _vertexNormals[i2];
v3 = transform.deltaTransformVector(v3);
_vertexNormals[i0] = v3.x;
_vertexNormals[i1] = v3.y;
_vertexNormals[i2] = v3.z;
}
// bake tangent
if(bakeTangents)
{
v3.x = _vertexTangents[i0];
v3.y = _vertexTangents[i1];
v3.z = _vertexTangents[i2];
v3 = transform.deltaTransformVector(v3);
_vertexTangents[i0] = v3.x;
_vertexTangents[i1] = v3.y;
_vertexTangents[i2] = v3.z;
}
}
}
public function getSecondaryUVBuffer(stage3DProxy : Stage3DProxy) : VertexBuffer3D
{
var contextIndex : int = stage3DProxy._stage3DIndex;
var context : Context3D = stage3DProxy._context3D;
if (_secondaryUvBufferContext[contextIndex] != context || !_secondaryUvBuffer[contextIndex]) {
_secondaryUvBuffer[contextIndex] = context.createVertexBuffer(_numVertices, 2);
_secondaryUvBuffer[contextIndex].uploadFromVector(_secondaryUvs, 0, _numVertices);
_secondaryUvBufferContext[contextIndex] = context;
}
return _secondaryUvBuffer[contextIndex];
}
/**
* Retrieves the VertexBuffer3D object that contains vertex normals.
* @param context The Context3D for which we request the buffer
* @return The VertexBuffer3D object that contains vertex normals.
*/
public function getVertexNormalBuffer(stage3DProxy : Stage3DProxy) : VertexBuffer3D
{
var contextIndex : int = stage3DProxy._stage3DIndex;
var context : Context3D = stage3DProxy._context3D;
if (_autoDeriveVertexNormals && _vertexNormalsDirty)
updateVertexNormals();
if (_vertexNormalBufferContext[contextIndex] != context || !_vertexNormalBuffer[contextIndex]) {
_vertexNormalBuffer[contextIndex] = context.createVertexBuffer(_numVertices, 3)
_vertexNormalBuffer[contextIndex].uploadFromVector(_vertexNormals, 0, _numVertices);
_vertexNormalBufferContext[contextIndex] = context;
}
return _vertexNormalBuffer[contextIndex];
}
/**
* Retrieves the VertexBuffer3D object that contains vertex tangents.
* @param context The Context3D for which we request the buffer
* @return The VertexBuffer3D object that contains vertex tangents.
*/
public function getVertexTangentBuffer(stage3DProxy : Stage3DProxy) : VertexBuffer3D
{
var contextIndex : int = stage3DProxy._stage3DIndex;
var context : Context3D = stage3DProxy._context3D;
if (_vertexTangentsDirty)
updateVertexTangents();
if (_vertexTangentBufferContext[contextIndex] != context || !_vertexTangentBuffer[contextIndex]) {
_vertexTangentBuffer[contextIndex] = context.createVertexBuffer(_numVertices, 3)
_vertexTangentBuffer[contextIndex].uploadFromVector(_vertexTangents, 0, _numVertices);
_vertexTangentBufferContext[contextIndex] = context;
}
return _vertexTangentBuffer[contextIndex];
}
/**
* Retrieves the VertexBuffer3D object that contains triangle indices.
* @param context The Context3D for which we request the buffer
* @return The VertexBuffer3D object that contains triangle indices.
*/
public function getIndexBuffer(stage3DProxy : Stage3DProxy) : IndexBuffer3D
{
var contextIndex : int = stage3DProxy._stage3DIndex;
var context : Context3D = stage3DProxy._context3D;
if (_indexBufferContext[contextIndex] != context || !_indexBuffer[contextIndex]) {
_indexBuffer[contextIndex] = context.createIndexBuffer(_numIndices);
_indexBuffer[contextIndex].uploadFromVector(_indices, 0, _numIndices);
_indexBufferContext[contextIndex] = context;
}
return _indexBuffer[contextIndex];
}
/**
* Clones the current object
* @return An exact duplicate of the current object.
*/
public function clone() : SubGeometry
{
var clone : SubGeometry = new SubGeometry();
clone.updateVertexData(_vertices.concat());
clone.updateUVData(_uvs.concat());
clone.updateIndexData(_indices.concat());
if (_secondaryUvs) clone.updateSecondaryUVData(_secondaryUvs.concat());
if (!_autoDeriveVertexNormals) clone.updateVertexNormalData(_vertexNormals.concat());
if (!_autoDeriveVertexTangents) clone.updateVertexTangentData(_vertexTangents.concat());
return clone;
}
/**
* Scales the geometry.
* @param scale The amount by which to scale.
*/
public function scale(scale : Number):void
{
var len : uint = _vertices.length;
for (var i : uint = 0; i < len; ++i)
_vertices[i] *= scale;
invalidateBuffers(_vertexBufferContext);
}
/**
* Scales the uv coordinates
* @param scaleU The amount by which to scale on the u axis. Default is 1;
* @param scaleV The amount by which to scale on the v axis. Default is 1;
*/
private var _scaleU : Number = 1;
private var _scaleV : Number = 1;
public function get scaleU():Number
{
return _scaleU;
}
public function get scaleV():Number
{
return _scaleV;
}
public function scaleUV(scaleU : Number = 1, scaleV : Number = 1):void
{
for (var i : uint = 0; i < _uvs.length;++i) {
_uvs[i] /= _scaleU;
_uvs[i] *= scaleU;
i++;
_uvs[i] /= _scaleV;
_uvs[i] *= scaleV;
}
_scaleU = scaleU;
_scaleV = scaleV;
invalidateBuffers(_uvBufferContext);
}
/**
* Clears all resources used by the SubGeometry object.
*/
public function dispose() : void
{
disposeAllVertexBuffers();
disposeIndexBuffers(_indexBuffer);
_customBuffer = null;
_vertexBuffer = null;
_vertexNormalBuffer = null;
_uvBuffer = null;
_secondaryUvBuffer = null;
_vertexTangentBuffer = null;
_indexBuffer = null;
_vertices = null;
_uvs = null;
_secondaryUvs = null;
_vertexNormals = null;
_vertexTangents = null;
_indices = null;
_faceNormalsData = null;
_faceWeights = null;
_faceTangents = null;
_customData = null;
_vertexBufferContext = null;
_uvBufferContext = null;
_secondaryUvBufferContext = null;
_indexBufferContext = null;
_vertexNormalBufferContext = null;
_vertexTangentBufferContext = null;
_customBufferContext = null;
}
protected function disposeAllVertexBuffers() : void
{
disposeVertexBuffers(_vertexBuffer);
disposeVertexBuffers(_vertexNormalBuffer);
disposeVertexBuffers(_uvBuffer);
disposeVertexBuffers(_secondaryUvBuffer);
disposeVertexBuffers(_vertexTangentBuffer);
if (_customBuffer) disposeVertexBuffers(_customBuffer);
}
/**
* The raw vertex position data.
*/
public function get vertexData() : Vector.<Number>
{
return _vertices;
}
public function updateCustomData(data : Vector.<Number>) : void
{
invalidateBuffers(_customBufferContext);
}
/**
* Updates the vertex data of the SubGeometry.
* @param vertices The new vertex data to upload.
*/
public function updateVertexData(vertices : Vector.<Number>) : void
{
if (_autoDeriveVertexNormals) _vertexNormalsDirty = true;
if (_autoDeriveVertexTangents) _vertexTangentsDirty = true;
_faceNormalsDirty = true;
_vertices = vertices;
var numVertices : int = vertices.length / 3;
if (numVertices != _numVertices) disposeAllVertexBuffers();
_numVertices = numVertices;
invalidateBuffers(_vertexBufferContext);
invalidateBounds();
}
private function invalidateBounds() : void
{
if (_parentGeometry) _parentGeometry.invalidateBounds(this);
}
/**
* The raw texture coordinate data.
*/
public function get UVData() : Vector.<Number>
{
return _uvs;
}
public function get secondaryUVData() : Vector.<Number>
{
return _secondaryUvs;
}
/**
* Updates the uv coordinates of the SubGeometry.
* @param uvs The uv coordinates to upload.
*/
public function updateUVData(uvs : Vector.<Number>) : void
{
// normals don't get dirty from this
if (_autoDeriveVertexTangents) _vertexTangentsDirty = true;
_faceTangentsDirty = true;
_uvs = uvs;
invalidateBuffers(_uvBufferContext);
}
public function updateSecondaryUVData(uvs : Vector.<Number>) : void
{
_secondaryUvs = uvs;
invalidateBuffers(_secondaryUvBufferContext);
}
/**
* The raw vertex normal data.
*/
public function get vertexNormalData() : Vector.<Number>
{
if (_autoDeriveVertexNormals && _vertexNormalsDirty) updateVertexNormals();
return _vertexNormals;
}
/**
* Updates the vertex normals of the SubGeometry. When updating the vertex normals like this,
* autoDeriveVertexNormals will be set to false and vertex normals will no longer be calculated automatically.
* @param vertexNormals The vertex normals to upload.
*/
public function updateVertexNormalData(vertexNormals : Vector.<Number>) : void
{
_vertexNormalsDirty = false;
_autoDeriveVertexNormals = (vertexNormals == null);
_vertexNormals = vertexNormals;
invalidateBuffers(_vertexNormalBufferContext);
}
/**
* The raw vertex tangent data.
*
* @private
*/
public function get vertexTangentData() : Vector.<Number>
{
if (_autoDeriveVertexTangents && _vertexTangentsDirty) updateVertexTangents();
return _vertexTangents;
}
/**
* Updates the vertex tangents of the SubGeometry. When updating the vertex tangents like this,
* autoDeriveVertexTangents will be set to false and vertex tangents will no longer be calculated automatically.
* @param vertexTangents The vertex tangents to upload.
*/
public function updateVertexTangentData(vertexTangents : Vector.<Number>) : void
{
_vertexTangentsDirty = false;
_autoDeriveVertexTangents = (vertexTangents == null);
_vertexTangents = vertexTangents;
invalidateBuffers(_vertexTangentBufferContext);
}
/**
* The raw index data that define the faces.
*
* @private
*/
public function get indexData() : Vector.<uint>
{
return _indices;
}
/**
* Updates the face indices of the SubGeometry.
* @param indices The face indices to upload.
*/
public function updateIndexData(indices : Vector.<uint>) : void
{
_indices = indices;
_numIndices = indices.length;
var numTriangles : int = _numIndices/3;
if (_numTriangles != numTriangles)
disposeIndexBuffers(_indexBuffer);
_numTriangles = numTriangles;
invalidateBuffers(_indexBufferContext);
_faceNormalsDirty = true;
if (_autoDeriveVertexNormals) _vertexNormalsDirty = true;
if (_autoDeriveVertexTangents) _vertexTangentsDirty = true;
}
/**
* The raw data of the face normals, in the same order as the faces are listed in the index list.
*
* @private
*/
arcane function get faceNormalsData() : Vector.<Number>
{
if (_faceNormalsDirty) updateFaceNormals();
return _faceNormalsData;
}
/**
* The Geometry object that 'owns' this SubGeometry object.
*
* @private
*/
arcane function get parentGeometry() : Geometry
{
return _parentGeometry;
}
arcane function set parentGeometry(value : Geometry) : void
{
_parentGeometry = value;
}
/**
* Invalidates all buffers in a vector, causing them the update when they are first requested.
* @param buffers The vector of buffers to invalidate.
*/
protected function invalidateBuffers(buffers : Vector.<Context3D>) : void
{
for (var i : int = 0; i < 8; ++i)
buffers[i] = null;
}
/**
* Disposes all buffers in a given vector.
* @param buffers The vector of buffers to dispose.
*/
protected function disposeVertexBuffers(buffers : Vector.<VertexBuffer3D>) : void
{
for (var i : int = 0; i < 8; ++i) {
if (buffers[i]) {
buffers[i].dispose();
buffers[i] = null;
}
}
}
/**
* Disposes all buffers in a given vector.
* @param buffers The vector of buffers to dispose.
*/
protected function disposeIndexBuffers(buffers : Vector.<IndexBuffer3D>) : void
{
for (var i : int = 0; i < 8; ++i) {
if (buffers[i]) {
buffers[i].dispose();
buffers[i] = null;
}
}
}
/**
* Updates the vertex normals based on the geometry.
*/
private function updateVertexNormals() : void
{
if (_faceNormalsDirty)
updateFaceNormals();
var v1 : uint, v2 : uint, v3 : uint;
var f1 : uint = 0, f2 : uint = 1, f3 : uint = 2;
var lenV : uint = _vertices.length;
// reset, yo
if (_vertexNormals) while (v1 < lenV) _vertexNormals[v1++] = 0.0;
else _vertexNormals = new Vector.<Number>(_vertices.length, true);
var i : uint, k : uint;
var lenI : uint = _indices.length;
var index : uint;
var weight : uint;
while (i < lenI) {
weight = _useFaceWeights? _faceWeights[k++] : 1;
index = _indices[i++]*3;
_vertexNormals[index++] += _faceNormalsData[f1]*weight;
_vertexNormals[index++] += _faceNormalsData[f2]*weight;
_vertexNormals[index] += _faceNormalsData[f3]*weight;
index = _indices[i++]*3;
_vertexNormals[index++] += _faceNormalsData[f1]*weight;
_vertexNormals[index++] += _faceNormalsData[f2]*weight;
_vertexNormals[index] += _faceNormalsData[f3]*weight;
index = _indices[i++]*3;
_vertexNormals[index++] += _faceNormalsData[f1]*weight;
_vertexNormals[index++] += _faceNormalsData[f2]*weight;
_vertexNormals[index] += _faceNormalsData[f3]*weight;
f1 += 3;
f2 += 3;
f3 += 3;
}
v1 = 0; v2 = 1; v3 = 2;
while (v1 < lenV) {
var vx : Number = _vertexNormals[v1];
var vy : Number = _vertexNormals[v2];
var vz : Number = _vertexNormals[v3];
var d : Number = 1.0/Math.sqrt(vx*vx+vy*vy+vz*vz);
_vertexNormals[v1] *= d;
_vertexNormals[v2] *= d;
_vertexNormals[v3] *= d;
v1 += 3;
v2 += 3;
v3 += 3;
}
_vertexNormalsDirty = false;
invalidateBuffers(_vertexNormalBufferContext);
}
private function updateDummyUVs() : void
{
var uvs : Vector.<Number>;
var i : uint, idx : uint, uvIdx : uint;
var len : uint = _vertices.length / 3 * 2;
_uvs ||= new Vector.<Number>();
_uvs.fixed = false;
_uvs.length = 0;
idx = 0;
uvIdx = 0;
while (idx < len) {
if (uvIdx==0) {
_uvs[idx++] = 0.0;
_uvs[idx++] = 1.0;
}
else if (uvIdx==1) {
_uvs[idx++] = 0.5;
_uvs[idx++] = 0.0;
}
else if (uvIdx==2) {
_uvs[idx++] = 1.0;
_uvs[idx++] = 1.0;
}
uvIdx++;
if (uvIdx==3)
uvIdx = 0;
}
_uvs.fixed = true;
_uvsDirty = false;
invalidateBuffers(_uvBufferContext);
}
/**
* Updates the vertex tangents based on the geometry.
*/
private function updateVertexTangents() : void
{
if (_vertexNormalsDirty) updateVertexNormals();
if (_faceTangentsDirty)
updateFaceTangents();
var v1 : uint, v2 : uint, v3 : uint;
var f1 : uint = 0, f2 : uint = 1, f3 : uint = 2;
var lenV : uint = _vertices.length;
if (_vertexTangents) while (v1 < lenV) _vertexTangents[v1++] = 0.0;
else _vertexTangents = new Vector.<Number>(_vertices.length, true);
var i : uint, k : uint;
var lenI : uint = _indices.length;
var index : uint;
var weight : uint;
while (i < lenI) {
weight = _useFaceWeights? _faceWeights[k++] : 1;
index = _indices[i++]*3;
_vertexTangents[index++] += _faceTangents[f1]*weight;
_vertexTangents[index++] += _faceTangents[f2]*weight;
_vertexTangents[index] += _faceTangents[f3]*weight;
index = _indices[i++]*3;
_vertexTangents[index++] += _faceTangents[f1]*weight;
_vertexTangents[index++] += _faceTangents[f2]*weight;
_vertexTangents[index] += _faceTangents[f3]*weight;
index = _indices[i++]*3;
_vertexTangents[index++] += _faceTangents[f1]*weight;
_vertexTangents[index++] += _faceTangents[f2]*weight;
_vertexTangents[index] += _faceTangents[f3]*weight;
f1 += 3;
f2 += 3;
f3 += 3;
}
v1 = 0; v2 = 1; v3 = 2;
while (v1 < lenV) {
var vx : Number = _vertexTangents[v1];
var vy : Number = _vertexTangents[v2];
var vz : Number = _vertexTangents[v3];
var d : Number = 1.0/Math.sqrt(vx*vx+vy*vy+vz*vz);
_vertexTangents[v1] *= d;
_vertexTangents[v2] *= d;
_vertexTangents[v3] *= d;
v1 += 3;
v2 += 3;
v3 += 3;
}
_vertexTangentsDirty = false;
invalidateBuffers(_vertexTangentBufferContext);
}
/**
* Updates the normals for each face.
*/
private function updateFaceNormals() : void
{
var i : uint, j : uint, k : uint;
var index : uint;
var len : uint = _indices.length;
var x1 : Number, x2 : Number, x3 : Number;
var y1 : Number, y2 : Number, y3 : Number;
var z1 : Number, z2 : Number, z3 : Number;
var dx1 : Number, dy1 : Number, dz1 : Number;
var dx2 : Number, dy2 : Number, dz2 : Number;
var cx : Number, cy : Number, cz : Number;
var d : Number;
_faceNormalsData ||= new Vector.<Number>(len, true);
if (_useFaceWeights) _faceWeights ||= new Vector.<Number>(len/3, true);
while (i < len) {
index = _indices[i++]*3;
x1 = _vertices[index++];
y1 = _vertices[index++];
z1 = _vertices[index];
index = _indices[i++]*3;
x2 = _vertices[index++];
y2 = _vertices[index++];
z2 = _vertices[index];
index = _indices[i++]*3;
x3 = _vertices[index++];
y3 = _vertices[index++];
z3 = _vertices[index];
dx1 = x3-x1;
dy1 = y3-y1;
dz1 = z3-z1;
dx2 = x2-x1;
dy2 = y2-y1;
dz2 = z2-z1;
cx = dz1*dy2 - dy1*dz2;
cy = dx1*dz2 - dz1*dx2;
cz = dy1*dx2 - dx1*dy2;
d = Math.sqrt(cx*cx+cy*cy+cz*cz);
// length of cross product = 2*triangle area
if (_useFaceWeights) {
var w : Number = d*10000;
if (w < 1) w = 1;
_faceWeights[k++] = w;
}
d = 1/d;
_faceNormalsData[j++] = cx*d;
_faceNormalsData[j++] = cy*d;
_faceNormalsData[j++] = cz*d;
}
_faceNormalsDirty = false;
_faceTangentsDirty = true;
}
/**
* Updates the tangents for each face.
*/
private function updateFaceTangents() : void
{
var i : uint, j : uint;
var index1 : uint, index2 : uint, index3 : uint;
var len : uint = _indices.length;
var ui : uint, vi : uint;
var v0 : Number;
var dv1 : Number, dv2 : Number;
var denom : Number;
var x0 : Number, y0 : Number, z0 : Number;
var dx1 : Number, dy1 : Number, dz1 : Number;
var dx2 : Number, dy2 : Number, dz2 : Number;
var cx : Number, cy : Number, cz : Number;
var invScale : Number = 1/_uvScaleV;
_faceTangents ||= new Vector.<Number>(_indices.length, true);
while (i < len) {
index1 = _indices[i++];
index2 = _indices[i++];
index3 = _indices[i++];
v0 = _uvs[uint((index1 << 1) + 1)];
ui = index2 << 1;
dv1 = (_uvs[uint((index2 << 1) + 1)] - v0)*invScale;
ui = index3 << 1;
dv2 = (_uvs[uint((index3 << 1) + 1)] - v0)*invScale;
vi = index1*3;
x0 = _vertices[vi];
y0 = _vertices[uint(vi+1)];
z0 = _vertices[uint(vi+2)];
vi = index2*3;
dx1 = _vertices[uint(vi)] - x0;
dy1 = _vertices[uint(vi+1)] - y0;
dz1 = _vertices[uint(vi+2)] - z0;
vi = index3*3;
dx2 = _vertices[uint(vi)] - x0;
dy2 = _vertices[uint(vi+1)] - y0;
dz2 = _vertices[uint(vi+2)] - z0;
cx = dv2*dx1 - dv1*dx2;
cy = dv2*dy1 - dv1*dy2;
cz = dv2*dz1 - dv1*dz2;
denom = 1/Math.sqrt(cx*cx + cy*cy + cz*cz);
_faceTangents[j++] = denom*cx;
_faceTangents[j++] = denom*cy;
_faceTangents[j++] = denom*cz;
}
_faceTangentsDirty = false;
}
protected function disposeForStage3D(stage3DProxy : Stage3DProxy) : void
{
var index : int = stage3DProxy._stage3DIndex;
if (_vertexBuffer[index]) {
_vertexBuffer[index].dispose();
_vertexBuffer[index] = null;
}
if (_uvBuffer[index]) {
_uvBuffer[index].dispose();
_uvBuffer[index] = null;
}
if (_secondaryUvBuffer[index]) {
_secondaryUvBuffer[index].dispose();
_secondaryUvBuffer[index] = null;
}
if (_vertexNormalBuffer[index]) {
_vertexNormalBuffer[index].dispose();
_vertexNormalBuffer[index] = null;
}
if (_vertexTangentBuffer[index]) {
_vertexTangentBuffer[index].dispose();
_vertexTangentBuffer[index] = null;
}
if (_indexBuffer[index]) {
_indexBuffer[index].dispose();
_indexBuffer[index] = null;
}
}
public function get vertexBufferOffset() : int
{
return 0;
}
public function get normalBufferOffset() : int
{
return 0;
}
public function get tangentBufferOffset() : int
{
return 0;
}
public function get UVBufferOffset() : int
{
return 0;
}
public function get secondaryUVBufferOffset() : int
{
return 0;
}
}
} |
package emap.interfaces
{
/**
*
* 楼层接口。
*
*/
import emap.vos.VOFloor;
public interface IFloor
{
/**
*
* 数据源。
*
*/
function get data():VOFloor;
/**
* @private
*/
function set data($value:VOFloor):void;
}
} |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package org.apache.royale.reflection
{
/**
* Returns the qualified name of a closure instance. Using this to compare against is recommended when checking
* for closures. It could insulate against future changes or future variation between targets
*
* @langversion 3.0
* @playerversion Flash 10.2
* @playerversion AIR 2.6
* @productversion Royale 0.0
*/
public function getClosureQualifiedName():String
{
return ExtraData.CLOSURE_QNAME;
}
} |
package ru.inspirit.gpu.image
{
import flash.display3D.Context3D;
import flash.display3D.Context3DTextureFormat;
import flash.display3D.IndexBuffer3D;
import flash.display3D.Program3D;
import flash.display3D.textures.TextureBase;
import flash.utils.ByteArray;
public class GPUImageTwoPassFilter extends GPUImageFilter
{
protected var _secondPassTexture:TextureBase;
protected var _secondPassProgram:Program3D;
protected var _vertexShader2:ByteArray = null;
protected var _fragmentShader2:ByteArray = null;
public function GPUImageTwoPassFilter()
{
super();
}
public function buildShaderPrograms(firstPassVertexShader:ByteArray, firstPassFragmentShader:ByteArray,
secondPassVertexShader:ByteArray = null, secondPassFragmentShader:ByteArray = null):void
{
// init first Program
super.buildShaderProgram(firstPassVertexShader, firstPassFragmentShader);
// clean up first
if (_secondPassProgram) _secondPassProgram.dispose();
// skip if both not defined
if (null == secondPassVertexShader && null == secondPassFragmentShader)
{
return;
}
if (null == secondPassVertexShader)
{
_vertexShader2 = secondPassVertexShader = agalCompiler.assemble(VERTEX_TYPE, DEFAULT_VERTEX_SHADER_CODE, AGAL_DEBUG);
}
if (null == secondPassFragmentShader)
{
_fragmentShader2 = secondPassFragmentShader = agalCompiler.assemble(FRAGMENT_TYPE, DEFAULT_FRAGMENT_SHADER_CODE, AGAL_DEBUG);
}
// Create the shader program
_secondPassProgram = _context.createProgram();
_secondPassProgram.upload(secondPassVertexShader, secondPassFragmentShader);
}
override public function setup(context:Context3D, textureWidth:int, textureHeight:int):void
{
var flag:int = int(_context != context) << 1;
flag |= int(_textureWidth != textureWidth) << 2;
flag |= int(_textureHeight != textureHeight) << 2;
if (flag&2)
{
_context = context;
buildShaderPrograms(_vertexShader, _fragmentShader, _vertexShader2, _fragmentShader2);
}
if(flag && _outputTexture)
{
_outputTexture.dispose();
_outputTexture = null;
_secondPassTexture.dispose();
_secondPassTexture = null;
}
if(flag)
{
_textureWidth = textureWidth >> (4 - _renderQuality);
_textureHeight = textureHeight >> (4 - _renderQuality);
_outputTexture = _context.createTexture(_textureWidth, _textureHeight, Context3DTextureFormat.BGRA, true);
_secondPassTexture = _context.createTexture(_textureWidth, _textureHeight, Context3DTextureFormat.BGRA, true);
}
}
public function activateSecondPass():void
{
throw new Error("GPUImageTwoPassFilter::activateSecondPass Should be overwritten!");
}
public function deactivateSecondPass():void
{
//
}
override public function process(indices:IndexBuffer3D, sourceTexture:TextureBase = null):void
{
// FIRST PASS
_context.setRenderToTexture(_secondPassTexture, _enableDepthAndStencil, _antiAlias, 0);
_context.clear(0.0, 0.0, 0.0, 1.0);
activate();
_context.setTextureAt(0, sourceTexture || _inputTexture);
_context.drawTriangles(indices, 0, 2);
deactivate();
// SECOND PASS
_context.setRenderToTexture(_outputTexture, _enableDepthAndStencil, _antiAlias, 0);
_context.clear(0.0, 0.0, 0.0, 1.0);
activateSecondPass();
_context.setTextureAt(0, _secondPassTexture);
_context.drawTriangles(indices, 0, 2);
deactivateSecondPass();
}
override public function dispose():void
{
super.dispose();
if(_secondPassProgram) _secondPassProgram.dispose();
if (_secondPassTexture) _secondPassTexture.dispose();
if (_vertexShader2) _vertexShader2.clear();
if (_fragmentShader2) _fragmentShader2.clear();
_vertexShader2 = null;
_fragmentShader2 = null;
_secondPassTexture = null;
_secondPassProgram = null;
}
}
}
|
package aerys.minko.scene.controller.debug
{
import flash.utils.Dictionary;
import aerys.minko.render.geometry.primitive.CubeGeometry;
import aerys.minko.render.material.Material;
import aerys.minko.render.material.basic.BasicMaterial;
import aerys.minko.scene.controller.AbstractController;
import aerys.minko.scene.controller.mesh.skinning.SkinningController;
import aerys.minko.scene.node.Group;
import aerys.minko.scene.node.Mesh;
import aerys.minko.type.enum.DepthTest;
/**
* Add debug meshes to see the joints/bones of the skeleton of a skinned Mesh.
* This controller can target all the meshes with a SkinningController:
*
* <pre>
* var debugCtrl : JointsDebugController = new JointsDebugController();
*
* for each (var mesh : Mesh in scene.get('//mesh[hasController(SkinningController)]'))
* mesh.addController(debugCtrl);
* </pre>
*
* @author Jean-Marc Le Roux
*
*/
public final class JointsDebugController extends AbstractController
{
private var _jointSize : Number;
private var _jointsMaterial : Material;
private var _targetToJointsMesh : Dictionary = new Dictionary();
public function JointsDebugController(jointsSize : Number = 0.08,
jointsMaterial : Material = null)
{
super(Mesh);
initialize(jointsSize, jointsMaterial);
}
private function initialize(jointSize : Number, jointsMaterial : Material) : void
{
_jointSize = jointSize;
_jointsMaterial = jointsMaterial;
if (!_jointsMaterial)
{
var jointsBasicMaterial : BasicMaterial = new BasicMaterial();
jointsBasicMaterial.diffuseColor = 0xff0000ff;
jointsBasicMaterial.depthWriteEnabled = false;
jointsBasicMaterial.depthTest = DepthTest.ALWAYS;
_jointsMaterial = jointsBasicMaterial;
}
targetAdded.add(targetAddedHandler);
targetRemoved.add(targetRemovedHandler);
}
private function targetAddedHandler(ctrl : AbstractController,
target : Mesh) : void
{
var skinningCtrl : SkinningController = target.getControllersByType(SkinningController)[0]
as SkinningController;
_targetToJointsMesh[target] = [];
for each (var joint : Group in skinningCtrl.joints)
addJointsMeshes(joint, target);
}
private function targetRemovedHandler(ctrl : AbstractController,
target : Mesh) : void
{
var skinningCtrl : SkinningController = target.getControllersByType(SkinningController)[0]
as SkinningController;
for each (var jointMesh : Mesh in _targetToJointsMesh[target])
jointMesh.parent = null;
delete _targetToJointsMesh[target];
}
private function addJointsMeshes(joint : Group,
target : Mesh) : void
{
if (joint.getChildByName('__joint__'))
return ;
var numChildren : uint = joint.numChildren;
for (var i : uint = 0; i < numChildren; ++i)
{
var child : Group = joint.getChildAt(i) as Group;
if (child != null)
{
var jointMesh : Mesh = new Mesh(
CubeGeometry.cubeGeometry, _jointsMaterial, '__joint__'
);
jointMesh.transform.appendUniformScale(_jointSize);
joint.addChild(jointMesh);
_targetToJointsMesh[target].push(jointMesh);
}
}
}
}
} |
package ageofai.villager.view
{
import ageofai.unit.base.BaseUnitView;
import ageofai.unit.constant.CUnitProperties;
import ageofai.unit.vo.UnitVO;
import flash.display.MovieClip;
/**
* ...
* @author Tibor Túri
*/
public class VillagerView extends BaseUnitView
{
public function VillagerView()
{
this.speed = CUnitProperties.VILLAGER_SPEED;
this.createChildren();
}
override public function createChildren():void
{
this.createUI( VillagerUI );
(this.graphicUI as MovieClip).bag.visible = false;
this.createLifeBar();
}
public function showHarvestAnimation( villagerVO:UnitVO ):void
{
if ( this == villagerVO.view )
{
(this.graphicUI as MovieClip).bag.visible = true;
(this.graphicUI as MovieClip).gotoAndPlay("harvest");
}
}
public function showArriwedHomeAnimation():void
{
(this.graphicUI as MovieClip).bag.visible = false;
(this.graphicUI as MovieClip).gotoAndPlay("move");
}
}
} |
package laya.d3.resource {
import laya.d3.utils.Size;
import laya.events.Event;
import laya.maths.Arith;
import laya.net.Loader;
import laya.resource.Bitmap;
import laya.utils.Browser;
import laya.utils.Handler;
import laya.webgl.WebGL;
import laya.webgl.WebGLContext;
import laya.webgl.resource.WebGLImage;
/**
* <code>Texture2D</code> 二维纹理。
*/
public class Texture2D extends BaseTexture {
/**@private 文件路径全名。*/
private var _src:String;
/**@private HTML Image*/
private var _image:*;
/**@private 异步加载锁*/
private var _recreateLock:Boolean = false;
/**@private 异步加载完成后是否需要释放(有可能在恢复过程中,再次被释放,用此变量做标记)*/
private var _needReleaseAgain:Boolean = false;
/**
* 获取文件路径全名。
*/
public function get src():String {
return _src;
}
/**
* 创建一个 <code>Texture2D</code> 实例。
*/
public function Texture2D(src:String) {
super();
_src = src;
_image = new Browser.window.Image();
_image.crossOrigin = "";
var loader:Loader = new Loader();
loader.once(Event.COMPLETE, this, _onTextureLoaded);
loader.load(src, "nativeimage", false);
}
/**
* @private
*/
private function _onTextureLoaded(img:*):void {
_image = img;
var w:int = img.width;
var h:int = img.height;
_width = w;
_height = h;
_size = new Size(w, h);
_loaded = true;
event(Event.LOADED, this);
}
/**
* @private
*/
private function _createWebGlTexture():void {
if (!_image) {
throw "create GLTextur err:no data:" + _image;
}
var gl:WebGLContext = WebGL.mainContext;
var glTex:* = _source = gl.createTexture();
var w:int = _width;
var h:int = _height;
var preTarget:* = WebGLContext.curBindTexTarget;
var preTexture:* = WebGLContext.curBindTexValue;
WebGLContext.bindTexture(gl, WebGLContext.TEXTURE_2D, glTex);
gl.texImage2D(WebGLContext.TEXTURE_2D, 0, WebGLContext.RGBA, WebGLContext.RGBA, WebGLContext.UNSIGNED_BYTE, _image);
var minFifter:int = this._minFifter;
var magFifter:int = this._magFifter;
var repeat:int = this._repeat ? WebGLContext.REPEAT : WebGLContext.CLAMP_TO_EDGE;
var isPot:Boolean = Arith.isPOT(w, h);//提前修改内存尺寸,忽悠异步影响
if (isPot) {
if (this._mipmap)
(minFifter !== -1) || (minFifter = WebGLContext.LINEAR_MIPMAP_LINEAR);
else
(minFifter !== -1) || (minFifter = WebGLContext.LINEAR);
(magFifter !== -1) || (magFifter = WebGLContext.LINEAR);
gl.texParameteri(WebGLContext.TEXTURE_2D, WebGLContext.TEXTURE_MIN_FILTER, minFifter);
gl.texParameteri(WebGLContext.TEXTURE_2D, WebGLContext.TEXTURE_MAG_FILTER, magFifter);
gl.texParameteri(WebGLContext.TEXTURE_2D, WebGLContext.TEXTURE_WRAP_S, repeat);
gl.texParameteri(WebGLContext.TEXTURE_2D, WebGLContext.TEXTURE_WRAP_T, repeat);
this._mipmap && gl.generateMipmap(WebGLContext.TEXTURE_2D);
} else {
(minFifter !== -1) || (minFifter = WebGLContext.LINEAR);
(magFifter !== -1) || (magFifter = WebGLContext.LINEAR);
gl.texParameteri(WebGLContext.TEXTURE_2D, WebGLContext.TEXTURE_MIN_FILTER, minFifter);
gl.texParameteri(WebGLContext.TEXTURE_2D, WebGLContext.TEXTURE_MAG_FILTER, magFifter);
gl.texParameteri(WebGLContext.TEXTURE_2D, WebGLContext.TEXTURE_WRAP_S, WebGLContext.CLAMP_TO_EDGE);
gl.texParameteri(WebGLContext.TEXTURE_2D, WebGLContext.TEXTURE_WRAP_T, WebGLContext.CLAMP_TO_EDGE);
}
(preTarget && preTexture) && (WebGLContext.bindTexture(gl, preTarget, preTexture));
_image.onload = null;
_image = null;
if (isPot)
memorySize = w * h * 4 * (1 + 1 / 3);//使用mipmap则在原来的基础上增加1/3
else
memorySize = w * h * 4;
_recreateLock = false;
}
/**
* 重新创建资源,如果异步创建中被强制释放再创建,则需等待释放完成后再重新加载创建。
*/
override protected function recreateResource():void {
if (_src == null || _src === "")
return;
_needReleaseAgain = false;
if (!_image) {
_recreateLock = true;
startCreate();
var _this:Texture2D = this;
_image = new Browser.window.Image();
_image.crossOrigin = "";
_image.onload = function():void {
if (_this._needReleaseAgain)//异步处理,加载完后可能,如果强制释放资源存在已被释放的风险
{
_this._needReleaseAgain = false;
_this._image.onload = null;
_this._image = null;
return;
}
_this._createWebGlTexture();
_this.completeCreate();//处理创建完成后相关操作
};
_image.src = _src;
} else {
if (_recreateLock) {
return;
}
startCreate();
_createWebGlTexture();
completeCreate();//处理创建完成后相关操作
}
}
/**
* 销毁资源。
*/
override protected function detoryResource():void {
if (_recreateLock) {
_needReleaseAgain = true;
}
if (_source) {
WebGL.mainContext.deleteTexture(_source);
_source = null;
_image = null;
memorySize = 0;
}
}
}
} |
/*
The License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
package com.photobucket.webapi.interfaces
{
import flash.events.IEventDispatcher;
import mx.collections.ArrayCollection;
[Event(name="userUpdated", type="flash.events.Event")]
/**
* Bindable interface for accessing a user
* @author jlewark
*
*/
public interface IUser extends IEventDispatcher
{
[Bindable(event="userUpdated")]
function get id():String;
function get server():String;
[Bindable(event="userUpdated")]
function get username():String;
[Bindable(event="userUpdated")]
function get album_url():String;
function get defaultImageUploadSize():String;
function set defaultImageUploadSize(value:String):void;
function get contacts():ArrayCollection;
function getRecentMedia(type:String = "all", number:Number = 20, page:Number = 1):ArrayCollection;
function getRootAlbum():IAlbum;
}
} |
package org.umbraco.desktopmediauploader.events
{
import flash.events.Event;
public class SignedOutEvent extends Event
{
public static const SIGNED_OUT:String = "signedOut";
public function SignedOutEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false)
{
super(type, bubbles, cancelable);
}
override public function clone():Event {
return new SignedOutEvent(type, bubbles, cancelable);
}
}
} |
/**
* ...
* @author Default
* @version 0.1
*/
package org.papervision3d.core.effects {
import flash.filters.BitmapFilter;
import org.papervision3d.view.layer.BitmapEffectLayer;
public class AbstractEffect implements IEffect{
function AbstractEffect(){}
public function attachEffect(layer:BitmapEffectLayer):void{}
public function preRender():void{}
public function postRender():void{}
public function getEffect():BitmapFilter{
return null;
}
}
}
|
package com.tudou.player.skin.themes
{
import __AS3__.vec.Vector;
import flash.display.StageDisplayState;
import flash.events.Event;
import flash.geom.Rectangle;
import com.tudou.player.skin.assets.AssetIDs;
import com.tudou.layout.LayoutSprite;
/**
* TopArea
*/
public class TopArea extends ControlArea
{
public function TopArea(widgets:Vector.<String>)
{
super(widgets);
_id = "TopArea";
}
override protected function setMouseHoverRectangle():void
{
if (this.parent)
{
r_x = 0
r_y = 0
r_w = this.width;
r_h = this.height + Math.max(this.parent.height * .2, 100);
}
rectangle = new Rectangle(r_x, r_y, r_w, r_h);
}
override protected function processEnabledChange():void
{
super.processEnabledChange();
this.visible = enabled
? (_global.status.displayState != StageDisplayState.NORMAL)? true:this.css.visible
//? this.css.visible
: false;
}
//OVER
}
} |
/**
* BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
*
* Copyright (c) 2014 BigBlueButton Inc. and by respective authors (see below).
*
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
* Foundation; either version 3.0 of the License, or (at your option) any later
* version.
*
* BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
*
*/
package org.bigbluebutton.clientcheck.view.mainview
{
import robotlegs.bender.extensions.mediatorMap.api.IMediatorMap;
import robotlegs.bender.framework.api.IConfig;
import robotlegs.bender.framework.api.IInjector;
public class MailButtonConfig implements IConfig
{
[Inject]
public var injector:IInjector;
[Inject]
public var mediatorMap:IMediatorMap;
public function configure():void
{
configureMediators();
}
private function configureMediators():void
{
mediatorMap.map(IMailButton).toMediator(MailButtonMediator);
}
}
}
|
package kabam.rotmg.friends.model {
public class FriendConstant {
public static const FRIEMD_MAX_CAP:int = 100;
public static const FRIEND_LIST:String = "/getList";
public static const INVITE_LIST:String = "/getRequests";
public static const INVITE:String = "/requestFriend";
public static const ACCEPT:String = "/acceptRequest";
public static const REJECT:String = "/rejectRequest";
public static const REMOVE:String = "/removeFriend";
public static const BLOCK:String = "/blockRequest";
public static const SEARCH:String = "searchFriend";
public static const FRIEND_TAB:String = "Friends";
public static const INVITE_TAB:String = "Invitations";
public static const WHISPER:String = "Whisper";
public static const JUMP:String = "JumpServer";
public static function getURL(_arg1:String):String {
return (("/friends" + _arg1));
}
}
}
|
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package mx.containers
{
COMPILE::SWF
{
import flash.display.DisplayObject;
import flash.events.Event;
}
//import mx.automation.IAutomationObject;
import mx.core.Container;
import mx.core.ContainerCreationPolicy;
import mx.core.EdgeMetrics;
import mx.core.IInvalidating;
import mx.core.INavigatorContent;
//import mx.core.ISelectableList;
import mx.core.IUIComponent;
import mx.core.ScrollPolicy;
import mx.core.UIComponent;
import mx.core.mx_internal;
import mx.effects.Effect;
//import mx.effects.EffectManager;
//import mx.events.ChildExistenceChangedEvent;
import mx.events.CollectionEvent;
import mx.events.CollectionEventKind;
import mx.events.EffectEvent;
import mx.events.FlexEvent;
import mx.events.IndexChangedEvent;
import mx.events.PropertyChangeEvent;
//import mx.geom.RoundedRectangle;
//import mx.managers.HistoryManager;
//import mx.managers.IHistoryManagerClient;
use namespace mx_internal;
//--------------------------------------
// Events
//--------------------------------------
/**
* Dispatched when the selected child container changes.
*
* @eventType mx.events.IndexChangedEvent.CHANGE
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
[Event(name="change", type="mx.events.IndexChangedEvent")]
//--------------------------------------
// Styles
//--------------------------------------
//include "../styles/metadata/GapStyles.as"
/**
* Number of pixels between the container's bottom border and its content area.
* The default value is 0.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
//[Style(name="paddingBottom", type="Number", format="Length", inherit="no")]
/**
* Number of pixels between the container's top border and its content area.
* The default value is 0.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
//[Style(name="paddingTop", type="Number", format="Length", inherit="no")]
//--------------------------------------
// Excluded APIs
//--------------------------------------
[Exclude(name="autoLayout", kind="property")]
[Exclude(name="defaultButton", kind="property")]
[Exclude(name="horizontalLineScrollSize", kind="property")]
[Exclude(name="horizontalPageScrollSize", kind="property")]
[Exclude(name="horizontalScrollBar", kind="property")]
[Exclude(name="horizontalScrollPolicy", kind="property")]
[Exclude(name="horizontalScrollPosition", kind="property")]
[Exclude(name="maxHorizontalScrollPosition", kind="property")]
[Exclude(name="maxVerticalScrollPosition", kind="property")]
[Exclude(name="verticalLineScrollSize", kind="property")]
[Exclude(name="verticalPageScrollSize", kind="property")]
[Exclude(name="verticalScrollBar", kind="property")]
[Exclude(name="verticalScrollPolicy", kind="property")]
[Exclude(name="verticalScrollPosition", kind="property")]
[Exclude(name="focusIn", kind="event")]
[Exclude(name="focusOut", kind="event")]
[Exclude(name="scroll", kind="event")]
[Exclude(name="focusBlendMode", kind="style")]
[Exclude(name="focusSkin", kind="style")]
[Exclude(name="focusThickness", kind="style")]
[Exclude(name="horizontalScrollBarStyleName", kind="style")]
[Exclude(name="verticalScrollBarStyleName", kind="style")]
[Exclude(name="focusInEffect", kind="effect")]
[Exclude(name="focusOutEffect", kind="effect")]
//--------------------------------------
// Other metadata
//--------------------------------------
//[IconFile("ViewStack.png")]
/**
* An MX ViewStack navigator container consists of a collection of child
* containers stacked on top of each other, where only one child
* at a time is visible.
* When a different child container is selected, it seems to replace
* the old one because it appears in the same location.
* However, the old child container still exists; it is just invisible.
*
* <p><b>Note:</b> The direct children of an MX navigator container must be
* MX containers, either MX layout or MX navigator containers,
* or the Spark NavigatorContent container.
* You cannot directly nest a control or a Spark container
* other than the Spark NavigatorContent container within a navigator;
* they must be children of an child MX container.</p>
*
* <p>A ViewStack container does not provide a user interface
* for selecting which child container is currently visible.
* Typically, you set its <code>selectedIndex</code> or
* <code>selectedChild</code> property in ActionScript in response to
* some user action.
* Alternately, you can associate an MX LinkBar, TabBar, ButtonBar, or ToggleButtonBar
* control or a Spark ButtonBar control with a ViewStack container to provide a navigation interface.
* To do so, specify the ViewStack container as the value of the
* <code>dataProvider</code> property of the LinkBar, TabBar or
* ToggleButtonBar container.</p>
*
* <p>You might decide to use a more complex navigator container than the
* ViewStack container, such as a TabNavigator container or Accordion
* container. In addition to having a collection of child containers,
* these containers provide their own user interface controls
* for navigating between their children.</p>
*
* <p>When you change the currently visible child container,
* you can use the <code>hideEffect</code> property of the container being
* hidden and the <code>showEffect</code> property of the newly visible child
* container to apply an effect to the child containers.
* The ViewStack container waits for the <code>hideEffect</code> of the child
* container being hidden to complete before it reveals the new child
* container.
* You can interrupt a currently playing effect if you change the
* <code>selectedIndex</code> property of the ViewStack container
* while an effect is playing.</p>
*
* <p>The ViewStack container has the following default sizing characteristics:</p>
* <table class="innertable">
* <tr>
* <th>Characteristic</th>
* <th>Description</th>
* </tr>
* <tr>
* <td>Default size</td>
* <td>The width and height of the initial active child.</td>
* </tr>
* <tr>
* <td>Container resizing rules</td>
* <td>By default, ViewStack containers are sized only once to fit the size of the
* first child container. They do not resize when you navigate to other child
* containers. To force ViewStack containers to resize when you navigate
* to a different child container, set the resizeToContent property to true.</td>
* </tr>
* <tr>
* <td>Child sizing rules</td>
* <td>Children are sized to their default size. If the child is larger than the ViewStack
* container, it is clipped. If the child is smaller than the ViewStack container,
* it is aligned to the upper-left corner of the ViewStack container.</td>
* </tr>
* <tr>
* <td>Default padding</td>
* <td>0 pixels for top, bottom, left, and right values.</td>
* </tr>
* </table>
*
* @mxml
*
* <p>The <code><mx:ViewStack></code> tag inherits the
* tag attributes of its superclass, with the exception of scrolling-related
* attributes, and adds the following tag attributes:</p>
*
* <pre>
* <mx:ViewStack
* <b>Properties</b>
* historyManagementEnabled="false|true"
* resizeToContent="false|true"
* selectedIndex="0"
*
* <b>Styles</b>
* horizontalGap="8"
* paddingBottom="0"
* paddingTop="0"
* verticalGap="6"
*
* <b>Events</b>
* change="<i>No default</i>"
* >
* ...
* <i>child tags</i>
* ...
* </mx:ViewStack>
* </pre>
*
* @includeExample examples/ViewStackExample.mxml
*
* @see mx.controls.LinkBar
* @see mx.controls.ButtonBar
* @see mx.controls.TabBar
* @see mx.controls.ToggleButtonBar
* @see spark.components.ButtonBar
* @see mx.managers.HistoryManager
* @see mx.managers.LayoutManager
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public class ViewStack extends Container // implements IHistoryManagerClient, ISelectableList
{
// include "../core/Version.as";
//--------------------------------------------------------------------------
//
// Constructor
//
//--------------------------------------------------------------------------
/**
* Constructor.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public function ViewStack()
{
super();
}
//--------------------------------------------------------------------------
//
// Variables
//
//--------------------------------------------------------------------------
/**
* @private
*/
private var needToInstantiateSelectedChild:Boolean = false;
/**
* @private
* This flag gets set when selectedIndex is set.
* Later, when measure()
* is called, it causes the HistoryManager to save the state.
*/
private var bSaveState:Boolean = false;
/**
* @private
* This flag gets set by loadState().
* It prevents the newly restored state from being saved.
*/
private var bInLoadState:Boolean = false;
/**
* @private
* True until commitProperties has been called at least once.
*/
private var firstTime:Boolean = true;
/**
* @private
* We'll measure ourselves once and then store the results here
* for the lifetime of the ViewStack
*/
mx_internal var vsMinWidth:Number;
mx_internal var vsMinHeight:Number;
mx_internal var vsPreferredWidth:Number;
mx_internal var vsPreferredHeight:Number;
/**
* @private
* Remember which child has an overlay mask, if any.
* Used for the dissolve effect.
*/
private var effectOverlayChild:UIComponent;
/**
* @private
* Keep track of the overlay's targetArea
* Used for the dissolve effect.
*/
//private var effectOverlayTargetArea:RoundedRectangle;
/**
* @private
* Store the last selectedIndex
*/
private var lastIndex:int = -1;
/**
* @private
* Whether a change event has to be dispatched in commitProperties()
*/
private var dispatchChangeEventPending:Boolean = false;
/**
* @private
* If we're in the middle of adding a child
*/
private var addingChildren:Boolean = false;
//--------------------------------------------------------------------------
//
// Overridden properties
//
//--------------------------------------------------------------------------
//----------------------------------
// autoLayout
//----------------------------------
/**
* @private
* autoLayout is always true for ViewStack.
override public function get autoLayout():Boolean
{
return true;
}
*/
/**
* @private
* autoLayout is always true for ViewStack
* and can't be changed by this setter.
*
* We can probably find a way to make autoLayout work with Accordion
* and ViewStack, but right now there are problems if deferred
* instantiation runs at the same time as an effect. (Bug 79174)
override public function set autoLayout(value:Boolean):void
{
}
*/
//----------------------------------
// horizontalScrollPolicy
//----------------------------------
[Inspectable(environment="none")]
/**
* @private
* horizontalScrollPolicy is always OFF for ViewStack.
override public function get horizontalScrollPolicy():String
{
return ScrollPolicy.OFF;
}
*/
/**
* @private
* horizontalScrollPolicy is always OFF for ViewStack
* and can't be changed by this setter.
override public function set horizontalScrollPolicy(value:String):void
{
}
*/
//----------------------------------
// verticalScrollPolicy
//----------------------------------
[Inspectable(environment="none")]
/**
* @private
* verticalScrollPolicy is always OFF for ViewStack.
override public function get verticalScrollPolicy():String
{
return ScrollPolicy.OFF;
}
*/
/**
* @private
* verticalScrollPolicy is always OFF for ViewStack
* and can't be changed by this setter.
override public function set verticalScrollPolicy(value:String):void
{
}
*/
//--------------------------------------------------------------------------
//
// Properties
//
//--------------------------------------------------------------------------
//----------------------------------
// contentHeight
//----------------------------------
/**
* The height of the area, in pixels, in which content is displayed.
* You can override this getter if your content
* does not occupy the entire area of the ViewStack container.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
protected function get contentHeight():Number
{
var vm:EdgeMetrics = viewMetricsAndPadding;
return unscaledHeight - vm.top - vm.bottom;
}
//----------------------------------
// contentWidth
//----------------------------------
/**
* The width of the area, in pixels, in which content is displayed.
* You can override this getter if your content
* does not occupy the entire area of the ViewStack container.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
protected function get contentWidth():Number
{
var vm:EdgeMetrics = viewMetricsAndPadding;
return unscaledWidth - vm.left - vm.right;
}
//----------------------------------
// contentX
//----------------------------------
/**
* The x coordinate of the area of the ViewStack container
* in which content is displayed, in pixels.
* The default value is equal to the value of the
* <code>paddingLeft</code> style property,
* which has a default value of 0.
*
* Override the <code>get()</code> method if you do not want
* your content to start layout at x = 0.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
protected function get contentX():Number
{
return getStyle("paddingLeft");
}
//----------------------------------
// contentY
//----------------------------------
/**
* The y coordinate of the area of the ViewStack container
* in which content is displayed, in pixels.
* The default value is equal to the value of the
* <code>paddingTop</code> style property,
* which has a default value of 0.
*
* Override the <code>get()</code> method if you do not want
* your content to start layout at y = 0.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
protected function get contentY():Number
{
return getStyle("paddingTop");
}
//----------------------------------
// historyManagementEnabled
//----------------------------------
/**
* @private
* Storage for the historyManagementEnabled property.
*/
//mx_internal var _historyManagementEnabled:Boolean = false;
/**
* @private
*/
//private var historyManagementEnabledChanged:Boolean = false;
[Inspectable(defaultValue="true")]
/**
* If <code>true</code>, enables history management
* within this ViewStack container.
* As the user navigates from one child to another,
* the browser remembers which children were visited.
* The user can then click the browser's Back and Forward buttons
* to move through this navigation history.
*
* @default false
*
* @see mx.managers.HistoryManager
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
public function get historyManagementEnabled():Boolean
{
return _historyManagementEnabled;
}
*/
/**
* @private
public function set historyManagementEnabled(value:Boolean):void
{
if (value != _historyManagementEnabled)
{
_historyManagementEnabled = value;
historyManagementEnabledChanged = true;
invalidateProperties();
}
}
*/
//----------------------------------
// resizeToContent
//----------------------------------
/**
* @private
* Storage for the resizeToContent property.
*/
private var _resizeToContent:Boolean = false;
/**
* If <code>true</code>, the ViewStack container automatically
* resizes to the size of its current child.
*
* @default false
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public function get resizeToContent():Boolean
{
return _resizeToContent;
}
/**
* @private
*/
public function set resizeToContent(value:Boolean):void
{
if (value != _resizeToContent)
{
_resizeToContent = value;
if (value)
invalidateSize();
}
}
//----------------------------------
// selectedChild
//----------------------------------
[Bindable("valueCommit")]
[Bindable("creationComplete")]
/**
* A reference to the currently visible child container.
* The default is a reference to the first child.
* If there are no children, this property is <code>null</code>.
*
* <p><strong>Note:</strong> You can only set this property in an
* ActionScript statement, not in MXML.</p>
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public function get selectedChild():INavigatorContent
{
if (selectedIndex == -1)
return null;
return INavigatorContent(getChildAt(selectedIndex));
}
/**
* @private
*/
public function set selectedChild(
value:INavigatorContent):void
{
var newIndex:int = getChildIndex(IUIComponent(value));
if (newIndex >= 0 && newIndex < numChildren)
selectedIndex = newIndex;
}
//----------------------------------
// selectedIndex
//----------------------------------
/**
* @private
* Storage for the selectedIndex property.
*/
private var _selectedIndex:int = -1;
/**
* @private
*/
private var proposedSelectedIndex:int = -1;
/**
* @private
*/
private var initialSelectedIndex:int = -1;
[Bindable("change")]
[Bindable("valueCommit")]
[Bindable("creationComplete")]
[Inspectable(category="General")]
/**
* The zero-based index of the currently visible child container.
* Child indexes are in the range 0, 1, 2, ..., n - 1,
* where <i>n</i> is the number of children.
* The default value is 0, corresponding to the first child.
* If there are no children, the value of this property is <code>-1</code>.
*
* <p><strong>Note:</strong> When you add a new child to a ViewStack
* container, the <code>selectedIndex</code> property is automatically
* adjusted, if necessary, so that the selected child remains selected.</p>
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public function get selectedIndex():int
{
return proposedSelectedIndex == -1 ?
_selectedIndex :
proposedSelectedIndex;
}
/**
* @private
*/
public function set selectedIndex(value:int):void
{
// Bail if the index isn't changing.
if (value == selectedIndex)
return;
// ignore, probably coming from tabbar
if (addingChildren)
return;
// Propose the specified value as the new value for selectedIndex.
// It gets applied later when measure() calls commitSelectedIndex().
// The proposed value can be "out of range", because the children
// may not have been created yet, so the range check is handled
// in commitSelectedIndex(), not here. Other calls to this setter
// can change the proposed index before it is committed. Also,
// childAddHandler() proposes a value of 0 when it creates the first
// child, if no value has yet been proposed.
proposedSelectedIndex = value;
invalidateProperties();
// Set a flag which will cause the HistoryManager to save state
// the next time measure() is called.
// if (historyManagementEnabled && _selectedIndex != -1 && !bInLoadState)
// bSaveState = true;
dispatchEvent(new FlexEvent(FlexEvent.VALUE_COMMIT));
}
//--------------------------------------------------------------------------
//
// Overridden methods: UIComponent
//
//--------------------------------------------------------------------------
/**
* @private
override protected function generateMXMLInstances(document:Object, data:Array, recursive:Boolean = true):void
{
// in theory, creationpolicy gets applied later
super.generateMXMLInstances(document, data, false);
}
*/
/**
* @private
*/
override protected function commitProperties():void
{
super.commitProperties();
/*
if (historyManagementEnabledChanged)
{
if (historyManagementEnabled)
HistoryManager.register(this);
else
HistoryManager.unregister(this);
historyManagementEnabledChanged = false;
}
*/
if (proposedSelectedIndex != -1)
{
commitSelectedIndex(proposedSelectedIndex);
proposedSelectedIndex = -1;
}
if (needToInstantiateSelectedChild)
{
instantiateSelectedChild();
needToInstantiateSelectedChild = false;
}
// Dispatch the change event only after the child has been
// instantiated.
if (dispatchChangeEventPending)
{
dispatchChangeEvent(lastIndex, selectedIndex);
dispatchChangeEventPending = false;
}
if (firstTime)
{
firstTime = false;
// Add "addedToStage" and "removedFromStage" listeners so we can
// register/un-register from the history manager when this component
// is added or removed from the display list.
COMPILE::SWF
{
addEventListener(Event.ADDED_TO_STAGE, addedToStageHandler, false, 0, true);
addEventListener(Event.REMOVED_FROM_STAGE, removedFromStageHandler, false, 0, true);
}
}
}
/**
* Calculates the default sizes and minimum and maximum values of the
* ViewStack container.
* For more information about the <code>measure()</code> method,
* see the <code>UIComponent.measure()</code> method.
*
* <p>The default size of a ViewStack container is the default size
* of its currently selected child, plus the padding and borders.
* If the ViewStack container has no children, its default size
* is just large enough for its padding and borders.</p>
*
* <p>The minimum size of a ViewStack container is the minimum size
* of its currently selected child, plus the padding and borders.
* If the ViewStack container has no children, its minimum size
* is just large enough for its padding and borders.</p>
*
* <p>This method does not change the maximum size of a ViewStack
* container - it remains unbounded.</p>
*
* @see mx.core.UIComponent#measure()
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
override protected function measure():void
{
super.measure();
// A ViewStack measures itself based only on its selectedChild.
// The minimum, maximum, and preferred sizes are those of the
// selected child, plus the borders and margins.
var minWidth:Number = 0;
var minHeight:Number = 0;
var preferredWidth:Number = 0;
var preferredHeight:Number = 0;
// Only measure once. Thereafter, we'll just use cached values.
//
// We need to copy the cached values into the measured fields
// again to handle the case where scaleX or scaleY is not 1.0.
// When the ViewStack is zoomed, code in UIComponent.measureSizes
// scales the measuredWidth/Height values every time that
// measureSizes is called. (bug 100749)
if (vsPreferredWidth && !_resizeToContent)
{
measuredMinWidth = vsMinWidth;
measuredMinHeight = vsMinHeight;
measuredWidth = vsPreferredWidth;
measuredHeight = vsPreferredHeight;
return;
}
if (numChildren > 0 && selectedIndex != -1)
{
var child:UIComponent =
UIComponent(getChildAt(selectedIndex));
minWidth = child.minWidth;
preferredWidth = child.getExplicitOrMeasuredWidth();
minHeight = child.minHeight;
preferredHeight = child.getExplicitOrMeasuredHeight();
}
var vm:EdgeMetrics = viewMetricsAndPadding;
var wPadding:Number = vm.left + vm.right;
minWidth += wPadding;
preferredWidth += wPadding;
var hPadding:Number = vm.top + vm.bottom;
minHeight += hPadding;
preferredHeight += hPadding;
measuredMinWidth = minWidth;
measuredMinHeight = minHeight;
measuredWidth = preferredWidth;
measuredHeight = preferredHeight;
// If we're called before instantiateSelectedChild, then bail.
// We'll be called again later (instantiateSelectedChild calls
// invalidateSize), and we don't want to load values into the
// cache until we're fully initialized. (bug 102639)
// This check was moved from the beginning of this function to
// here to fix bug 103665.
//if (selectedChild && INavigatorContent(selectedChild).deferredContentCreated == false)
// return;
// Don't remember sizes if we don't have any children
if (numChildren == 0)
return;
vsMinWidth = minWidth;
vsMinHeight = minHeight;
vsPreferredWidth = preferredWidth;
vsPreferredHeight = preferredHeight;
}
/**
* Responds to size changes by setting the positions and sizes
* of this container's children.
* For more information about the <code>updateDisplayList()</code> method,
* see the <code>UIComponent.updateDisplayList()</code> method.
*
* <p>Only one of its children is visible at a time, therefore,
* a ViewStack container positions and sizes only that child.</p>
*
* <p>The selected child is positioned in the ViewStack container's
* upper-left corner, and allows for the ViewStack container's
* padding and borders. </p>
*
* <p>If the selected child has a percentage <code>width</code> or
* <code>height</code> value, it is resized in that direction
* to fill the specified percentage of the ViewStack container's
* content area (i.e., the region inside its padding).</p>
*
* @param unscaledWidth Specifies the width of the component, in pixels,
* in the component's coordinates, regardless of the value of the
* <code>scaleX</code> property of the component.
*
* @param unscaledHeight Specifies the height of the component, in pixels,
* in the component's coordinates, regardless of the value of the
* <code>scaleY</code> property of the component.
*
* @see mx.core.UIComponent#updateDisplayList()
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
override protected function updateDisplayList(unscaledWidth:Number,
unscaledHeight:Number):void
{
super.updateDisplayList(unscaledWidth, unscaledHeight);
var nChildren:int = numChildren;
var w:Number = contentWidth;
var h:Number = contentHeight;
var left:Number = contentX;
var top:Number = contentY;
// Stretch the selectedIndex to fill our size
if (selectedIndex != -1)
{
var child:UIComponent =
UIComponent(getChildAt(selectedIndex));
var newWidth:Number = w;
var newHeight:Number = h;
if (!isNaN(child.percentWidth))
{
if (newWidth > child.maxWidth)
newWidth = child.maxWidth;
}
else
{
if (newWidth > child.explicitWidth)
newWidth = child.explicitWidth;
}
if (!isNaN(child.percentHeight))
{
if (newHeight > child.maxHeight)
newHeight = child.maxHeight;
}
else
{
if (newHeight > child.explicitHeight)
newHeight = child.explicitHeight;
}
// Don't send events for the size/move. The set visible below
if (child.width != newWidth || child.height != newHeight)
child.setActualSize(newWidth, newHeight);
if (child.x != left || child.y != top)
child.move(left, top);
// Now that the child is properly sized and positioned it
// can be shown.
child.visible = true;
}
}
/**
* @private
* When asked to create an overlay mask, create it on the selected child
* instead. That way, the chrome around the edge of the ViewStack
* (e.g. the tabs in a TabNavigator) is not occluded by the overlay mask
* (Bug 99029)
override mx_internal function addOverlay(color:uint,
targetArea:RoundedRectangle = null):void
{
// As we're switching the currently-selected child, don't
// allow two children to both have an overlay at the same time.
// This is done because it makes accounting a headache. If there's
// a legitimate reason why two children both need overlays, this
// restriction could be relaxed.
if (effectOverlayChild)
removeOverlay();
// Remember which child has an overlay, so that we don't inadvertently
// create an overlay on one child and later try to remove the overlay
// of another child. (bug 100731)
effectOverlayChild = (selectedChild as UIComponent);
if (!effectOverlayChild)
return;
effectOverlayColor = color;
effectOverlayTargetArea = targetArea;
if (selectedChild &&
selectedChild.deferredContentCreated == false)
// No children have been created
{
// Wait for the childrenCreated event before creating the overlay
selectedChild.addEventListener(FlexEvent.INITIALIZE,
initializeHandler);
}
else // Children already exist
{
initializeHandler(null);
}
}
*/
/**
* @private
override mx_internal function removeOverlay():void
{
if (effectOverlayChild)
{
UIComponent(effectOverlayChild).removeOverlay();
effectOverlayChild = null;
}
}
*/
//--------------------------------------------------------------------------
//
// Overridden methods: Container
//
//--------------------------------------------------------------------------
/**
* @private
override mx_internal function setActualCreationPolicies(policy:String):void
{
super.setActualCreationPolicies(policy);
// If the creation policy is switched to ContainerCreationPolicy.ALL
// and our createComponentsFromDescriptors() method has already been
// called (we've created our children but not all our grandchildren),
// then create all our grandchildren now. (Bug 99160)
if (policy == ContainerCreationPolicy.ALL && numChildren > 0)
{
for (var i:int = 0; i < numChildren; i++)
{
var containerChild:INavigatorContent =
getChildAt(i) as INavigatorContent;
if (containerChild && containerChild.deferredContentCreated == false)
containerChild.createDeferredContent();
}
}
}
*/
//--------------------------------------------------------------------------
//
// Methods: IHistoryManagerClient
//
//--------------------------------------------------------------------------
/**
* @copy mx.managers.IHistoryManagerClient#saveState()
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public function saveState():Object
{
var index:int = _selectedIndex == -1 ? 0 : _selectedIndex;
return { selectedIndex: index };
}
/**
* @copy mx.managers.IHistoryManagerClient#loadState()
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public function loadState(state:Object):void
{
var newIndex:int = state ? int(state.selectedIndex) : 0;
if (newIndex == -1)
newIndex = initialSelectedIndex;
if (newIndex == -1)
newIndex = 0;
if (newIndex != _selectedIndex)
{
// When loading a new state, we don't want to
// save our current state in the history stack.
bInLoadState = true;
selectedIndex = newIndex;
bInLoadState = false;
}
}
//--------------------------------------------------------------------------
//
// Methods
//
//--------------------------------------------------------------------------
/**
* Commits the selected index. This function is called during the commit
* properties phase when the <code>selectedIndex</code> or
* <code>selectedItem</code> property changes.
*
* @param newIndex The selected index.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
protected function commitSelectedIndex(newIndex:int):void
{
// The selectedIndex must be -1 if there are no children,
// even if a selectedIndex has been proposed.
if (numChildren == 0)
{
_selectedIndex = -1;
return;
}
// If there are children, ensure that the new index is in bounds.
if (newIndex < 0)
newIndex = 0;
else if (newIndex > numChildren - 1)
newIndex = numChildren - 1;
// Stop all currently playing effects
/*
if (lastIndex != -1 && lastIndex < numChildren)
UIComponent(getChildAt(lastIndex)).endEffectsStarted();
if (_selectedIndex != -1)
(selectedChild as UIComponent).endEffectsStarted();
*/
// Remember the old index.
lastIndex = _selectedIndex;
// Bail if the index isn't changing.
if (newIndex == lastIndex)
return;
// Commit the new index.
_selectedIndex = newIndex;
// Remember our initial selected index so we can
// restore to our default state when the history
// manager requests it.
if (initialSelectedIndex == -1)
initialSelectedIndex = _selectedIndex;
// Only dispatch a change event if we're going to and from
// a valid index
if (lastIndex != -1 && newIndex != -1)
dispatchChangeEventPending = true;
var listenForEffectEnd:Boolean = false;
if (lastIndex != -1 && lastIndex < numChildren)
{
var currentChild:UIComponent = UIComponent(getChildAt(lastIndex));
currentChild.setVisible(false); // Hide the current child
/*
if (currentChild.getStyle("hideEffect"))
{
var hideEffect:Effect = EffectManager.lastEffectCreated; // This should be the hideEffect
if (hideEffect)
{
hideEffect.addEventListener(EffectEvent.EFFECT_END, hideEffectEndHandler);
listenForEffectEnd = true;
}
}
*/
}
// If we don't have to wait for a hide effect to finish
if (!listenForEffectEnd)
hideEffectEndHandler(null);
}
private function hideEffectEndHandler(event:EffectEvent):void
{
if (event)
event.currentTarget.removeEventListener(EffectEvent.EFFECT_END, hideEffectEndHandler);
// Give any change handlers a chance to act before we
// instantiate our pane (which eats up all the processing cycles)
needToInstantiateSelectedChild = true;
invalidateProperties();
/*
if (bSaveState)
{
HistoryManager.save();
bSaveState = false;
}
*/
}
/**
* @private
*/
private function instantiateSelectedChild():void
{
if (!selectedChild)
return;
/*
// Performance optimization: don't call createComponents if we know
// that createComponents has already been called.
if (selectedChild && selectedChild.deferredContentCreated == false)
{
if (initialized) // Only listen if the ViewStack has already been initialized.
selectedChild.addEventListener(FlexEvent.CREATION_COMPLETE,childCreationCompleteHandler);
selectedChild.createDeferredContent();
}
*/
// Do the initial measurement/layout pass for the
// newly-instantiated descendants.
if (selectedChild is IInvalidating)
IInvalidating(selectedChild).invalidateSize();
invalidateSize();
invalidateDisplayList();
}
/**
* @private
*/
private function dispatchChangeEvent(oldIndex:int, newIndex:int):void
{
var event:IndexChangedEvent =
new IndexChangedEvent(IndexChangedEvent.CHANGE);
event.oldIndex = oldIndex;
event.newIndex = newIndex;
event.relatedObject = getChildAt(newIndex);
dispatchEvent(event);
}
//--------------------------------------------------------------------------
//
// Event handlers
//
//--------------------------------------------------------------------------
/**
* @private
* Handles "addedToStage" event
*/
COMPILE::SWF
private function addedToStageHandler(event:Event):void
{
/*
if (historyManagementEnabled)
HistoryManager.register(this);
*/
}
/**
* @private
* Handles "removedFromStage" event
*/
COMPILE::SWF
private function removedFromStageHandler(event:Event):void
{
/*
HistoryManager.unregister(this);
*/
}
/**
* @private
* Called when we are running a Dissolve effect
* and the initialize event has been dispatched
* or the children already exist
*/
private function initializeHandler(event:FlexEvent):void
{
effectOverlayChild.removeEventListener(FlexEvent.INITIALIZE,
initializeHandler);
// UIComponent(effectOverlayChild).addOverlay(effectOverlayColor, effectOverlayTargetArea);
}
/**
* @private
* Handles when the new selectedChild has finished being created.
*/
private function childCreationCompleteHandler(event:FlexEvent):void
{
event.target.removeEventListener(FlexEvent.CREATION_COMPLETE,childCreationCompleteHandler);
event.target.dispatchEvent(new FlexEvent(FlexEvent.SHOW));
}
/**
* @private
*/
private function childAddHandler(child:IUIComponent):void
{
var index:int = getChildIndex(child);
if (child is IUIComponent)
{
var uiChild:IUIComponent = IUIComponent(child);
// ViewStack creates all of its children initially invisible.
// They are made as they become the selected child.
uiChild.visible = false;
}
if (child is INavigatorContent)
{
child.addEventListener("labelChanged", navigatorChildChangedHandler);
child.addEventListener("iconChanged", navigatorChildChangedHandler);
}
// If we just created the first child and no selected index has
// been proposed, then propose this child to be selected.
if (numChildren == 1 && proposedSelectedIndex == -1)
{
_selectedIndex = 0;
dispatchEvent(new FlexEvent(FlexEvent.VALUE_COMMIT));
needToInstantiateSelectedChild = true;
invalidateProperties();
}
else if (index <= selectedIndex && numChildren > 1 && proposedSelectedIndex == -1)
{
_selectedIndex++;
dispatchEvent(new FlexEvent(FlexEvent.VALUE_COMMIT));
}
/*
if (child is IAutomationObject)
IAutomationObject(child).showInAutomationHierarchy = true;
*/
}
/**
* @private
* When a child is removed, adjust the selectedIndex such that the current
* child remains selected; or if the current child was removed, then the
* next (or previous) child gets automatically selected; when the last
* remaining child is removed, the selectedIndex is set to -1.
*/
private function childRemoveHandler(child:IUIComponent, index:int):void
{
if (child is INavigatorContent)
{
child.removeEventListener("labelChanged", navigatorChildChangedHandler);
child.removeEventListener("iconChanged", navigatorChildChangedHandler);
}
// Handle the simple case.
if (index > selectedIndex)
return;
var currentSelectedIndex:int = selectedIndex;
// This matches one of the two conditions:
// 1. a view before the current was deleted, or
// 2. the current view was deleted and it was also
// at the end of the stack.
// In both cases, we need to decrement selectedIndex.
if (index < currentSelectedIndex ||
currentSelectedIndex == numChildren)
{
// If the selectedIndex was already 0, it should go to -1.
// -1 is a special value; in order to avoid runtime errors
// in various methods, we need to skip the range checking in
// commitSelectedIndex() and set _selectedIndex explicitly here.
if (currentSelectedIndex == 0)
{
_selectedIndex = -1;
dispatchEvent(new FlexEvent(FlexEvent.VALUE_COMMIT));
}
else
{
_selectedIndex--;
dispatchEvent(new FlexEvent(FlexEvent.VALUE_COMMIT));
}
}
else if (index == currentSelectedIndex)
{
// If we're deleting the currentSelectedIndex and there is another
// child after it, it will become the new selected child so we
// need to make sure it is instantiated.
needToInstantiateSelectedChild = true;
invalidateProperties();
}
}
/**
* @private
*/
override public function addChildAt(item:IUIComponent, index:int):IUIComponent
{
addingChildren = true;
var obj:IUIComponent = super.addChildAt(item, index);
internalDispatchEvent(CollectionEventKind.ADD, obj, index);
childAddHandler(item);
addingChildren = false;
return obj;
}
/**
* @private
*/
override public function removeChild(item:IUIComponent):IUIComponent
{
var index:int = getChildIndex(item);
var obj:IUIComponent = super.removeChild(item);
internalDispatchEvent(CollectionEventKind.REMOVE, obj, index);
childRemoveHandler(item, index);
return obj;
}
/**
* @private
override public function removeAllChildren():void
{
super.removeAllChildren();
internalDispatchEvent(CollectionEventKind.RESET);
}
*/
//--------------------------------------------------------------------------
//
// IList Implementation
// Viewstack implements IList so it can be plugged into a Spark ButtonBar
//
//--------------------------------------------------------------------------
/**
* @private
* The IList implementation dispatches change events when
* label or icon properties change.
*/
private function navigatorChildChangedHandler(event:Event):void
{
var pe:PropertyChangeEvent = new PropertyChangeEvent(PropertyChangeEvent.PROPERTY_CHANGE);
pe.source = event.target;
pe.property = (event.type == "labelChanged") ? "label" : "icon";
internalDispatchEvent(CollectionEventKind.UPDATE, pe, getChildIndex(event.target as IUIComponent));
}
/**
* Dispatches a collection event with the specified information.
*
* @param kind String indicates what the kind property of the event should be
* @param item Object reference to the item that was added or removed
* @param location int indicating where in the source the item was added.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
private function internalDispatchEvent(kind:String, item:Object = null, location:int = -1):void
{
if (hasEventListener(CollectionEvent.COLLECTION_CHANGE))
{
var event:CollectionEvent =
new CollectionEvent(CollectionEvent.COLLECTION_CHANGE);
event.kind = kind;
event.items.push(item);
event.location = location;
dispatchEvent(event);
}
// now dispatch a complementary PropertyChangeEvent
if (hasEventListener(PropertyChangeEvent.PROPERTY_CHANGE) &&
(kind == CollectionEventKind.ADD || kind == CollectionEventKind.REMOVE))
{
var objEvent:PropertyChangeEvent =
new PropertyChangeEvent(PropertyChangeEvent.PROPERTY_CHANGE);
objEvent.property = location;
if (kind == CollectionEventKind.ADD)
objEvent.newValue = item;
else
objEvent.oldValue = item;
dispatchEvent(objEvent);
}
}
/**
* @private
* IList implementation of length returns numChildren
*/
public function get length():int
{
return numChildren;
}
/**
* @private
* IList implementation of addItem calls addChild
*/
public function addItem(item:Object):void
{
addChild(item as IUIComponent);
}
/**
* @private
* IList implementation of addItemAt calls addChildAt
*/
public function addItemAt(item:Object, index:int):void
{
addChildAt(item as IUIComponent, index);
}
/**
* @private
* IList implementation of getItemAt calls getChildAt
*/
public function getItemAt(index:int, prefetch:int = 0):Object
{
return getChildAt(index);
}
/**
* @private
* IList implementation of getItemIndex calls getChildIndex
*/
public function getItemIndex(item:Object):int
{
if (isValidChild(item as ROYALE::DISPLAYOBJECT))
return getChildIndex(item as IUIComponent);
else
return -1;
}
private function isValidChild(child:ROYALE::DISPLAYOBJECT):Boolean {
for (var i:int = 0; i < numChildren; i++)
{
if (getChildAt(i) == child)
return true;
}
return false;
}
/**
* @private
* IList implementation of itemUpdated doesn't do anything
*/
public function itemUpdated(item:Object, property:Object = null,
oldValue:Object = null,
newValue:Object = null):void
{
}
/**
* @private
* IList implementation of removeAll calls removeAllChildren
*/
public function removeAll():void
{
//removeAllChildren();
}
/**
* @private
* IList implementation of removeItem calls removeChild
*/
public function removeItem(item:Object):Boolean
{
var displayObject:IUIComponent = removeChild(item as IUIComponent);
return displayObject != null;
}
/**
* @private
* IList implementation of removeItemAt calls removeChildAt
*/
public function removeItemAt(index:int):Object
{
return removeChildAt(index);
}
/**
* @private
* IList implementation of setItemAt removes the old
* child and adds the new
*/
public function setItemAt(item:Object, index:int):Object
{
var result:Object = removeChildAt(index);
addChildAt(item as IUIComponent,index);
return result;
}
/**
* @private
* IList implementation of toArray returns array of children
*/
public function toArray():Array
{
var result:Array = [];
for (var i:int =0;i<numChildren;i++)
{
result.push(getChildAt(i));
}
return result;
}
}
}
|
// StringUtil.as
// Tuesday, October 8, 2008
// Copyright © 2007, 2008, 8DWorld, Inc. All rights reserved
package com.allonkwok.air.framework.util
{
/**
* 文本工具类,静态类
* */
public class StringUtil
{
/**
* 构造函数,被执行后将抛出错误
* */
public function StringUtil()
{
throw new Error("StringUtil是静态类,不能实例化!");
}
/**
* 裁剪文本前后的空格,包括tab及换行
* @param str 要裁剪的文本
* @param char 被裁剪的字符
* @return String
* */
static public function trim(str:String, char:String = ' '):String
{
var rex:RegExp = /(\t|\n|\r)/gi;
return trimBack(trimFront(str, char), char).replace(rex,'');
}
/**
* 裁剪文本前面的空格
* @param str 要裁剪的文本
* @param char 被裁剪的字符
* @return String
* */
static public function trimFront(str:String, char:String):String
{
char = stringToCharacter(char);
if (str.charAt(0) == char)
{
str = trimFront(str.substring(1), char);
}
return str;
}
/**
* 裁剪文本后面的空格
* @param str 要裁剪的文本
* @param char 被裁剪的字符
* @return String
* */
static public function trimBack(str:String, char:String):String
{
char = stringToCharacter(char);
if (str.charAt(str.length - 1) == char)
{
str = trimBack(str.substring(0, str.length - 1), char);
}
return str;
}
/**
* 清除文本中的所有空格
* @param str 文本
* @return String
* */
static public function removeSpace(str:String):String
{
var ret:String = "";
var len:int = str.length;
for (var i:int = 0; i<len; i++)
{
var char:String = str.charAt(i);
if (char != " ")
{
ret += char;
}
}
return ret;
}
/**
* 将文本转化为字符
* @param str 文本
* @return String
* */
static public function stringToCharacter(str:String):String
{
if (str.length == 1) {
return str;
}
return str.slice(0, 1);
}
static private function getParameter(format:String,para:*):String
{
format = format.toLocaleLowerCase () ;
if(format=="%s")
{
return para.toString() ;
}
else if(format=="%d")
{
return String(int(para)) ;
}
return "" ;
}
static private function formatStrByPara(string:String,paras:Array):String
{
var char:String = "" ;
var formatString:String="" ;
var bFindFlagString:Boolean = false ;
var newString:String = "" ;
var paraIndex:int = 0 ;
for(var i:int=0;i<string.length;i++)
{
char = string.charAt(i) ;
if(!bFindFlagString&&char=="%")
{
formatString = char ;
bFindFlagString = true ;
}
else if(bFindFlagString)
{
formatString+=char ;
newString+=getParameter(formatString,paras[paraIndex]) ;
paraIndex++ ;
bFindFlagString = false ;
}
else
{
newString+=char ;
}
}
return newString ;
}
/**
* 格式化文本
* @param str 文本
* @param para 格式类型,可变参数
* @return String
* */
static public function formatStr(string:String,...para):String
{
var paraAry:Array = para ;
return formatStrByPara(string,paraAry) ;
}
/**
* 格式化文本
* @param str 文本
* @param args 格式类型,可变参数
* @return String
* */
static public function format(str:String, ...args):String{
for(var i:int = 0; i<args.length; i++){
str = str.replace(new RegExp("\\{" + i + "\\}", "gm"), args[i]);
}
return str;
}
/**
* 日期数字转化为1st,2nd,3rd,4th等
* @param n 日期
* @return String
* */
static public function toSequence(n:int):String{
var str:String = "";
switch(n){
case 1:{
str = "st"
break;
}
case 2:{
str = "nd";
break;
}
case 3:{
str = "rd";
break;
}
default:{
str = "th";
break;
}
}
return n+str;
}
/**
* 在数字前添加0,以保持位数一致,入将1变为001
* @param v 要转化的数字
* @param len 位数
* @return String
* */
static public function leadingZero(v:int, len:int):String
{
if (v < 0 || String(v).length >= len)
return String(v);
var tail:String = String(v);
var nZeros:int = len - tail.length;
var head:String = "";
for (var i:int=0; i<nZeros; i++)
head += "0";
return head + tail;
}
/**字符串过滤
* @param s 要过滤的字符串
* @return String
* */
static public function filter(s:String):String
{
var tmp:String = s;
while(tmp.match(/[\.\,\?\!\;:\"\(\)]/))
tmp = tmp.replace(/[\.\,\?\!\;:\"\(\)]/g, " ");
tmp = tmp.replace(/(\S)\s+(\S)/g, "$1 $2");
return StringUtil.trim(tmp);
}
/**
* 词语或句子的编辑距离(两个字串之间,由一个转成另一个所需的最少编辑操作次数)
* @param source 源词的集合
* @param target 目标词的集合
* @return Array
* */
public static function LevenshteinDistance(source:Array, target:Array):Array
{
var states:Array = new Array();
var i:int;
var j:int;
// Step 1
// 1. Return easy cases
// 2. Setup the matrix
var n:int = source.length;
var m:int = target.length;
if (n == 0)
{
return states;
}
if (m == 0)
{
for (i=0; i<n; i++)
states[n] = 1;
return states;
}
for (i=0; i<n; i++)
states[i] = 0;
// Step 2
// Set the initial value on the boundary of the matrix
var matrix:Array = new Array; //int[n+1, m+1];
for (i=0; i<=n; i++)
{
matrix[i] = new Array;
matrix[i][0] = i;
if (i == 0)
{
for (j=0; j<=m; j++)
matrix[i][j] = j;
}
}
// Step 3
for (i = 1; i <= n; i++)
{
var s_i:String = source[i-1];
// Step 4
for (j = 1; j <= m; j++)
{
var t_j:String = target[j-1];
// Step 5
var cost:int;
if (s_i.toUpperCase() == t_j.toUpperCase())
{
cost = 0;
}
else
{
cost = 1;
}
// Step 6
var above:int = matrix[i-1][j];
var left:int = matrix[i][j-1];
var diag:int = matrix[i-1][j-1];
var cell:int = min( above + 1, min(left + 1, diag + cost));
// Step 6A: Cover transposition, in addition to deletion,
// insertion and substitution. This step is taken from:
// Berghel, Hal ; Roach, David : "An Extension of Ukkonen's
// Enhanced Dynamic Programming ASM Algorithm"
// (http://www.acm.org/~hlb/publications/asm/asm.html)
if (i>2 && j>2)
{
var trans:int = matrix[i-2][j-2] + 1;
if ((source[i-2] as String).toUpperCase() != t_j.toUpperCase())
trans++;
if (s_i.toUpperCase() != (target[j-2] as String).toUpperCase())
trans++;
if (cell>trans)
cell=trans;
}
matrix[i][j] = cell;
}
}
// Step 7 back trace
i=n;
j=m;
var SUB:int = 0;
var DEL:int = 1;
var INS:int = 2;
var choice:int = SUB;
while(i>0 && j>0)
{
var mdist:int = min(matrix[i - 1][j], min(matrix[i][j - 1], matrix[i - 1][j - 1]));
if (mdist == matrix[i-1][j-1])
{
choice = SUB;
if (i>=2 && j>=2 && matrix[i-1][j-1] != matrix[i-2][j-2])
{
if (matrix[i-1][j-1] == matrix[i][j-1] && matrix[i-1][j-2] == matrix[i][j-1])
choice = INS;
else if (matrix[i-1][j-1] == matrix[i-1][j] && matrix[i-2][j-1] == matrix[i-1][j])
choice = DEL;
}
}
else if (mdist == matrix[i-1][j])
{
choice = DEL;
if (j>=2 && matrix[i-1][j] == matrix[i][j-1] && matrix[i-1][j-2] == matrix[i][j-1])
choice = INS;
}
else
choice = INS;
switch (choice)
{
case SUB:
if (mdist != matrix[i][j])
{
states[i-1] = 1; // wrong, cost = 1
}
else
{
states[i-1] = 0;
}
i--;
j--;
break;
case DEL:
states[i-1] = 1;
i--;
break;
case INS:
j--;
break;
}
}
if (i!=0)
{
states[i-1] = 1;
i--;
}
return states;
}
/**
* 比较两个数字,取最小那个
* @param a 数字
* @param b 数字
* @return int
* */
public static function min(a:int, b:int):int
{
return (a <= b ? a : b);
}
}
} |
// Decompiled by AS3 Sorcerer 6.08
// www.as3sorcerer.com
//io.decagames.rotmg.pets.windows.wardrobe.PetWardrobeWindow
package io.decagames.rotmg.pets.windows.wardrobe
{
import io.decagames.rotmg.ui.popups.UIPopup;
import flash.display.Sprite;
import io.decagames.rotmg.pets.components.petInfoSlot.PetInfoSlot;
import io.decagames.rotmg.pets.components.selectedPetSkinInfo.SelectedPetSkinInfo;
import io.decagames.rotmg.pets.components.petSkinsCollection.PetSkinsCollection;
import io.decagames.rotmg.ui.texture.TextureParser;
import io.decagames.rotmg.ui.sliceScaling.SliceScalingBitmap;
public class PetWardrobeWindow extends UIPopup
{
private var _closeButton:Sprite;
private var _contentContainer:Sprite;
private var currentPet:PetInfoSlot;
private var selectedPet:SelectedPetSkinInfo;
private var petCollection:PetSkinsCollection;
public function PetWardrobeWindow()
{
super(600, 600);
this._contentContainer = new Sprite();
this._contentContainer.y = 120;
this._contentContainer.x = 10;
addChild(this._contentContainer);
}
public function renderCurrentPet():void
{
this.currentPet = new PetInfoSlot(195, true, true, true, true);
this.currentPet.x = 20;
this.currentPet.y = 130;
addChild(this.currentPet);
var _local_1:SliceScalingBitmap = TextureParser.instance.getSliceScalingBitmap("UI", "popup_content_inset", 195);
_local_1.height = PetInfoSlot.INFO_HEIGHT;
_local_1.x = 20;
_local_1.y = 130;
_local_1.cacheAsBitmap = true;
this.currentPet.cacheAsBitmap = true;
addChild(_local_1);
this.currentPet.mask = _local_1;
}
public function renderSelectedPet():void
{
this.selectedPet = new SelectedPetSkinInfo(195, true);
this.selectedPet.x = 20;
this.selectedPet.y = 348;
addChild(this.selectedPet);
}
public function renderCollection(_arg_1:int, _arg_2:int):void
{
this.petCollection = new PetSkinsCollection(_arg_1, _arg_2);
this.petCollection.x = 222;
this.petCollection.y = 130;
addChild(this.petCollection);
}
public function get closeButton():Sprite
{
return (this._closeButton);
}
public function get contentContainer():Sprite
{
return (this._contentContainer);
}
}
}//package io.decagames.rotmg.pets.windows.wardrobe
|
package com.rails2u.net
{
import flash.net.URLRequest;
import flash.net.URLLoader;
import flash.events.TimerEvent;
import flash.utils.Timer;
import flash.events.Event;
import flash.events.IOErrorEvent;
/*
* URLLoader with Timeout
* loader.addEventListener(IOErrorEvent.IO_ERROR,
* function(e:*):void { trace('timeout!') });
* loader.loadWithTimeout(request, 30);
*/
public class URLLoaderWithTimeout extends URLLoader
{
public function URLLoaderWithTimeout(request:URLRequest=null)
{
super(request);
}
public function loadWithTimeout(request:URLRequest, timeout:Number = 30):void
{
addEventListener(Event.COMPLETE, cancelTimeoutError, false, 1, true);
observeTimeout(timeout);
load(request);
}
private var observeTimer:Timer;
private function observeTimeout(sec:Number):void
{
observeTimer = new Timer(sec * 1000, 1);
observeTimer.addEventListener(
TimerEvent.TIMER, timeoutError, false, 1, true
);
observeTimer.start();
}
private function cancelTimeoutError(e:Event):void
{
if (observeTimer) {
observeTimer.removeEventListener(TimerEvent.TIMER, timeoutError);
}
}
private function timeoutError(e:TimerEvent):void
{
dispatchEvent(new IOErrorEvent(IOErrorEvent.IO_ERROR, false, false, 'request timeout'));
observeTimer = null;
}
}
}
|
/* 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 "driver.js"
include "regex-exec-3.js"
|
package ru.nacid.base.services.windows.policy
{
import ru.nacid.base.services.windows.Window;
import ru.nacid.base.services.windows.Wm;
import ru.nacid.base.services.windows.events.WindowPolicyEvent;
/**
* VariablePolicy.as
* Created On: 5.8 20:22
*
* @author Nikolay nacid Bondarev
* @url https://github.com/nacid/nCore
*
*
* Copyright 2012 Nikolay nacid Bondarev
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
public class VariablePolicy extends WindowPolicy
{
protected var closeOther:Boolean;
protected var closeds:Array;
protected var active:Vector.<String>=Vector.<String>([]);
private var indexes:Array;
public function VariablePolicy($closeOther:Boolean=false, $locks:Array=null, $closeds:Array=null, $top:Array=null)
{
super('variableWindowPolicy', $locks, null, $top);
closeds=$closeds || [];
closeOther=$closeOther;
indexes=[];
}
override public function applyOpen(activeList:Vector.<String>, targetId:String, data:Object):void
{
super.applyOpen(activeList,targetId,data);
active=activeList;
if (closeOther)
{
for (var i:int=0; i < closeds.length; i++)
{
var ind:int=activeList.indexOf(closeds[i]);
if (ind >= 0)
{
var window:Window=Wm.instance.getWindow(closeds[i]) as Window;
indexes[i]={targetId: closeds[i], showData: window.getData()};
dispatchEvent(new WindowPolicyEvent(WindowPolicyEvent.CLOSE_WINDOW, closeds[i]));
}
}
}
dispatchEvent(new WindowPolicyEvent(WindowPolicyEvent.OPEN_WINDOW, targetId, data, getWindowIndex(activeList)));
}
override public function applyClose(activeList:Vector.<String>, targetId:String, $force:Boolean=false):void
{
super.applyClose(activeList, targetId, $force);
for each (var wndObj:Object in indexes)
{
dispatchEvent(new WindowPolicyEvent(WindowPolicyEvent.OPEN_WINDOW, wndObj.targetId, wndObj.showData, activeList.length));
}
indexes=[];
}
}
}
|
// default function implementations for GuiCollection //
// Set's the visibility of the Gui Window //
void HandleSet(GuiCollection@ Instance, bool isvisible){
// fetch pointers //
GuiManager@ tmpmanager = Instance.GetOwningGuiManager();
// Get the actual target object //
GuiWindow@ ourwind = tmpmanager.GetGuiWindowByName(Instance.GetWindowName());
// Set it's visibility state //
ourwind.SetVisibility(isvisible);
}
[@Listener="OnHide"]
int OnHide(GuiCollection@ Instance, Event@ event){
// We need to hide our elements //
HandleSet(Instance, false);
return 1;
}
[@Listener="OnShow"]
int OnShow(GuiCollection@ Instance, Event@ event){
// We need to show our elements //
HandleSet(Instance, true);
return 1;
} |
package visuals.ui.elements.citymap
{
import com.playata.framework.display.Sprite;
import com.playata.framework.display.lib.flash.FlashDisplayObjectContainer;
import com.playata.framework.display.lib.flash.FlashSprite;
import flash.display.MovieClip;
public class SymbolCitymapShadowDungeon3Generic extends Sprite
{
private var _nativeObject:SymbolCitymapShadowDungeon3 = null;
public function SymbolCitymapShadowDungeon3Generic(param1:MovieClip = null)
{
if(param1)
{
_nativeObject = param1 as SymbolCitymapShadowDungeon3;
}
else
{
_nativeObject = new SymbolCitymapShadowDungeon3();
}
super(null,FlashSprite.fromNative(_nativeObject));
var _loc2_:FlashDisplayObjectContainer = _sprite as FlashDisplayObjectContainer;
}
public function setNativeInstance(param1:SymbolCitymapShadowDungeon3) : void
{
FlashSprite.setNativeInstance(_sprite,param1);
_nativeObject = param1;
syncInstances();
}
public function syncInstances() : void
{
}
}
}
|
package com.google.zxing.qrcode.decoder
{
import com.google.zxing.qrcode.decoder.DataMaskBase;
/**
* 100: mask bits for which (x/2 + y/3) mod 2 == 0
*/
public class DataMask100 extends DataMaskBase {
public override function isMasked(i:int, j:int):Boolean {
return (((i >>> 1) + (int(j /3))) & 0x01) == 0;
}
}
} |
package com.playata.application.module
{
import com.playata.application.Application;
import com.playata.application.data.application.ApplicationOptions;
import com.playata.application.data.user.User;
import com.playata.application.request.AppRequestResponseData;
import com.playata.application.ui.dialogs.DialogMailCompose;
import com.playata.framework.application.Environment;
import com.playata.framework.application.user.IUser;
import com.playata.framework.core.timer.ITimer;
import com.playata.framework.core.util.TimeUtil;
public class AppAutoLogoutModule extends AppModuleBase
{
public static const AUTO_LOGOUT_CHECK_RATE:int = 60;
public static const AUTO_LOGOUT_TIME:int = 1800;
private var _autoLogoffTimer:ITimer = null;
public function AppAutoLogoutModule(param1:Application)
{
super(param1);
}
public function autoLogoff() : void
{
onAutoLogoffTimerEvent();
}
override public function dispose() : void
{
_autoLogoffTimer.dispose();
_autoLogoffTimer = null;
}
override public function onInit(param1:ApplicationOptions = null) : void
{
_autoLogoffTimer = Environment.createTimer("AppAutoLogoutModule::autoLogoff",1000 * 60,onAutoLogoffTimerEvent);
_autoLogoffTimer.start();
}
override public function onUserLogin(param1:AppRequestResponseData) : void
{
if(!_autoLogoffTimer)
{
_autoLogoffTimer = Environment.createTimer("AppAutoLogoutModule::autoLogoff",1000 * 60,onAutoLogoffTimerEvent);
}
if(_autoLogoffTimer.isStopped)
{
_autoLogoffTimer.start();
}
}
private function onAutoLogoffTimerEvent() : void
{
var _loc1_:* = null;
try
{
if(!User.current)
{
if(_autoLogoffTimer)
{
_autoLogoffTimer.stop();
}
return;
}
if(Application.lastInteractionActivityTimestamp + 1800 < TimeUtil.now)
{
if(Environment.platform.isSSO)
{
return;
}
_loc1_ = Application.userController.user;
if(_loc1_ && _loc1_.getSettingValue("auto_logoff") === false)
{
return;
}
if(Environment.panelManager.dialogManager.hasVisibleDialog(DialogMailCompose))
{
return;
}
platform.autoLogoff();
Application.resetLastInteractionActivityTimestamp();
Application.userController.logoutUser();
}
return;
}
catch(e:Error)
{
return;
}
}
}
}
|
package com.bit101.components
{
import flash.display.Sprite;
import flash.events.MouseEvent;
import flash.display.DisplayObjectContainer;
public class PushButton extends Component
{
public function PushButton(param1:DisplayObjectContainer = null, param2:Number = 0, param3:Number = 0, param4:String = "", param5:Function = null)
{
super(param1,param2,param3);
if(param5 != null)
{
addEventListener(MouseEvent.CLICK,param5);
}
this.label = param4;
}
protected var _back:Sprite;
protected var _face:Sprite;
protected var _label:Label;
protected var _labelText:String = "";
protected var _over:Boolean = false;
protected var _down:Boolean = false;
protected var _selected:Boolean = false;
protected var _toggle:Boolean = false;
override protected function init() : void
{
super.init();
buttonMode = true;
useHandCursor = true;
setSize(100,20);
}
override protected function addChildren() : void
{
this._back = new Sprite();
this._back.filters = [getShadow(2,true)];
this._back.mouseEnabled = false;
addChild(this._back);
this._face = new Sprite();
this._face.mouseEnabled = false;
this._face.filters = [getShadow(1)];
this._face.x = 1;
this._face.y = 1;
addChild(this._face);
this._label = new Label();
addChild(this._label);
addEventListener(MouseEvent.MOUSE_DOWN,this.onMouseGoDown);
addEventListener(MouseEvent.ROLL_OVER,this.onMouseOver);
}
protected function drawFace() : void
{
this._face.graphics.clear();
if(this._down)
{
this._face.graphics.beginFill(Style.BUTTON_DOWN);
}
else
{
this._face.graphics.beginFill(Style.BUTTON_FACE);
}
this._face.graphics.drawRect(0,0,_width - 2,_height - 2);
this._face.graphics.endFill();
}
override public function draw() : void
{
super.draw();
this._back.graphics.clear();
this._back.graphics.beginFill(Style.BACKGROUND);
this._back.graphics.drawRect(0,0,_width,_height);
this._back.graphics.endFill();
this.drawFace();
this._label.text = this._labelText;
this._label.autoSize = true;
this._label.draw();
if(this._label.width > _width - 4)
{
this._label.autoSize = false;
this._label.width = _width - 4;
}
else
{
this._label.autoSize = true;
}
this._label.draw();
this._label.move(_width / 2 - this._label.width / 2,_height / 2 - this._label.height / 2);
}
protected function onMouseOver(param1:MouseEvent) : void
{
this._over = true;
addEventListener(MouseEvent.ROLL_OUT,this.onMouseOut);
}
protected function onMouseOut(param1:MouseEvent) : void
{
this._over = false;
if(!this._down)
{
this._face.filters = [getShadow(1)];
}
removeEventListener(MouseEvent.ROLL_OUT,this.onMouseOut);
}
protected function onMouseGoDown(param1:MouseEvent) : void
{
this._down = true;
this.drawFace();
this._face.filters = [getShadow(1,true)];
stage.addEventListener(MouseEvent.MOUSE_UP,this.onMouseGoUp);
}
protected function onMouseGoUp(param1:MouseEvent) : void
{
if((this._toggle) && (this._over))
{
this._selected = !this._selected;
}
this._down = this._selected;
this.drawFace();
this._face.filters = [getShadow(1,this._selected)];
stage.removeEventListener(MouseEvent.MOUSE_UP,this.onMouseGoUp);
}
public function set label(param1:String) : void
{
this._labelText = param1;
this.draw();
}
public function get label() : String
{
return this._labelText;
}
public function set selected(param1:Boolean) : void
{
if(!this._toggle)
{
param1 = false;
}
this._selected = param1;
this._down = this._selected;
this._face.filters = [getShadow(1,this._selected)];
}
public function get selected() : Boolean
{
return this._selected;
}
public function set toggle(param1:Boolean) : void
{
this._toggle = param1;
}
public function get toggle() : Boolean
{
return this._toggle;
}
}
}
|
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package mx.utils
{
import flash.utils.ByteArray;
/**
* Implementation of SHA-256 hash algorithm as described in
* Federal Information Processing Standards Publication 180-2
* at http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public class SHA256
{
/**
* Identifies this hash is of type "SHA-256".
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public static const TYPE_ID:String = "SHA-256";
private static var k:Array =
[0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2];
/**
* Computes the digest of a message using the SHA-256 hash algorithm.
*
* @param byteArray - the message, may not be null.
*
* return String - 64 character hexidecimal representation of the digest.
*
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public static function computeDigest(byteArray:ByteArray):String
{
// Preprocessing
// 0. Set the ByteArray's position to zero
var originalPosition:uint = byteArray.position;
byteArray.position = 0;
// 1. Pad the message
var paddingLength:int = byteArray.length % 64;
paddingLength = 64 - paddingLength;
if (paddingLength < (1 + 8))
{
paddingLength += 64; // need to pad a partial block plus a full block
}
var messagePadding:Array = new Array(paddingLength);
var n:int = (byteArray.length + paddingLength) / 64; // number of message blocks
var messageLengthBits:uint = byteArray.length * 8;
messagePadding[0] = 128;
// put message size in last 32 bits of the message padding
var i:int;
for (i = 1; i < paddingLength - 8; i++)
{
messagePadding[i] = 0;
}
var lastIndex:int = messagePadding.length - 1; // last index of messagePadding
for (i = 0; i < 4; i++)
{
messagePadding[lastIndex - i] = (messageLengthBits >> (i << 3)) & 0xff;
}
// 2. Set initial hash H(0)
var h0:int = 0x6a09e667;
var h1:int = 0xbb67ae85;
var h2:int = 0x3c6ef372;
var h3:int = 0xa54ff53a;
var h4:int = 0x510e527f;
var h5:int = 0x9b05688c;
var h6:int = 0x1f83d9ab;
var h7:int = 0x5be0cd19;
var a:int;
var b:int;
var c:int;
var d:int;
var e:int;
var f:int;
var g:int;
var h:int;
// Hash computation
// for all message blocks
var m:ByteArray = new ByteArray(); // message block; 16 32-bit words or 64 bytes
var w:Array = new Array(64); // message schedule, 64 32-bit words
var paddingStart:uint = 0; // index to start padding message
var paddingSize:uint = 0; // amount of padding to copy to message
var j:uint;
var t1:int; // temporary storage in hash loop
var t2:int; // temporary storage in hash loop
var t:uint;
var msgIndex:uint;
var wt2:int; // w[t - 2]
var wt15:int; // w[t -15]
//var messageSchTime:int = 0;
//var hashTime:int = 0;
//var startTime:int;
//var endTime:int;
for (i = 0; i < n; i++)
{
// get the next message block of 512 bits or 64 bytes.
getMessageBlock(byteArray, m);
// append pass to end of last message block
if (i == (n - 2) && messagePadding.length > 64)
{
// pad end of message before last block
paddingStart = 64 - (messagePadding.length % 64);
paddingSize = 64 - paddingStart;
for (j = 0; j < paddingSize; j++)
{
m[j + paddingStart] = messagePadding[j];
}
}
else if (i == n - 1)
{
var prevPaddingSize:int = paddingSize;
if (messagePadding.length > 64)
{
paddingStart = 0;
paddingSize = 64;
}
else
{
paddingStart = 64 - messagePadding.length;
paddingSize = messagePadding.length;
}
for (j = 0; j < paddingSize; j++)
{
m[j + paddingStart] = messagePadding[j + prevPaddingSize];
}
}
// prepare the message schedule, w
//startTime= getTimer();
for (t = 0; t < 64; t++)
{
if (t < 16)
{
msgIndex = t << 2;
w[t] = int((m[msgIndex] << 24) |
(m[msgIndex + 1] << 16) |
(m[msgIndex + 2] << 8) |
m[msgIndex + 3]);
}
else
{
// inline functions to boost performance. keep orginal code for reference.
// w[t] = divisor1(w[t - 2]) + uint(w[t - 7]) + divisor0(w[t - 15]) + uint(w[t - 16]);
wt2 = w[t -2];
wt15 = w[t-15];
w[t] = int(int((((wt2 >>> 17) | (wt2 << 15)) ^ ((wt2 >>> 19) | (wt2 << 13)) ^ (wt2 >>> 10))) + // divisor1(w[t - 2])
int(w[t - 7]) +
int((((wt15 >>> 7) | (wt15 << 25)) ^ ((wt15 >>> 18) | (wt15 << 14)) ^ (wt15 >>> 3))) + // divisor0(w[t - 15])
int(w[t - 16]));
}
}
//endTime= getTimer();
//messageSchTime += endTime - startTime;
//startTime= getTimer();
a = h0;
b = h1;
c = h2;
d = h3;
e = h4;
f = h5;
g = h6;
h = h7;
for (t = 0; t < 64; t++)
{
// inline functions to boost performance. keep orginal code for reference.
//t1 = h + sum1(e) + Ch(e, f, g) + uint(k[t]) + uint(w[t]);
//t2 = sum0(a) + Maj(a, b, c);
t1 = h +
int((((e >>> 6) | (e << 26)) ^ ((e >>> 11) | (e << 21)) ^ ((e >>> 25) | (e << 7)))) + // sum1(e)
int(((e & f) ^ (~e & g))) + // Ch(e, f, g)
int(k[t]) +
int(w[t]);
t2 = int((((a >>> 2) | (a << 30)) ^ ((a >>> 13) | (a << 19)) ^ ((a >>> 22) | (a << 10)))) + // sum0(a)
int(((a & b) ^ (a & c) ^ (b & c))); // Maj(a, b, c)
h = g;
g = f;
f = e;
e = d + t1;
d = c;
c = b;
b = a;
a = t1 + t2;
//trace("t = " + t + " a = " + uint(a).toString(16) + " b = " + uint(b).toString(16) +
// " c = " + uint(c).toString(16) + " d = " + uint(d).toString(16) + "\n");
//trace("t = " + t + " e = " + uint(e).toString(16) + " f = " + uint(f).toString(16) +
// " g = " + uint(g).toString(16) + " h = " + uint(h).toString(16) + "\n");
}
h0 += a;
h1 += b;
h2 += c;
h3 += d;
h4 += e;
h5 += f;
h6 += g;
h7 += h;
//endTime= getTimer();
//hashTime += endTime - startTime;
}
// Reset the ByteArray's position to where it was previously
byteArray.position = originalPosition;
//trace("messageSchTime = " + messageSchTime);
//trace("hashTime = " + hashTime);
// final digest is h1 | h2 | h3 | h4 | h5 | h6 | h7
// convert H(i) variables to hex strings and concatinate
return toHex(h0) + toHex(h1) +
toHex(h2) + toHex(h3) +
toHex(h4) + toHex(h5) +
toHex(h6) + toHex(h7);
}
/**
* get the next n bytes of the message from the byteArray and move it to the message block.
*
* @param byteArray - message
* @param m - message block (output)
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
private static function getMessageBlock(byteArray:ByteArray, m:ByteArray):void
{
byteArray.readBytes(m, 0, Math.min(byteArray.bytesAvailable, 64));
// for (var i:int; i < length && (i + startingIndex) < byteArray.length; i++)
// {
// m[i] = byteArray[i + startingIndex];
// }
}
private static function toHex(n:uint):String
{
var s:String = n.toString(16);
if (s.length < 8)
{
// add leading zeros
var zeros:String = "0";
var count:int = 8 - s.length;
for (var i:int = 1; i < count; i++)
{
zeros = zeros.concat("0");
}
return zeros + s;
}
return s;
}
// The below functions are defined in Federal Information
// Processing Standards Publication 180-2
// at
// http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf
/* The functions have been inlined to boost performance. They are
kept here for reference.
private static function Ch(x:uint, y:uint, z:uint):uint
{
return (x & y) ^ (~x & z);
}
private static function Maj(x:uint, y:uint, z:uint):uint
{
return (x & y) ^ (x & z) ^ (y & z);
}
private static function sum0(x:uint):uint
{
return ((x >>> 2) | (x << 30)) ^ ((x >>> 13) | (x << 19)) ^ ((x >>> 22) | (x << 10));
//return rotr(2, x) ^ rotr(13, x) ^ rotr(22, x);
}
private static function sum1(x:uint):uint
{
return ((x >>> 6) | (x << 26)) ^ ((x >>> 11) | (x << 21)) ^ ((x >>> 25) | (x << 7));
// return rotr(6, x) ^ rotr(11, x) ^ rotr(25, x);
}
private static function divisor0(x:uint):uint
{
return ((x >>> 7) | (x << 25)) ^ ((x >>> 18) | (x << 14)) ^ (x >>> 3);
// return rotr(7, x) ^ rotr(18, x) ^ shr(3, x);
}
private static function divisor1(x:uint):uint
{
return ((x >>> 17) | (x << 15)) ^ ((x >>> 19) | (x << 13)) ^ (x >>> 10);
// return rotr(17, x) ^ rotr(19, x) ^ shr(10, x);
}
private static function rotr(n:uint, x:uint):uint
{
return (x >>> n) | (x << 32 - n);
}
private static function shr(n:uint, x:uint):uint
{
return x >>> n;
}
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
}
}
|
//
// Copyright 2012 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package tileui.physics.events
{
import flash.events.Event;
import tileui.physics.particles.IPhysicsParticle;
public class ParticleEvent extends Event
{
public static const PARTICLE_UPDATE:String = "particleUpdate";
public static const PARTICLE_COLLISION:String = "particleCollision";
public static const DRAG_OUTSIDE:String = "dragOutside";
private var _otherParticle:IPhysicsParticle;
public function get otherParticle():IPhysicsParticle {
return _otherParticle;
}
public function ParticleEvent(type:String, bubbles:Boolean = false,
cancelable:Boolean = false,
otherParticle:IPhysicsParticle=null)
{
_otherParticle = otherParticle;
super(type, bubbles, cancelable);
}
}
} |
/* See LICENSE for copyright and terms of use */
import org.actionstep.ASLabel;
import org.actionstep.constants.NSButtonType;
import org.actionstep.constants.NSTextAlignment;
import org.actionstep.layout.ASGrid;
import org.actionstep.layout.ASVBox;
import org.actionstep.NSButton;
import org.actionstep.NSComboBox;
import org.actionstep.NSDictionary;
import org.actionstep.NSFont;
import org.actionstep.NSPoint;
import org.actionstep.NSRect;
import org.actionstep.NSSize;
import org.actionstep.NSTabView;
import org.actionstep.NSTabViewItem;
import org.actionstep.NSTextField;
import org.actionstep.NSView;
import org.aib.AIBApplication;
import org.aib.constants.OriginType;
import org.aib.constants.SizeType;
import org.aib.EditableObjectProtocol;
import org.aib.inspector.size.SizeInspectorContents;
import org.aib.inspector.SizeInspector;
import org.aib.ui.AutosizeView;
/**
* @author Scott Hyndman
*/
class org.aib.inspector.size.ViewSizeContentView extends NSView
implements SizeInspectorContents {
private var m_inspector:SizeInspector;
//
// Controls
//
private var m_sizeTabs:NSTabView;
private var m_sizeLock:NSButton;
private var m_originList:NSComboBox;
private var m_originX:NSTextField;
private var m_originY:NSTextField;
private var m_sizeList:NSComboBox;
private var m_sizeWLabel:ASLabel;
private var m_sizeHLabel:ASLabel;
private var m_sizeW:NSTextField;
private var m_sizeH:NSTextField;
private var m_autosize:AutosizeView;
//******************************************************
//* Construction
//******************************************************
/**
* Creates a new instance of the <code>ViewSizeContentView</code> class.
*/
public function ViewSizeContentView() {
}
/**
* Initializes and returns the <code>ViewSizeContentView</code> instance with a frame
* area of <code>aRect</code>.
*/
public function initWithFrameInspector(aRect:NSRect,
inspector:SizeInspector):ViewSizeContentView {
super.initWithFrame(aRect);
m_inspector = inspector;
buildContents();
return this;
}
/**
* Builds the contents of this inspector (when a view is selected).
*/
private function buildContents():Void {
var strings:NSDictionary = AIBApplication.stringTable().internalDictionary();
var origin:NSPoint = m_frame.origin;
var contentSize:NSSize = m_frame.size;
var vbox:ASVBox = (new ASVBox()).init();
var lblFont:NSFont = NSFont.systemFontOfSize(11);
var lblRect:NSRect = new NSRect(0, 0, 34, 22);
this.addSubview(vbox);
//
// Build tab contents
//
var tabContents:ASGrid = (new ASGrid()).initWithNumberOfRowsNumberOfColumns(
6, 4);
tabContents.setXResizingEnabledForColumn(false, 0);
tabContents.setXResizingEnabledForColumn(true, 1);
tabContents.setXResizingEnabledForColumn(false, 2);
tabContents.setXResizingEnabledForColumn(false, 3);
//
// Add the spacer
//
var spacer:NSView = (new NSView()).initWithFrame(new NSRect(0,0,30,1));
spacer.setAutoresizingMask(NSView.WidthSizable);
tabContents.putViewAtRowColumn(spacer, 0, 1);
//
// Lock checkbox
//
m_sizeLock = (new NSButton()).initWithFrame(new NSRect(0, 0, SizeInspector.TEXT_WIDTH, 22));
m_sizeLock.setButtonType(NSButtonType.NSSwitchButton);
m_sizeLock.setTitle(strings.objectForKey(
SizeInspector.STRING_GROUP + ".sizelock").toString());
m_sizeLock.setTarget(m_inspector);
m_sizeLock.setAction("lockDidChange");
m_sizeLock.setFont(NSFont.systemFontOfSize(11));
tabContents.putViewAtRowColumnWithMargins(m_sizeLock, 0, 3, SizeInspector.MARGINS);
//TODO limit all text boxes to numbers
//
// Origin controls
//
m_originList = (new NSComboBox()).initWithFrame(
new NSRect(0, 0, SizeInspector.COMBO_WIDTH, 22));
m_originList.addItemsWithObjectValues(OriginType.allTypes);
m_originList.selectItemAtIndex(0);
m_originList.setToolTip(strings.objectForKey(
SizeInspector.STRING_GROUP + ".origin").toString());
m_originList.setTarget(m_inspector);
m_originList.setAction("originTypeDidChange");
tabContents.putViewAtRowColumnWithMargins(m_originList, 1, 0, SizeInspector.MARGINS);
var lbl:ASLabel = (new ASLabel()).initWithFrame(lblRect);
lbl.setFont(lblFont);
lbl.setAlignment(NSTextAlignment.NSRightTextAlignment);
lbl.setStringValue(
strings.objectForKey(SizeInspector.STRING_GROUP + ".originx").toString());
tabContents.putViewAtRowColumnWithMargins(lbl, 1, 2, SizeInspector.MARGINS);
m_originX = (new NSTextField()).initWithFrame(new NSRect(0, 0, SizeInspector.TEXT_WIDTH, 22));
m_originX.setDrawsBackground(true);
m_originX.setDelegate(m_inspector);
tabContents.putViewAtRowColumnWithMargins(m_originX, 1, 3, SizeInspector.MARGINS);
lbl = (new ASLabel()).initWithFrame(lblRect);
lbl.setFont(lblFont);
lbl.setAlignment(NSTextAlignment.NSRightTextAlignment);
lbl.setStringValue(
strings.objectForKey(SizeInspector.STRING_GROUP + ".originy").toString());
tabContents.putViewAtRowColumnWithMargins(lbl, 2, 2, SizeInspector.MARGINS);
m_originY = (new NSTextField()).initWithFrame(new NSRect(0, 0, SizeInspector.TEXT_WIDTH, 22));
m_originY.setDrawsBackground(true);
m_originY.setDelegate(m_inspector);
tabContents.putViewAtRowColumnWithMargins(m_originY, 2, 3, SizeInspector.MARGINS);
//
// Spacer
//
spacer = (new NSView()).initWithFrame(new NSRect(0,0,1,15));
spacer.setAutoresizingMask(NSView.WidthSizable);
tabContents.putViewAtRowColumn(spacer, 3, 0);
//
// Size controls
//
m_sizeList = (new NSComboBox()).initWithFrame(
new NSRect(0, 0, SizeInspector.COMBO_WIDTH, 22));
m_sizeList.addItemsWithObjectValues(SizeType.allTypes);
m_sizeList.selectItemAtIndex(0);
m_sizeList.setToolTip(
strings.objectForKey(SizeInspector.STRING_GROUP + ".size").toString());
m_sizeList.setTarget(m_inspector);
m_sizeList.setAction("sizeTypeDidChange");
tabContents.putViewAtRowColumnWithMargins(m_sizeList, 4, 0, SizeInspector.MARGINS);
m_sizeWLabel = (new ASLabel()).initWithFrame(lblRect);
m_sizeWLabel.setFont(lblFont);
m_sizeWLabel.setAlignment(NSTextAlignment.NSRightTextAlignment);
m_sizeWLabel.setStringValue(strings.objectForKey(
SizeInspector.STRING_GROUP + ".sizewidth").toString());
tabContents.putViewAtRowColumnWithMargins(m_sizeWLabel, 4, 2, SizeInspector.MARGINS);
m_sizeW = (new NSTextField()).initWithFrame(new NSRect(0, 0, SizeInspector.TEXT_WIDTH, 22));
m_sizeW.setDelegate(m_inspector);
tabContents.putViewAtRowColumnWithMargins(m_sizeW, 4, 3, SizeInspector.MARGINS);
m_sizeHLabel = (new ASLabel()).initWithFrame(lblRect);
m_sizeHLabel.setFont(lblFont);
m_sizeHLabel.setAlignment(NSTextAlignment.NSRightTextAlignment);
m_sizeHLabel.setStringValue(strings.objectForKey(
SizeInspector.STRING_GROUP + ".sizeheight").toString());
tabContents.putViewAtRowColumnWithMargins(m_sizeHLabel, 5, 2, SizeInspector.MARGINS);
m_sizeH = (new NSTextField()).initWithFrame(new NSRect(0, 0, SizeInspector.TEXT_WIDTH, 22));
m_sizeH.setDelegate(m_inspector);
tabContents.putViewAtRowColumnWithMargins(m_sizeH, 5, 3, SizeInspector.MARGINS);
//
// Build tab view
//
var sz:NSSize = new NSSize(contentSize.width - 8,
tabContents.frame().size.height);
m_sizeTabs = (new NSTabView()).initWithOriginContentSize(NSPoint.ZeroPoint,
tabContents.frame().size);
m_sizeTabs.setDelegate(m_inspector);
m_sizeTabs.setDrawsBackground(false);
vbox.addView(m_sizeTabs);
//
// Build tab items
//
var tabItem:NSTabViewItem = (new NSTabViewItem()).initWithIdentifier(
"frame");
tabItem.setLabel(
strings.objectForKey(SizeInspector.STRING_GROUP + ".frame").toString());
tabItem.setView(tabContents);
m_sizeTabs.addTabViewItem(tabItem);
tabItem = (new NSTabViewItem()).initWithIdentifier(
"layout");
tabItem.setLabel(
strings.objectForKey(SizeInspector.STRING_GROUP + ".layout").toString());
m_sizeTabs.addTabViewItem(tabItem);
tabItem.setView(tabContents);
m_sizeTabs.selectFirstTabViewItem(this);
//
// Build autosize view
//
m_autosize = (new AutosizeView()).initWithFrame(
new NSRect((contentSize.width - SizeInspector.AUTOSIZE_EDGE_LENGTH) / 2, 0,
SizeInspector.AUTOSIZE_EDGE_LENGTH, SizeInspector.AUTOSIZE_EDGE_LENGTH));
m_autosize.setAutoresizingMask(NSView.MaxXMargin | NSView.MinXMargin);
m_autosize.setDelegate(m_inspector);
vbox.addViewWithMinYMargin(m_autosize, SizeInspector.SECTION_SPACING);
origin.x = (contentSize.width - vbox.frame().size.width) / 2;
vbox.setFrameOrigin(origin);
}
//******************************************************
//* Description
//******************************************************
/**
* Returns a string representation of the ViewSizeContentView instance.
*/
public function description():String {
return "ViewSizeContentView()";
}
//******************************************************
//* Interface
//******************************************************
public function setWidthTextHeightText(width:String, height:String):Void {
m_sizeWLabel.setStringValue(width);
m_sizeHLabel.setStringValue(height);
m_sizeWLabel.setNeedsDisplay(true);
m_sizeHLabel.setNeedsDisplay(true);
}
public function setSelection(selection:EditableObjectProtocol):Void {
}
} |
package ru.inspirit.fft
{
import apparat.asm.__as3;
import apparat.asm.__asm;
import apparat.asm.__cint;
import apparat.asm.CallProperty;
import apparat.asm.DecLocalInt;
import apparat.asm.IncLocalInt;
import apparat.asm.SetLocal;
import apparat.math.IntMath;
import apparat.memory.Memory;
/**
* Fast Fourier Transform (FFT)
* The class provides methods supporting the
* performance of in-place mixed-radix Fast Fourier Transforms.
*
* @author Eugene Zatepyakin
*/
public final class FFT
{
public var memPtr:int;
protected var lutR4Ptr:int;
protected var lutR2Ptr:int;
protected var bitPtr:int;
protected var numBitRev:int;
protected var lastLength:int = -1; // last input length
protected var lastP2Length:int = -1; // last power of 2 length
protected var lastL2Length:int = -1; // last log2 length
protected var lastInvP2Length:Number = -1;
public function FFT() { }
public function calcRequiredChunkSize(maxLength:int):int
{
var size:int = 0;
var l2:int = IntMath.nextPow2(maxLength);
size += (l2 * 4) << 3; // 2 lut tables radix 2/4
size += l2 << 3; // bitrev table
size += 8; // for magic log2 macro
return IntMath.nextPow2(size);
}
public function setup(memOffset:int, maxLength:int):void
{
memPtr = memOffset;
memOffset += 8; // for magic log2 macro
var ptr:int = memPtr;
var l2:int = IntMath.nextPow2(maxLength);
lutR4Ptr = memOffset;
memOffset += (l2 * 2) << 3; // lut table radix-4
lutR2Ptr = memOffset;
memOffset += (l2 * 2) << 3; // lut table radix-2
bitPtr = memOffset;
memOffset += l2 << 3; // bitrev table
// invalidate
lastInvP2Length = lastLength = lastL2Length = lastP2Length = -1;
}
// assume u run init() before it
public function forward(re_ptr:int, im_ptr:int):void
{
var n:int = lastP2Length;
var l2n:int = lastL2Length;
var hl2n:int = l2n >> 1;
var ind1:int, ind2:int;
var isPow4:int;
var lut_ptr:int;
var i:int = numBitRev;
var ptr:int = bitPtr;
FFTMacro.bitReverse(re_ptr, im_ptr, ptr, i);
ptr = memPtr;
FFTMacro.isPowerOf4(n, isPow4, ptr);
lut_ptr = lutR4Ptr;
FFTMacro.doFFTR4(re_ptr, im_ptr, n, hl2n, lut_ptr);
if (!isPow4) // if not power of 4
{
// the last stage is radix 2
lut_ptr = lutR2Ptr;
FFTMacro.doFFTL2(re_ptr, im_ptr, n, lut_ptr);
}
}
public function inverse(re_ptr:int, im_ptr:int):void
{
var n:int = lastP2Length;
var l2n:int = lastL2Length;
var hl2n:int = l2n >> 1;
var ind1:int, ind2:int, i:int, ptr:int;
var isPow4:int;
var lut_ptr:int;
// conj input
ptr = im_ptr;
i = __cint(ptr + (n << 3));
while (ptr < i)
{
Memory.writeDouble( -Memory.readDouble(ptr), ptr );
ptr = __cint(ptr + 8);
}
// reverse bits
i = numBitRev;
ptr = bitPtr;
FFTMacro.bitReverse(re_ptr, im_ptr, ptr, i);
ptr = memPtr;
FFTMacro.isPowerOf4(n, isPow4, ptr);
lut_ptr = lutR4Ptr;
FFTMacro.doFFTR4(re_ptr, im_ptr, n, hl2n, lut_ptr);
if (!isPow4) // if not power of 4
{
// the last stage is radix 2
lut_ptr = lutR2Ptr;
FFTMacro.doFFTL2(re_ptr, im_ptr, n, lut_ptr);
}
// scale & conj data
var invN:Number = lastInvP2Length;
ptr = im_ptr;
i = __cint(ptr + (n << 3));
while (ptr < i)
{
Memory.writeDouble( Memory.readDouble(re_ptr) * invN, re_ptr );
Memory.writeDouble( -Memory.readDouble(ptr) * invN, ptr );
ptr = __cint(ptr + 8);
re_ptr = __cint(re_ptr + 8);
}
}
public function init(length:int):void
{
var l2:int, l2n:int;
var isPow4:int;
var i:int;
var forward:int, rev:int, zeros:int;
var nodd:int, noddrev:int;
var halfn:int, quartn:int, nmin1:int;
var ptr:int;
var math:*;
if (lastLength != length)
{
l2 = IntMath.nextPow2(length);
ptr = memPtr;
FFTMacro.log2(l2, l2n, ptr);
FFTMacro.isPowerOf4(l2, isPow4, ptr);
// store new values
lastLength = length;
lastP2Length = l2;
lastL2Length = l2n;
var invL2:Number = lastInvP2Length = 1.0 / Number(l2);
var hl2n:int = l2n >> 1;
// create bit reverse table
halfn = l2 >> 1;
quartn = l2 >> 2;
nmin1 = __cint(l2-1);
forward = halfn;
rev = 1;
ptr = bitPtr;
numBitRev = 0;
for(i = quartn; i; ) // start of bitreversed permutation loop, N/4 iterations
{
// Gray code generator for even values:
nodd = ~i; // counting ones is easier
for(zeros=0; nodd&1; zeros++) nodd >>= 1; // find trailing zero's in i
forward ^= 2 << zeros; // toggle one bit of forward
rev ^= quartn >> zeros; // toggle one bit of rev
//
if(forward < rev) // swap even and ~even conditionally
{
// swap
Memory.writeInt(forward<<3, ptr); ptr = __cint(ptr + 4);
Memory.writeInt(rev<<3, ptr); ptr = __cint(ptr + 4);
nodd = nmin1 ^ forward; // compute the bitwise negations
noddrev = nmin1 ^ rev;
// swap bitwise-negated pairs
Memory.writeInt(nodd<<3, ptr); ptr = __cint(ptr + 4);
Memory.writeInt(noddrev<<3, ptr); ptr = __cint(ptr + 4);
numBitRev = __cint(numBitRev + 2);
}
nodd = forward ^ 1; // compute the odd values from the even
noddrev = rev ^ halfn;
// swap odd unconditionally
Memory.writeInt(nodd<<3, ptr); ptr = __cint(ptr + 4);
Memory.writeInt(noddrev<<3, ptr); ptr = __cint(ptr + 4);
numBitRev = __cint(numBitRev + 1);
//
__asm(DecLocalInt(i));
}
// create sin/cos lut tables
__asm(__as3(Math), SetLocal(math));
var iB:int;
var an:Number, cs:Number, sn:Number;
// radix-4 lut table
ptr = lutR4Ptr;
for (var iL:int = 1; iL <= hl2n; )
{
var le:int = (1 << (iL << 1));
var invLe:Number = 1.0 / Number(le);
iB = le >> 2;
for (i = 0; i < iB; )
{
var pi2:Number = (6.283185307179586 * invLe);
an = pi2 * 2.0 * Number(i);
__asm(__as3(math), __as3(an), CallProperty(__as3(Math.cos), 1), SetLocal(cs));
__asm(__as3(math), __as3(an), CallProperty(__as3(Math.sin), 1), SetLocal(sn));
//
Memory.writeDouble(cs, ptr); ptr = __cint(ptr + 8);
Memory.writeDouble(-sn, ptr); ptr = __cint(ptr + 8);
//
an = pi2 * Number(i);
__asm(__as3(math), __as3(an), CallProperty(__as3(Math.cos), 1), SetLocal(cs));
__asm(__as3(math), __as3(an), CallProperty(__as3(Math.sin), 1), SetLocal(sn));
//
Memory.writeDouble(cs, ptr); ptr = __cint(ptr + 8);
Memory.writeDouble(-sn, ptr); ptr = __cint(ptr + 8);
//
an = pi2 * 3.0 * Number(i);
__asm(__as3(math), __as3(an), CallProperty(__as3(Math.cos), 1), SetLocal(cs));
__asm(__as3(math), __as3(an), CallProperty(__as3(Math.sin), 1), SetLocal(sn));
//
Memory.writeDouble(cs, ptr); ptr = __cint(ptr + 8);
Memory.writeDouble(-sn, ptr); ptr = __cint(ptr + 8);
//
__asm(IncLocalInt(i));
}
//
__asm(IncLocalInt(iL));
}
if (isPow4) return; // exit if input is power of 4
// radix-2 lut table
iB = l2 >> 1;
ptr = lutR2Ptr;
for (i = 0; i < iB; )
{
an = (6.283185307179586 * invL2) * Number(i);
__asm(__as3(math), __as3(an), CallProperty(__as3(Math.cos), 1), SetLocal(cs));
__asm(__as3(math), __as3(an), CallProperty(__as3(Math.sin), 1), SetLocal(sn));
//
Memory.writeDouble(cs, ptr); ptr = __cint(ptr + 8);
Memory.writeDouble(-sn, ptr); ptr = __cint(ptr + 8);
//
__asm(IncLocalInt(i));
}
//throw new Error('fft init: ' + [numBitRev, l2, l2n]);
}
}
}
} |
package pong.score.ctrl
{
import pong.score.ScoreMediator;
import pong.score.model.ScoreModel;
import pong.score.view.ScoreView;
import org.robotlegs.mvcs.Command;
public class BootstrapScoreCommand extends Command
{
override public function execute():void
{
mediatorMap.mapView(ScoreView, ScoreMediator);
injector.mapSingleton(ScoreModel);
}
}
}
|
package time
{
/**
* 用于计划任务的任务对象接口
*/
public interface ITask
{
function doTask():void;
function start():void;
function reset():void;
function set name(Object:String) : void;
function get name() : String;
/**
*任务延迟
* @param value
*
*/
function set taskDelay(value:Number):void;
function get taskDelay():Number;
/**
*执行方法
* @param value
*
*/
function set taskDoFun( value:Function ):void;
function get taskDoFun():Function;
/**
*执行方法参数
* @param value
*
*/
function set taskFunParam(value:Array):void;
/**
*是否暂停
* @param value
*
*/
function set taskIsRun(value:Boolean):void;
function get taskIsRun():Boolean;
/**
*是否完成
* @param value
*
*/
function set taskIsCompleted(value:Boolean):void;
function get taskIsCompleted():Boolean;
}
} |
package virtualworlds.com.smerc.finite
{
import flash.utils.getQualifiedClassName;
import virtualworlds.com.smerc.interfaces.IState;
import virtualworlds.com.smerc.interfaces.IStateMachine;
/**
* Basic implementation of a State. Useful for FiniteStateMachine.
*
* @author Bo
*/
public class State implements IState
{
/**
* Nazme of this state.
*/
protected var _name:String;
/**
* reference to the state machine that owns this state.
*/
private var _sm:IStateMachine;
/**
*
* @param a_name: String name of this state.
* @param a_sm: The StateMachine that owns this state.
*/
public function State(a_name:String, a_sm:IStateMachine)
{
if (!a_name || !a_sm)
{
throw new ArgumentError("State::State(): parameters a_name and a_sm must be non-null!");
}
this.name = a_name;
_sm = a_sm;
}//end State() constructor.
/**
* get/set the name of this state.
*
* By default, the name of the passed into the constructor.
* However, since StateMachines transition to different states
* by IState reference, the name can be changed dynamically.
*/
public function get name():String
{
return _name;
}//end get name()
public function set name(a_name:String):void
{
_name = a_name;
}//end set name()
/**
* get the State machine that owns this state.
*/
public function get stateMachine():IStateMachine
{
return _sm;
}//end get stateMachine()
/**
* set the State machine that owns this state.
*/
public function set stateMachine(a_sm:IStateMachine):void
{
_sm = a_sm;
}//end set stateMachine()
/**
* Handler for entering (and executing) this state.
*/
public function onEnter():void
{
// override this
throw new Error("State::onEnter(): this function must be overridden! -- this=" + this);
}//end onEnter()
/**
* Handler for exiting this state.
*/
public function onExit():void
{
// override this
throw new Error("State::onExit(): this function must be overridden! -- this=" + this);
}//end onExit()
/**
* @param a_msg: String message to handle.
* @param a_data: Object data message to handle.
* @return
*/
public function onMessage( msg:String, data:Object = null ):Boolean
{
// override this
return false;
}//end onMessage()
/**
* To change the contents of the square brackets, override get myStringRep().
* @see #myStringRep
*
* @return String representation of this object.
*/
final public function toString():String
{
return ("[ " + this.myStringRep + " ]");
}//end toString()
/**
* The guts of the toString() output for this object.
* Override this for more detailed output in subclasses.
*/
protected function get myStringRep():String
{
return (getQualifiedClassName(this) + " name=" + this.name);
}//end myStringRep()
}//end class State
}//end package com.smerc.statemachines.finite
|
package
{
import flash.display.Graphics;
import flash.display.Shape;
import flash.display.Sprite;
import flash.display.StageQuality;
import flash.display.StageScaleMode;
import flash.events.Event;
import flash.geom.Rectangle;
[SWF(width='800',height='600',frameRate='32',backgroundColor='0x000000')]
/**
* @author Joa Ebert
*/
public final class ReducerExample extends Sprite
{
[Embed(source='picture.png')]
private static const BITMAP_ASSET: Class;
private var _phase: Number = 0.0;
private var _shape: Shape;
public function ReducerExample()
{
stage.quality = StageQuality.LOW;
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.fullScreenSourceRect = new Rectangle( 0.0, 0.0, 800.0, 600.0 );
stage.frameRate = 32.0;
addChild( _shape = new Shape() );
addChild( new BITMAP_ASSET() );
addEventListener(Event.ENTER_FRAME, onEnterFrame);
}
private function onEnterFrame( event: Event ): void
{
var graphics: Graphics = _shape.graphics;
_phase += 0.01;
if( _phase > 1.0 )
--_phase;
var color: int = Math.sin( _phase * Math.PI ) * 0xff;
color |= color << 0x08;
color |= color << 0x08;
graphics.clear();
graphics.beginFill( color );
graphics.drawRect( 0.0, 0.0, 800.0, 600.0 );
graphics.endFill();
}
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.