Skip to content

Instantly share code, notes, and snippets.

@akihiro4chawon
Created May 14, 2012 08:29
Show Gist options
  • Save akihiro4chawon/2692706 to your computer and use it in GitHub Desktop.
Save akihiro4chawon/2692706 to your computer and use it in GitHub Desktop.
Simulink でソート(するブロックの自動生成をMATLABで)をやってみた
function [ output_args ] = make_bsort( input_args )
%BSORT2 この関数の概要をここに記述
% 詳細説明をここに記述
global stack
% 整列対象の要素数
n_sort = 6;
stack = [];
bitonic_sort(1, n_sort, true);
aaa = make_pipeline(stack, max(stack(:)))
%[aaa{:}]
arrange_block(aaa, n_sort);
end
function arrange_block(pipeline, n)
sys = 'sort_seed';
blk = sprintf('%s/sort_%d', sys, n);
add_block('Simulink/Ports & Subsystems/Subsystem', blk);
% 既存のポートと結線を除去
delete_line(blk, 'In1/1', 'Out1/1')
delete_block([blk, '/In1'])
delete_block([blk, '/Out1'])
% inport の追加
data_ref = cell(1, n);
for idx = 1:n
in_blk = sprintf('%s/In%d', blk, idx);
h = add_block('Simulink/Ports & Subsystems/Subsystem/In1', in_blk);
move_block(h, 10, idx * 60 + 60);
data_ref{idx} = [get_param(h, 'Name'), '/1'];
end
% sorting network パイプラインの構築
for idx = 1:length(pipeline)
% パイプラインの当該段
the_stage = pipeline{idx};
for jdx = 1:size(the_stage, 2)
% compare素子の追加
h = add_block([sys, '/ascending'], [blk, '/comp_1'], 'MakeNameUnique', 'on');
cmp_name = get_param(h, 'Name');
move_block(h, idx * 100, jdx * 120);
% compare 素子への結線
add_line(blk, data_ref{the_stage(1, jdx)}, [cmp_name, '/1']);
add_line(blk, data_ref{the_stage(2, jdx)}, [cmp_name, '/2']);
% データ参照の更新
data_ref{the_stage(1, jdx)} = [cmp_name, '/1'];
data_ref{the_stage(2, jdx)} = [cmp_name, '/2'];
end
end
% outport の追加
for idx = 1:n
out_blk = sprintf('%s/Out%d', blk, idx);
h = add_block('Simulink/Ports & Subsystems/Subsystem/Out1', out_blk);
move_block(h, (1+length(pipeline)) * 100, idx * 60 + 60);
add_line(blk, data_ref{idx}, [get_param(h, 'Name'), '/1']);
end
function move_block(blk, x, y)
pos = get_param(blk, 'Position'); %[x, y, x+w, y+h]
pos([1, 3]) = pos([1, 3]) - pos(1) + x;
pos([2, 4]) = pos([2, 4]) - pos(2) + y;
set_param(blk, 'Position', pos);
end
end
function pipeline = make_pipeline(stack, n)
kdx = 1;
pipeline = {};
while ~isempty(stack)
pipeline{kdx} = [];
used = zeros(1, n);
idx = 1;
%while idx <= length(stack)
while idx <= size(stack, 2)
pos = stack(:, idx);
if any(used(pos))
used(pos) = 1; %% 追加
idx = idx + 1;
continue;
else
used(pos) = 1;
pipeline{kdx}(:,end+1) = pos;
stack(:, idx) = [];
end
end
kdx = kdx + 1;
end
end
function bitonic_sort(lo, n, dir)
if n <= 1, return, end
m = floor(n / 2);
bitonic_sort(lo, m, ~dir);
bitonic_sort(lo + m, n - m, dir);
bitonic_merge(lo, n, dir);
end
function bitonic_merge(lo, n, dir)
if n <= 1, return , end
m = 2^ceil(log2(n)-1);
for idx = lo:(lo+n-m-1)
compare(idx, idx + m, dir);
end
bitonic_merge(lo, m, dir);
bitonic_merge(lo + m, n - m, dir);
end
function compare(i, j, dir)
global stack
if dir
stack(:,end+1) = [i ; j];
else
stack(:,end+1) = [j ; i];
end
end
Model {
Name "sort_seed"
Version 7.5
MdlSubVersion 0
GraphicalInterface {
NumRootInports 0
NumRootOutports 0
ParameterArgumentNames ""
ComputedModelVersion "1.30"
NumModelReferences 0
NumTestPointedSignals 0
}
SavedCharacterEncoding "Shift_JIS"
SaveDefaultBlockParams on
ScopeRefreshTime 0.035000
OverrideScopeRefreshTime on
DisableAllScopes off
DataTypeOverride "UseLocalSettings"
MinMaxOverflowLogging "UseLocalSettings"
MinMaxOverflowArchiveMode "Overwrite"
MaxMDLFileLineLength 120
Created "Tue Jun 01 17:27:10 2010"
Creator "akihiro4chawon"
UpdateHistory "UpdateHistoryNever"
ModifiedByFormat "%<Auto>"
LastModifiedBy "akihiro4chawon"
ModifiedDateFormat "%<Auto>"
LastModifiedDate "Mon May 14 17:27:06 2012"
RTWModifiedTimeStamp 258917223
ModelVersionFormat "1.%<AutoIncrement:4>"
ConfigurationManager "None"
SampleTimeColors off
SampleTimeAnnotations off
LibraryLinkDisplay "none"
WideLines off
ShowLineDimensions off
ShowPortDataTypes off
ShowLoopsOnError on
IgnoreBidirectionalLines off
ShowStorageClass off
ShowTestPointIcons on
ShowSignalResolutionIcons on
ShowViewerIcons on
SortedOrder off
ExecutionContextIcon off
ShowLinearizationAnnotations on
BlockNameDataTip off
BlockParametersDataTip off
BlockDescriptionStringDataTip off
ToolBar on
StatusBar on
BrowserShowLibraryLinks off
BrowserLookUnderMasks off
SimulationMode "normal"
LinearizationMsg "none"
Profile off
ParamWorkspaceSource "MATLABWorkspace"
AccelSystemTargetFile "accel.tlc"
AccelTemplateMakefile "accel_default_tmf"
AccelMakeCommand "make_rtw"
TryForcingSFcnDF off
RecordCoverage off
CovPath "/"
CovSaveName "covdata"
CovMetricSettings "dw"
CovNameIncrementing off
CovHtmlReporting on
CovForceBlockReductionOff on
covSaveCumulativeToWorkspaceVar on
CovSaveSingleToWorkspaceVar on
CovCumulativeVarName "covCumulativeData"
CovCumulativeReport off
CovReportOnPause on
CovModelRefEnable "Off"
CovExternalEMLEnable off
ExtModeBatchMode off
ExtModeEnableFloating on
ExtModeTrigType "manual"
ExtModeTrigMode "normal"
ExtModeTrigPort "1"
ExtModeTrigElement "any"
ExtModeTrigDuration 1000
ExtModeTrigDurationFloating "auto"
ExtModeTrigHoldOff 0
ExtModeTrigDelay 0
ExtModeTrigDirection "rising"
ExtModeTrigLevel 0
ExtModeArchiveMode "off"
ExtModeAutoIncOneShot off
ExtModeIncDirWhenArm off
ExtModeAddSuffixToVar off
ExtModeWriteAllDataToWs off
ExtModeArmWhenConnect on
ExtModeSkipDownloadWhenConnect off
ExtModeLogAll on
ExtModeAutoUpdateStatusClock on
BufferReuse on
ShowModelReferenceBlockVersion off
ShowModelReferenceBlockIO off
Array {
Type "Handle"
Dimension 1
Simulink.ConfigSet {
$ObjectID 1
Version "1.10.0"
Array {
Type "Handle"
Dimension 8
Simulink.SolverCC {
$ObjectID 2
Version "1.10.0"
StartTime "0.0"
StopTime "7"
AbsTol "auto"
FixedStep "auto"
InitialStep "auto"
MaxNumMinSteps "-1"
MaxOrder 5
ZcThreshold "auto"
ConsecutiveZCsStepRelTol "10*128*eps"
MaxConsecutiveZCs "1000"
ExtrapolationOrder 4
NumberNewtonIterations 1
MaxStep "auto"
MinStep "auto"
MaxConsecutiveMinStep "1"
RelTol "1e-3"
SolverMode "Auto"
Solver "ode45"
SolverName "ode45"
SolverJacobianMethodControl "auto"
ShapePreserveControl "DisableAll"
ZeroCrossControl "UseLocalSettings"
ZeroCrossAlgorithm "Nonadaptive"
AlgebraicLoopSolver "TrustRegion"
SolverResetMethod "Fast"
PositivePriorityOrder off
AutoInsertRateTranBlk off
SampleTimeConstraint "Unconstrained"
InsertRTBMode "Whenever possible"
}
Simulink.DataIOCC {
$ObjectID 3
Version "1.10.0"
Decimation "1"
ExternalInput "[t, u]"
FinalStateName "xFinal"
InitialState "xInitial"
LimitDataPoints on
MaxDataPoints "1000"
LoadExternalInput off
LoadInitialState off
SaveFinalState off
SaveCompleteFinalSimState off
SaveFormat "Array"
SaveOutput on
SaveState off
SignalLogging on
DSMLogging on
InspectSignalLogs off
SaveTime on
ReturnWorkspaceOutputs off
StateSaveName "xout"
TimeSaveName "tout"
OutputSaveName "yout"
SignalLoggingName "logsout"
DSMLoggingName "dsmout"
OutputOption "RefineOutputTimes"
OutputTimes "[]"
ReturnWorkspaceOutputsName "out"
Refine "1"
}
Simulink.OptimizationCC {
$ObjectID 4
Version "1.10.0"
Array {
Type "Cell"
Dimension 6
Cell "PassReuseOutputArgsAs"
Cell "PassReuseOutputArgsThreshold"
Cell "ZeroExternalMemoryAtStartup"
Cell "ZeroInternalMemoryAtStartup"
Cell "OptimizeModelRefInitCode"
Cell "NoFixptDivByZeroProtection"
PropName "DisabledProps"
}
BlockReduction on
BooleanDataType on
ConditionallyExecuteInputs on
InlineParams off
UseIntDivNetSlope off
InlineInvariantSignals off
OptimizeBlockIOStorage on
BufferReuse on
EnhancedBackFolding off
StrengthReduction off
EnforceIntegerDowncast on
ExpressionFolding on
BooleansAsBitfields off
BitfieldContainerType "uint_T"
EnableMemcpy on
MemcpyThreshold 64
PassReuseOutputArgsAs "Structure reference"
ExpressionDepthLimit 2147483647
FoldNonRolledExpr on
LocalBlockOutputs on
RollThreshold 5
SystemCodeInlineAuto off
StateBitsets off
DataBitsets off
UseTempVars off
ZeroExternalMemoryAtStartup on
ZeroInternalMemoryAtStartup on
InitFltsAndDblsToZero off
NoFixptDivByZeroProtection off
EfficientFloat2IntCast off
EfficientMapNaN2IntZero on
OptimizeModelRefInitCode off
LifeSpan "inf"
MaxStackSize "Inherit from target"
BufferReusableBoundary on
SimCompilerOptimization "Off"
AccelVerboseBuild off
}
Simulink.DebuggingCC {
$ObjectID 5
Version "1.10.0"
RTPrefix "error"
ConsistencyChecking "none"
ArrayBoundsChecking "none"
SignalInfNanChecking "none"
SignalRangeChecking "none"
ReadBeforeWriteMsg "UseLocalSettings"
WriteAfterWriteMsg "UseLocalSettings"
WriteAfterReadMsg "UseLocalSettings"
AlgebraicLoopMsg "warning"
ArtificialAlgebraicLoopMsg "warning"
SaveWithDisabledLinksMsg "warning"
SaveWithParameterizedLinksMsg "none"
CheckSSInitialOutputMsg on
UnderspecifiedInitializationDetection "Classic"
MergeDetectMultiDrivingBlocksExec "none"
CheckExecutionContextPreStartOutputMsg off
CheckExecutionContextRuntimeOutputMsg off
SignalResolutionControl "UseLocalSettings"
BlockPriorityViolationMsg "warning"
MinStepSizeMsg "warning"
TimeAdjustmentMsg "none"
MaxConsecutiveZCsMsg "error"
SolverPrmCheckMsg "warning"
InheritedTsInSrcMsg "warning"
DiscreteInheritContinuousMsg "warning"
MultiTaskDSMMsg "error"
MultiTaskCondExecSysMsg "error"
MultiTaskRateTransMsg "error"
SingleTaskRateTransMsg "none"
TasksWithSamePriorityMsg "warning"
SigSpecEnsureSampleTimeMsg "warning"
CheckMatrixSingularityMsg "none"
IntegerOverflowMsg "warning"
Int32ToFloatConvMsg "warning"
ParameterDowncastMsg "error"
ParameterOverflowMsg "error"
ParameterUnderflowMsg "none"
ParameterPrecisionLossMsg "warning"
ParameterTunabilityLossMsg "warning"
FixptConstUnderflowMsg "none"
FixptConstOverflowMsg "none"
FixptConstPrecisionLossMsg "none"
UnderSpecifiedDataTypeMsg "none"
UnnecessaryDatatypeConvMsg "none"
VectorMatrixConversionMsg "none"
InvalidFcnCallConnMsg "error"
FcnCallInpInsideContextMsg "Use local settings"
SignalLabelMismatchMsg "none"
UnconnectedInputMsg "warning"
UnconnectedOutputMsg "warning"
UnconnectedLineMsg "warning"
SFcnCompatibilityMsg "none"
UniqueDataStoreMsg "none"
BusObjectLabelMismatch "warning"
RootOutportRequireBusObject "warning"
AssertControl "UseLocalSettings"
EnableOverflowDetection off
ModelReferenceIOMsg "none"
ModelReferenceVersionMismatchMessage "none"
ModelReferenceIOMismatchMessage "none"
ModelReferenceCSMismatchMessage "none"
UnknownTsInhSupMsg "warning"
ModelReferenceDataLoggingMessage "warning"
ModelReferenceSymbolNameMessage "warning"
ModelReferenceExtraNoncontSigs "error"
StateNameClashWarn "warning"
SimStateInterfaceChecksumMismatchMsg "warning"
StrictBusMsg "Warning"
BusNameAdapt "WarnAndRepair"
NonBusSignalsTreatedAsBus "none"
LoggingUnavailableSignals "error"
BlockIODiagnostic "none"
}
Simulink.HardwareCC {
$ObjectID 6
Version "1.10.0"
ProdBitPerChar 8
ProdBitPerShort 16
ProdBitPerInt 32
ProdBitPerLong 32
ProdIntDivRoundTo "Undefined"
ProdEndianess "Unspecified"
ProdWordSize 32
ProdShiftRightIntArith on
ProdHWDeviceType "32-bit Generic"
TargetBitPerChar 8
TargetBitPerShort 16
TargetBitPerInt 32
TargetBitPerLong 32
TargetShiftRightIntArith on
TargetIntDivRoundTo "Undefined"
TargetEndianess "Unspecified"
TargetWordSize 32
TargetTypeEmulationWarnSuppressLevel 0
TargetPreprocMaxBitsSint 32
TargetPreprocMaxBitsUint 32
TargetHWDeviceType "Specified"
TargetUnknown off
ProdEqTarget on
}
Simulink.ModelReferenceCC {
$ObjectID 7
Version "1.10.0"
UpdateModelReferenceTargets "IfOutOfDateOrStructuralChange"
CheckModelReferenceTargetMessage "error"
EnableParallelModelReferenceBuilds off
ParallelModelReferenceMATLABWorkerInit "None"
ModelReferenceNumInstancesAllowed "Multi"
PropagateVarSize "Infer from blocks in model"
ModelReferencePassRootInputsByReference on
ModelReferenceMinAlgLoopOccurrences off
PropagateSignalLabelsOutOfModel off
SupportModelReferenceSimTargetCustomCode off
}
Simulink.SFSimCC {
$ObjectID 8
Version "1.10.0"
SFSimEnableDebug on
SFSimOverflowDetection on
SFSimEcho on
SimBlas on
SimCtrlC on
SimExtrinsic on
SimIntegrity on
SimUseLocalCustomCode off
SimBuildMode "sf_incremental_build"
}
Simulink.RTWCC {
$BackupClass "Simulink.RTWCC"
$ObjectID 9
Version "1.10.0"
Array {
Type "Cell"
Dimension 6
Cell "IncludeHyperlinkInReport"
Cell "GenerateTraceInfo"
Cell "GenerateTraceReport"
Cell "GenerateTraceReportSl"
Cell "GenerateTraceReportSf"
Cell "GenerateTraceReportEml"
PropName "DisabledProps"
}
SystemTargetFile "grt.tlc"
GenCodeOnly off
MakeCommand "make_rtw"
GenerateMakefile on
TemplateMakefile "grt_default_tmf"
GenerateReport off
SaveLog off
RTWVerbose on
RetainRTWFile off
ProfileTLC off
TLCDebug off
TLCCoverage off
TLCAssert off
ProcessScriptMode "Default"
ConfigurationMode "Optimized"
ConfigAtBuild off
RTWUseLocalCustomCode off
RTWUseSimCustomCode off
IncludeHyperlinkInReport off
LaunchReport off
TargetLang "C"
IncludeBusHierarchyInRTWFileBlockHierarchyMap off
IncludeERTFirstTime off
GenerateTraceInfo off
GenerateTraceReport off
GenerateTraceReportSl off
GenerateTraceReportSf off
GenerateTraceReportEml off
GenerateCodeInfo off
RTWCompilerOptimization "Off"
CheckMdlBeforeBuild "Off"
CustomRebuildMode "OnUpdate"
Array {
Type "Handle"
Dimension 2
Simulink.CodeAppCC {
$ObjectID 10
Version "1.10.0"
Array {
Type "Cell"
Dimension 17
Cell "IgnoreCustomStorageClasses"
Cell "IgnoreTestpoints"
Cell "InsertBlockDesc"
Cell "SFDataObjDesc"
Cell "SimulinkDataObjDesc"
Cell "DefineNamingRule"
Cell "SignalNamingRule"
Cell "ParamNamingRule"
Cell "InlinedPrmAccess"
Cell "CustomSymbolStr"
Cell "CustomSymbolStrGlobalVar"
Cell "CustomSymbolStrType"
Cell "CustomSymbolStrField"
Cell "CustomSymbolStrFcn"
Cell "CustomSymbolStrBlkIO"
Cell "CustomSymbolStrTmpVar"
Cell "CustomSymbolStrMacro"
PropName "DisabledProps"
}
ForceParamTrailComments off
GenerateComments on
IgnoreCustomStorageClasses on
IgnoreTestpoints off
IncHierarchyInIds off
MaxIdLength 31
PreserveName off
PreserveNameWithParent off
ShowEliminatedStatement off
IncAutoGenComments off
SimulinkDataObjDesc off
SFDataObjDesc off
IncDataTypeInIds off
MangleLength 1
CustomSymbolStrGlobalVar "$R$N$M"
CustomSymbolStrType "$N$R$M"
CustomSymbolStrField "$N$M"
CustomSymbolStrFcn "$R$N$M$F"
CustomSymbolStrFcnArg "rt$I$N$M"
CustomSymbolStrBlkIO "rtb_$N$M"
CustomSymbolStrTmpVar "$N$M"
CustomSymbolStrMacro "$R$N$M"
DefineNamingRule "None"
ParamNamingRule "None"
SignalNamingRule "None"
InsertBlockDesc off
SimulinkBlockComments on
EnableCustomComments off
InlinedPrmAccess "Literals"
ReqsInCode off
UseSimReservedNames off
}
Simulink.GRTTargetCC {
$BackupClass "Simulink.TargetCC"
$ObjectID 11
Version "1.10.0"
Array {
Type "Cell"
Dimension 16
Cell "IncludeMdlTerminateFcn"
Cell "CombineOutputUpdateFcns"
Cell "SuppressErrorStatus"
Cell "ERTCustomFileBanners"
Cell "GenerateSampleERTMain"
Cell "GenerateTestInterfaces"
Cell "ModelStepFunctionPrototypeControlCompliant"
Cell "CPPClassGenCompliant"
Cell "MultiInstanceERTCode"
Cell "PurelyIntegerCode"
Cell "SupportNonFinite"
Cell "SupportComplex"
Cell "SupportAbsoluteTime"
Cell "SupportContinuousTime"
Cell "SupportNonInlinedSFcns"
Cell "PortableWordSizes"
PropName "DisabledProps"
}
TargetFcnLib "ansi_tfl_table_tmw.mat"
TargetLibSuffix ""
TargetPreCompLibLocation ""
TargetFunctionLibrary "ANSI_C"
UtilityFuncGeneration "Auto"
ERTMultiwordTypeDef "System defined"
ERTCodeCoverageTool "None"
ERTMultiwordLength 256
MultiwordLength 2048
GenerateFullHeader on
GenerateSampleERTMain off
GenerateTestInterfaces off
IsPILTarget off
ModelReferenceCompliant on
ParMdlRefBuildCompliant on
CompOptLevelCompliant on
IncludeMdlTerminateFcn on
GeneratePreprocessorConditionals "Disable all"
CombineOutputUpdateFcns off
SuppressErrorStatus off
ERTFirstTimeCompliant off
IncludeFileDelimiter "Auto"
ERTCustomFileBanners off
SupportAbsoluteTime on
LogVarNameModifier "rt_"
MatFileLogging on
MultiInstanceERTCode off
SupportNonFinite on
SupportComplex on
PurelyIntegerCode off
SupportContinuousTime on
SupportNonInlinedSFcns on
SupportVariableSizeSignals off
EnableShiftOperators on
ParenthesesLevel "Nominal"
PortableWordSizes off
ModelStepFunctionPrototypeControlCompliant off
CPPClassGenCompliant off
AutosarCompliant off
UseMalloc off
ExtMode off
ExtModeStaticAlloc off
ExtModeTesting off
ExtModeStaticAllocSize 1000000
ExtModeTransport 0
ExtModeMexFile "ext_comm"
ExtModeIntrfLevel "Level1"
RTWCAPISignals off
RTWCAPIParams off
RTWCAPIStates off
GenerateASAP2 off
}
PropName "Components"
}
}
PropName "Components"
}
Name "Configuration"
CurrentDlgPage "Solver"
ConfigPrmDlgPosition " [ 360, 285, 1240, 915 ] "
}
PropName "ConfigurationSets"
}
Simulink.ConfigSet {
$PropName "ActiveConfigurationSet"
$ObjectID 1
}
BlockDefaults {
ForegroundColor "black"
BackgroundColor "white"
DropShadow off
NamePlacement "normal"
FontName "MS UI Gothic"
FontSize 10
FontWeight "normal"
FontAngle "normal"
ShowName on
BlockRotation 0
BlockMirror off
}
AnnotationDefaults {
HorizontalAlignment "center"
VerticalAlignment "middle"
ForegroundColor "black"
BackgroundColor "white"
DropShadow off
FontName "MS UI Gothic"
FontSize 10
FontWeight "normal"
FontAngle "normal"
UseDisplayTextAsClickCallback off
}
LineDefaults {
FontName "MS UI Gothic"
FontSize 9
FontWeight "normal"
FontAngle "normal"
}
BlockParameterDefaults {
Block {
BlockType From
IconDisplay "Tag"
TagVisibility "local"
}
Block {
BlockType Goto
IconDisplay "Tag"
}
Block {
BlockType Ground
}
Block {
BlockType Inport
Port "1"
UseBusObject off
BusObject "BusObject"
BusOutputAsStruct off
PortDimensions "-1"
VarSizeSig "Inherit"
SampleTime "-1"
OutMin "[]"
OutMax "[]"
DataType "auto"
OutDataType "fixdt(1,16,0)"
OutScaling "[]"
OutDataTypeStr "Inherit: auto"
LockScale off
SignalType "auto"
SamplingMode "auto"
LatchByDelayingOutsideSignal off
LatchInputForFeedbackSignals off
Interpolate on
}
Block {
BlockType Outport
Port "1"
UseBusObject off
BusObject "BusObject"
BusOutputAsStruct off
PortDimensions "-1"
VarSizeSig "Inherit"
SampleTime "-1"
OutMin "[]"
OutMax "[]"
DataType "auto"
OutDataType "fixdt(1,16,0)"
OutScaling "[]"
OutDataTypeStr "Inherit: auto"
LockScale off
SignalType "auto"
SamplingMode "auto"
SourceOfInitialOutputValue "Dialog"
OutputWhenDisabled "held"
InitialOutput "[]"
}
Block {
BlockType RelationalOperator
Operator ">="
InputSameDT on
LogicOutDataTypeMode "Logical (see Configuration Parameters: Optimization)"
LogicDataType "uint(8)"
OutDataTypeStr "Inherit: Logical (see Configuration Parameters: Optimization)"
ZeroCross on
SampleTime "-1"
}
Block {
BlockType SubSystem
ShowPortLabels "FromPortIcon"
Permissions "ReadWrite"
PermitHierarchicalResolution "All"
TreatAsAtomicUnit off
CheckFcnCallInpInsideContextMsg off
SystemSampleTime "-1"
RTWFcnNameOpts "Auto"
RTWFileNameOpts "Auto"
RTWMemSecFuncInitTerm "Inherit from model"
RTWMemSecFuncExecute "Inherit from model"
RTWMemSecDataConstants "Inherit from model"
RTWMemSecDataInternal "Inherit from model"
RTWMemSecDataParameters "Inherit from model"
SimViewingDevice off
DataTypeOverride "UseLocalSettings"
MinMaxOverflowLogging "UseLocalSettings"
}
Block {
BlockType Switch
Criteria "u2 >= Threshold"
Threshold "0"
InputSameDT on
OutMin "[]"
OutMax "[]"
OutDataTypeMode "Inherit via internal rule"
OutDataType "fixdt(1,16,0)"
OutScaling "[]"
OutDataTypeStr "Inherit: Inherit via internal rule"
LockScale off
RndMeth "Floor"
SaturateOnIntegerOverflow on
ZeroCross on
SampleTime "-1"
AllowDiffInputSizes off
}
Block {
BlockType Terminator
}
}
System {
Name "sort_seed"
Location [248, 419, 606, 611]
Open on
ModelBrowserVisibility off
ModelBrowserWidth 200
ScreenColor "white"
PaperOrientation "landscape"
PaperPositionMode "auto"
PaperType "A4"
PaperUnits "centimeters"
TiledPaperMargins [1.270000, 1.270000, 1.270000, 1.270000]
TiledPageScale 1
ShowPageBoundaries off
ZoomFactor "100"
ReportName "simulink-default.rpt"
SIDHighWatermark 5040
Block {
BlockType Ground
Name "Ground_1"
SID 4
Position [25, 40, 35, 50]
ShowName off
}
Block {
BlockType Ground
Name "Ground_2"
SID 5
Position [25, 100, 35, 110]
ShowName off
}
Block {
BlockType Ground
Name "Ground_3"
SID 6
Position [145, 40, 155, 50]
ShowName off
}
Block {
BlockType Ground
Name "Ground_4"
SID 7
Position [145, 100, 155, 110]
ShowName off
}
Block {
BlockType Terminator
Name "Terminator_1"
SID 19
Position [130, 40, 140, 50]
ShowName off
}
Block {
BlockType Terminator
Name "Terminator_2"
SID 20
Position [130, 100, 140, 110]
ShowName off
}
Block {
BlockType Terminator
Name "Terminator_3"
SID 21
Position [250, 40, 260, 50]
ShowName off
}
Block {
BlockType Terminator
Name "Terminator_4"
SID 22
Position [250, 100, 260, 110]
ShowName off
}
Block {
BlockType SubSystem
Name "ascending"
SID 24
Ports [2, 2]
Position [50, 15, 115, 135]
MinAlgLoopOccurrences off
PropExecContextOutsideSubsystem off
RTWSystemCode "Auto"
FunctionWithSeparateData off
Opaque off
RequestExecContextInheritance off
MaskHideContents off
MaskDisplay "disp('↓')"
MaskIconFrame on
MaskIconOpaque on
MaskIconRotate "none"
MaskPortRotate "default"
MaskIconUnits "autoscale"
System {
Name "ascending"
Location [2, 74, 1590, 1153]
Open off
ModelBrowserVisibility off
ModelBrowserWidth 200
ScreenColor "white"
PaperOrientation "landscape"
PaperPositionMode "auto"
PaperType "A4"
PaperUnits "centimeters"
TiledPaperMargins [1.270000, 1.270000, 1.270000, 1.270000]
TiledPageScale 1
ShowPageBoundaries off
ZoomFactor "100"
Block {
BlockType Inport
Name "In1"
SID 25
Position [65, 148, 95, 162]
IconDisplay "Port number"
OutDataType "fixdt(1, 16)"
OutScaling "2^0"
}
Block {
BlockType Inport
Name "In2"
SID 26
Position [65, 298, 95, 312]
Port "2"
IconDisplay "Port number"
OutDataType "fixdt(1, 16)"
OutScaling "2^0"
}
Block {
BlockType From
Name "From"
SID 27
Position [235, 101, 275, 129]
GotoTag "In1"
}
Block {
BlockType From
Name "From1"
SID 28
Position [235, 181, 275, 209]
GotoTag "In2"
}
Block {
BlockType From
Name "From2"
SID 29
Position [235, 261, 275, 289]
GotoTag "In1"
}
Block {
BlockType From
Name "From3"
SID 30
Position [235, 341, 275, 369]
GotoTag "In2"
}
Block {
BlockType Goto
Name "Goto"
SID 31
Position [140, 140, 180, 170]
GotoTag "In1"
TagVisibility "local"
}
Block {
BlockType Goto
Name "Goto1"
SID 32
Position [140, 290, 180, 320]
GotoTag "In2"
TagVisibility "local"
}
Block {
BlockType RelationalOperator
Name "Less"
SID 33
Ports [2, 1]
Position [320, 133, 350, 177]
Operator "<="
InputSameDT off
LogicOutDataTypeMode "boolean"
LogicDataType "fixdt(0, 8)"
OutDataTypeStr "boolean"
}
Block {
BlockType RelationalOperator
Name "Less1"
SID 34
Ports [2, 1]
Position [320, 293, 350, 337]
Operator ">"
InputSameDT off
LogicOutDataTypeMode "boolean"
LogicDataType "fixdt(0, 8)"
OutDataTypeStr "boolean"
}
Block {
BlockType Switch
Name "Switch"
SID 35
Position [380, 93, 410, 217]
Criteria "u2 ~= 0"
InputSameDT off
SaturateOnIntegerOverflow off
}
Block {
BlockType Switch
Name "Switch1"
SID 36
Position [380, 253, 410, 377]
Criteria "u2 ~= 0"
InputSameDT off
SaturateOnIntegerOverflow off
}
Block {
BlockType Outport
Name "Out1"
SID 37
Position [470, 148, 500, 162]
IconDisplay "Port number"
}
Block {
BlockType Outport
Name "Out2"
SID 38
Position [470, 308, 500, 322]
Port "2"
IconDisplay "Port number"
}
Line {
SrcBlock "Switch"
SrcPort 1
DstBlock "Out1"
DstPort 1
}
Line {
SrcBlock "Less"
SrcPort 1
DstBlock "Switch"
DstPort 2
}
Line {
SrcBlock "In1"
SrcPort 1
DstBlock "Goto"
DstPort 1
}
Line {
SrcBlock "In2"
SrcPort 1
DstBlock "Goto1"
DstPort 1
}
Line {
SrcBlock "From"
SrcPort 1
Points [15, 0]
Branch {
DstBlock "Switch"
DstPort 1
}
Branch {
Points [0, 30]
DstBlock "Less"
DstPort 1
}
}
Line {
SrcBlock "From1"
SrcPort 1
Points [15, 0]
Branch {
DstBlock "Switch"
DstPort 3
}
Branch {
Points [0, -30]
DstBlock "Less"
DstPort 2
}
}
Line {
SrcBlock "Switch1"
SrcPort 1
DstBlock "Out2"
DstPort 1
}
Line {
SrcBlock "Less1"
SrcPort 1
DstBlock "Switch1"
DstPort 2
}
Line {
SrcBlock "From2"
SrcPort 1
Points [15, 0]
Branch {
Points [0, 30]
DstBlock "Less1"
DstPort 1
}
Branch {
DstBlock "Switch1"
DstPort 1
}
}
Line {
SrcBlock "From3"
SrcPort 1
Points [15, 0]
Branch {
Points [0, -30]
DstBlock "Less1"
DstPort 2
}
Branch {
DstBlock "Switch1"
DstPort 3
}
}
}
}
Block {
BlockType SubSystem
Name "descendigng"
SID 39
Ports [2, 2]
Position [170, 15, 235, 135]
MinAlgLoopOccurrences off
PropExecContextOutsideSubsystem off
RTWSystemCode "Auto"
FunctionWithSeparateData off
Opaque off
RequestExecContextInheritance off
MaskHideContents off
MaskDisplay "disp('↑')"
MaskIconFrame on
MaskIconOpaque on
MaskIconRotate "none"
MaskPortRotate "default"
MaskIconUnits "autoscale"
System {
Name "descendigng"
Location [2, 74, 1590, 1153]
Open off
ModelBrowserVisibility off
ModelBrowserWidth 200
ScreenColor "white"
PaperOrientation "landscape"
PaperPositionMode "auto"
PaperType "A4"
PaperUnits "centimeters"
TiledPaperMargins [1.270000, 1.270000, 1.270000, 1.270000]
TiledPageScale 1
ShowPageBoundaries off
ZoomFactor "100"
Block {
BlockType Inport
Name "In1"
SID 40
Position [65, 148, 95, 162]
IconDisplay "Port number"
OutDataType "fixdt(1, 16)"
OutScaling "2^0"
}
Block {
BlockType Inport
Name "In2"
SID 41
Position [65, 298, 95, 312]
Port "2"
IconDisplay "Port number"
OutDataType "fixdt(1, 16)"
OutScaling "2^0"
}
Block {
BlockType From
Name "From"
SID 42
Position [235, 101, 275, 129]
GotoTag "In1"
}
Block {
BlockType From
Name "From1"
SID 43
Position [235, 181, 275, 209]
GotoTag "In2"
}
Block {
BlockType From
Name "From2"
SID 44
Position [235, 261, 275, 289]
GotoTag "In1"
}
Block {
BlockType From
Name "From3"
SID 45
Position [235, 341, 275, 369]
GotoTag "In2"
}
Block {
BlockType Goto
Name "Goto"
SID 46
Position [140, 140, 180, 170]
GotoTag "In1"
TagVisibility "local"
}
Block {
BlockType Goto
Name "Goto1"
SID 47
Position [140, 290, 180, 320]
GotoTag "In2"
TagVisibility "local"
}
Block {
BlockType RelationalOperator
Name "Less"
SID 48
Ports [2, 1]
Position [320, 133, 350, 177]
Operator ">"
InputSameDT off
LogicOutDataTypeMode "boolean"
LogicDataType "fixdt(0, 8)"
OutDataTypeStr "boolean"
}
Block {
BlockType RelationalOperator
Name "Less1"
SID 49
Ports [2, 1]
Position [320, 293, 350, 337]
Operator "<="
InputSameDT off
LogicOutDataTypeMode "boolean"
LogicDataType "fixdt(0, 8)"
OutDataTypeStr "boolean"
}
Block {
BlockType Switch
Name "Switch"
SID 50
Position [380, 93, 410, 217]
Criteria "u2 ~= 0"
InputSameDT off
SaturateOnIntegerOverflow off
}
Block {
BlockType Switch
Name "Switch1"
SID 51
Position [380, 253, 410, 377]
Criteria "u2 ~= 0"
InputSameDT off
SaturateOnIntegerOverflow off
}
Block {
BlockType Outport
Name "Out1"
SID 52
Position [470, 148, 500, 162]
IconDisplay "Port number"
}
Block {
BlockType Outport
Name "Out2"
SID 53
Position [470, 308, 500, 322]
Port "2"
IconDisplay "Port number"
}
Line {
SrcBlock "From3"
SrcPort 1
Points [15, 0]
Branch {
DstBlock "Switch1"
DstPort 3
}
Branch {
Points [0, -30]
DstBlock "Less1"
DstPort 2
}
}
Line {
SrcBlock "From2"
SrcPort 1
Points [15, 0]
Branch {
DstBlock "Switch1"
DstPort 1
}
Branch {
Points [0, 30]
DstBlock "Less1"
DstPort 1
}
}
Line {
SrcBlock "Less1"
SrcPort 1
DstBlock "Switch1"
DstPort 2
}
Line {
SrcBlock "Switch1"
SrcPort 1
DstBlock "Out2"
DstPort 1
}
Line {
SrcBlock "From1"
SrcPort 1
Points [15, 0]
Branch {
Points [0, -30]
DstBlock "Less"
DstPort 2
}
Branch {
DstBlock "Switch"
DstPort 3
}
}
Line {
SrcBlock "From"
SrcPort 1
Points [15, 0]
Branch {
Points [0, 30]
DstBlock "Less"
DstPort 1
}
Branch {
DstBlock "Switch"
DstPort 1
}
}
Line {
SrcBlock "In2"
SrcPort 1
DstBlock "Goto1"
DstPort 1
}
Line {
SrcBlock "In1"
SrcPort 1
DstBlock "Goto"
DstPort 1
}
Line {
SrcBlock "Less"
SrcPort 1
DstBlock "Switch"
DstPort 2
}
Line {
SrcBlock "Switch"
SrcPort 1
DstBlock "Out1"
DstPort 1
}
}
}
Line {
SrcBlock "Ground_1"
SrcPort 1
DstBlock "ascending"
DstPort 1
}
Line {
SrcBlock "Ground_2"
SrcPort 1
DstBlock "ascending"
DstPort 2
}
Line {
SrcBlock "ascending"
SrcPort 1
DstBlock "Terminator_1"
DstPort 1
}
Line {
SrcBlock "ascending"
SrcPort 2
DstBlock "Terminator_2"
DstPort 1
}
Line {
SrcBlock "Ground_3"
SrcPort 1
DstBlock "descendigng"
DstPort 1
}
Line {
SrcBlock "Ground_4"
SrcPort 1
DstBlock "descendigng"
DstPort 2
}
Line {
SrcBlock "descendigng"
SrcPort 1
DstBlock "Terminator_3"
DstPort 1
}
Line {
SrcBlock "descendigng"
SrcPort 2
DstBlock "Terminator_4"
DstPort 1
}
}
}
This file has been truncated, but you can view the full file.
P1
1655 2283
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000011111111111111
1111111000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000111111111111111111111000000000000000000
0000000000000000000000000000011000000000000000000000110000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000110000000000000000000001100000000000000000000000000000000000000000
0001000000000000000000000000010000000000000000000000000000000000000000
0000000000000000111111111111111111111111111111111111111111111111111111
1111111111110000000000000000000000000000000000111111111111111111111111
1111111111111111111111111111111111111111110000000000000000000000000000
0000001111111111111111111111111111111111111111111111111111111111111111
1100000000000000000000000000000000001111111111111111111111111111111111
1111111111111111111111111111111100000000000000000000000000000000001111
1111111111111111111111111111111111111111111111111111111111111100000000
0000000000000000000000000011111111111111111111111111111111111111111111
1111111111111111111111000000000000000000000000000000000011111111111111
1111111111111111111111111111111111111111111111111111000000000000000000
0000000000000000111111111111111111111111111111111111111111111111111111
1111111111110000000000000000000000000000000000111111111111111111111111
1111111111111111111111111111111111111111110000000000000000000000000000
0000001111111111111111111111111111111111111111111111111111111111111111
1100000000000000000000000000000000001111111111111111111111111111111111
1111111111111111111111111111111100000000000000000000000000000000001111
1111111111111111111111111111111111111111111111111111111111111100000000
0000000000000000000000000011111111111111111111111111111111111111111111
1111111111111111111111000000000000000000000000000000000011111111111111
1111111111111111111111111111111111111111111111111111000000000000000000
0000000000000000111111111111111111111111111111111111111111111111111111
1111111111110000000000000000000000011000000000001000000000000000000000
0000100000000000000000000000000000000000000000010000000000010000000000
0000010000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111100000000100000000000100000000000000010000000000000000000
0000000000000000000000100000000001100000000000000010000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111111000000100
0000000011000000000000000100000000000000000000000000000000000000001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001111111100010000000000001000000000000000
0100000000000000000000000000000000000000010000000000001000000000000000
1111110000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
1111111111111110100000000000010000000000000000100000000000000000000000
0000000000000000100000000000010000000000000000100001100000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000010000011111111000100000000
0000100000000000000001000000000000000000000000000000000000000100000000
0000100000000000000001000000100000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000100000111111000001000000000000100000000000000001000
0000000000000000000000000000000000001000000000000100000000000000001000
0000100000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000001000000
1111000000010000000000001000000000000000010000000000000000000000000000
0000000000001000000000000000000000000000100000000011000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000010000001100000000001000000000000
0000000000000001000000000000000000000000000000000000000001000000000000
0000000000000001000000000001000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000001000000000000000000010000000000000000000000000001000000000
0000000000000000000000000000000001000000000000000000000000010000000000
0001100000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000010000000000000
0000000010000000000000000000000000100000000000000000000000000000000000
0000000001100000000000000000000011000000000000000010000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000100000000000000000000001100000000000000
0000000110000000000000000000000000000000000000000000000011111111111111
1111111000000000000000000010000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000010000000000000000000000000111111111111111111111000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0011000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000010000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000100000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000001000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000001000000010000000
0000000000000000000000000110000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000010
0000000000000000000000000011110000000010001000000000000000000000000000
0000000000000000000000000000010000001100000000000000000000000000000000
0010000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000100000000000000000000000000
1000010000000100110000000000000000000000000000000000000000000000000000
0000101110001000000000000000000000000000000000001000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000010000000000000000000000000001000010100101110010000000
0000000000000000000000000000000000000000000000000101001001000000000000
0000000000000000000000001100000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000010000000
0000000000000000000010000101001001000100000000000000000000000000000000
0000000000000000000000001010010010000000000000000000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001000000000000000000000000000010000
1010010010001000000000000000000000000000000000000000000000000000000001
0100100100000000000000000000000000000000000000011000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100000000000000000000000000000100001010010010001000000000000
0000000000000000000000000000000000000000000010100100100000000000000000
0000000000000000000000001000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000100000000000000
0000000000000000111100011100010010000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
1000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000110000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000010000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000001
1000000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000100000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000100000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000011
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000001111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111000000000
0000011111111111111101000000000000000000000000000000000000000000000000
0000000000000001111110000000000000011111111111111101000000000000000000
0000000000000000000000000000000000000000000001111110000000000000011111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111111111111111111111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111111111111111111111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1000000000000001111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111000000000000001111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111000000000
0000011111111111111101000000000000000000000000000000000000000000000000
0000000000000001111110000000000000011111111111111101000000000000000000
0000000000000000000000000000000000000000000001111110000000000000011111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111111111111111111111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111111111111111111111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1111111111111111111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111111111111111111111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100010000000000000010000111111110001000
0000000000000000000000000000000000000000000000000000000000000100010000
0000000000100001111111100010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010001000000000000001000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100010000000000000010000111111110001000000000000000000000000000000000
0000000000000000000000000000000100010000000000000010000111111110001000
0000000000000000000000000000000000000000000000000000000000000100010000
0000000000100001111111100010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000000100001111110000010000000000000000000000000000
0000000000000000000000000000000000001000100000000000000100001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000010000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000000010000111111000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000010000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000000100001111110000010000000000000000000000000000
0000000000000000000000000000000000001000100000000000000100001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000010000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000000
1000011110000000100000000000000000000000000000000000000000000000000000
0000000000010001000000000000001000011110000000100000000000000000000000
0000000000000000000000000000000000000000010001000000000000010000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000000100001111000000010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100001111000000010000000000000
0000000000000000000000000000000000000000000000000001000100000000000000
1000011110000000100000000000000000000000000000000000000000000000000000
0000000000010001000000000000001000011110000000100000000000000000000000
0000000000000000000000000000000000000000010001000000000000010000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000001000011000000000100000000
0000000000000000000000000000000000000000000000000000000010001000000000
0000010000110000000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000000100000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000000100001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000001000011000000000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000001000011000000000100000000
0000000000000000000000000000000000000000000000000000000010001000000000
0000010000110000000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000000100000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010000000000000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001000000000000001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000000000000010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010000000000000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000000010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010000
0000000000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000000100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100000000000000100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000001000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000000000000001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001000000000000001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000001000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001000000000
0000010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000000010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010000000000000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000000010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000000100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100000000000000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000000001000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000001000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000000001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000000000000010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000000000010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000000000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000001000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000001000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000010000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000010000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000100000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000010000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000010000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000010000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000001000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000100000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000100000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000100000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000000100000010000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000001000010000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000000010000000100000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000010000000000001000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000001000010000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000000000100000100000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000010000100000000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000000000010000001000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000010000100000000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000100
0001000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000010000100000000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000000100000010000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000010000100000000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000011111111111111111111100000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000000001000001000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000000010001000000000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000000000100000010000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000001000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000000010001000000000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0111111111111111111111000000000000000000000000000000000000000000000001
1000000000000000000000110000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000000010000100000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000001000000000100000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000100100000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000000001000000100000000000000001000000000000000000
0000000000010000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000010000000000010000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000001000000000100000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000100100000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000011000000000000000000000110
0000000000000000000000000000000000000000000100000000000000000000000001
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000000000001000100
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000000100100000000000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000000
0001000001000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000000100100000000000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000011000000000001000000000000000000000000010000000000000000000000000
0000000000000000010000000000011000000000000001000000000000000000000000
0000000000000000000000000000000100000000000000000000000000010101000000
0000000000000000000000000010000000000010001000000000000000000100000000
0000000000000000000101010000000000000000000000000000000010000001000000
0010000000000000000001000000000000000000000000000101010000000000000000
0000000000000000100000001001000000000000000000000001000000000000000000
0000000001010100000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000001010100000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000001
0101000000000000000000000000000000001000000000001000001000000000000000
0100000000000000000000000000010101000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000010101000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000101010000000000000000000000000000000010000001000000
0010000000000000000001000000000000000000000000000101010000000000000000
0000000000000000100000001001000000000000000000000001000000000000000000
0000000001010100000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000001010100000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000001
0101000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000010101000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000010101000000
0000000000000000000000000010000000000000000000000011110000000010000000
0000110000000000000010000000000000000000000000000000000000000010000000
0001001000000000000010000000000000000000000000000000000000000000000000
0000001000000000000000000000000000011100000000000000000000000000000000
0100000000000100010000000000000000001000000000000000000000000000011100
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000111000000000000000000000000000000000100000001
0010000000000000000000000010000000000000000000000000000111000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000001110000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000001110000000000000000000000
0000000000010000000000010000010000000000000000100000000000000000000000
0000011100000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000011100000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000011100
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000111000000000000000000000000000000000100000001
0010000000000000000000000010000000000000000000000000000111000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000001110000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000001110000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000011100000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000011100000000000000000000000000000000
0100000000000000000000000111111000000100000000001001000000000000010000
0000000000000000000000000000000000001000000000001001000000000000001000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000000000100010000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000100000000100000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000010100000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000010
0000100000000000000001000000000000000000000000000001000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000100000000100000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000010100000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
1111111100010000000000010010000000000000010000000000000000000000000000
0000000000010000000000000010000000000000111111000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000100100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000101000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000010000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000101000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000111111111111111010000000000000
0100000000000000100000000000000000000000000000000000000010000000000000
1000000000000000100001100000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000001001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000000001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000101000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000100001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000000001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000101000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000010000011111111000100000000000001000000000000000100000000
0000000000000000000000000000000100000000000010000000000000000100000010
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000001001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000110000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000100001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000110000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000010000011111
1000001000000000000100000000000000001000000000000000000000000000000000
0000001000000000000111000000000000001000000010000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000010010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000001000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000001000000111100000001000000000000111000
0000000000010000000000000000000000000000000000000000100000000000000000
0000000000100000000011000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000010100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000001000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000010000001100000000001000000000000000000000000000100000000000000
0000000000000000000000000001000000000000000000000000000100000000000100
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000010100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000010000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000001000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000010000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000100000000000000000
0010000000000000000000000000001000000000000000000000000000000000000000
0001000000000000000000000000010000000000000110000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000101000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000010001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000010000000000000000000001000000000000000000000
0000100000000000000000000000000000000000000000000110000000000000000000
0011000000000000000010000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
1100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001100000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000100010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001100000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0100000000000000000000001100000000000000000000011000000000000000000000
0000000000000000000000000011111111111111111111100000000000000000001000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000011000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000010010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000011000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000001000000000000000000000000
0111111111111111111111000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000001100000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000110000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000100100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000110000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000010000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000100000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000101000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000001001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000101000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000100000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000001000000011000000000000000000000000000000011000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010010000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000001001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010010000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000010000000000000000000000000001111
0000000010001100000000000000000000000000000000000000000000000000000001
0000001001000000000000000000000000000000001000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000110000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0100000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000001010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0100000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000100000000000000000000000000100001000000010010010000000000
0000000000000000000000000000000000000000000010111001001000000000000000
0000000000000000001000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000110000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100100000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0010100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100100000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000001000000000000
0000000000000001000010100101110100100000000000000000000000000000000000
0000000000000000000101001000010000000000000000000000000000000000110000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000001100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001001000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000010100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001001000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000010000000000000000000000000001000010100
1001000001000000000000000000000000000000000000000000000000000000101001
0001000000000000000000000000000000000000010000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000011000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010001000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000101000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010001000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001000000000000000000000000000010000101001001000010000000000000000
0000000000000000000000000000000000000001010010010000000000000000000000
0000000000000000011000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000010100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100010000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000011
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100010000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000000000000000000
0000000000100001010010010001000000000000000000000000000000000000000000
0000000000000010100100111000000000000000000000000000000000000000100000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000101000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000100000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000110000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000100000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100000000000000000000000000000011110001110001
0011100000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000100000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000001010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000010000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000001100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000010000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000110000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000010010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000100000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000100000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000100000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000100000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000001000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000100010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000001000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000011000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000001000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000001100000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
1000100000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100001000000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100001000001000000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000110000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0010000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100001000000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100001000001000000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000100000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000000001000100000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000010000010000000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000110000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000010000010000000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000010000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000000000010001000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000001000010000000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000100000000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000001100000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000001000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000100000000100000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000001000010000000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000100000000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000011000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000000000010000
1000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000010000100000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010001000000100000000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000010100001111111100010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000100000000100
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000010000100000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010001000000100000000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000001111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111000000000100001111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111111111111
1111111111111111111101000000000000000000000000000000000000000000000000
0000000000000001111110000001000000011111111111111101000000000000000000
0000000000000000000000000000000000000000000001111110000000000000011111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111100000000000000111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111100000000000010111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1111111111111111111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111111111111111111111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111111111111
1111111111111111111101000000000000000000000000000000000000000000000000
0000000000000001111110000001000000011111111111111101000000000000000000
0000000000000000000000000000000000000000000001111110000000000000011111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111100000000000000111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111100000000000000111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1000000000000001111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100010000000001000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000000
0001000000100001111111100010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100001111111100010000000000000
0000000000000000000000000000000000000000000000000001000100000000000000
1000011111111000100000000000000000000000000000000000000000000000000000
0000000000010001000000000000100000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000010000000010000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000000
0001000000100001111111100010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100001111111100010000000000000
0000000000000000000000000000000000000000000000000001000100000000000000
1000011111111000100000000000000000000000000000000000000000000000000000
0000000000010001000000000000001000011111111000100000000000000000000000
0000000000000000000000000000000000000000010001000000000000001000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100010000000001000000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000001000010000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000000001000000100001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000001000011111100000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000010000011111100000100000000
0000000000000000000000000000000000000000000000000000000010001000000000
0001000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000001000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000010000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000001000010000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000000001000000100001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000001000011111100000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000001000011111100000100000000
0000000000000000000000000000000000000000000000000000000010001000000000
0000010000111111000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000000100000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000100000000010000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000010000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000000010000001000011110000000100000000000000000000000
0000000000000000000000000000000000000000010001000000000000001000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000111100000001000000000000000000000000000000000
0000000000000000000000000000000100010000000000001000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000100000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000010000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000000010000001000011110000000100000000000000000000000
0000000000000000000000000000000000000000010001000000000000001000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000000000000010000111100000001000000000000000000000000000000000
0000000000000000000000000000000100010000000000000010000111100000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000100000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000000010000100000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000010
0000010000110000000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000000010000110000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000010000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000001000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000000010000100000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000010
0000010000110000000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000000010000110000000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000010000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000000100001100000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000100000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010000
0000000000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000100000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010000
0000000000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100000000000000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000100010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000001000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000100010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000001000000100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100000000000000100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000001000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000001000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000001000000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000000000000001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001000000000000001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000010000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000010000001000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001000000000
0000010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000000010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000010000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000010000010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010000000000000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010000
0000000000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000010000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000010000010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000000100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100000000000000100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000100001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000100000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100000000000000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000000000000001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000001000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000001000001000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000001000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001000000000
0000010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000001000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000001000001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000000000000010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010000000000000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000010000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000010000010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000100001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000100000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000100100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000100001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000100100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000100000100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000001000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000100010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000100001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001000000000000001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000010000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001010000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
1001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000001000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001010000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
1000010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000000010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000010000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000010000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000001100000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000001001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000001000010000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000001100000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000001000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010000
0000000000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000100000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000100000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000001100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000010010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010000100000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000001100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000010000100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100000000000000100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000010000
1000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0001000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000010010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000010000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000000000000001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100001000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000110000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000100100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000110000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000100001000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001000000000
0000010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000010000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000001001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000001000010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010000000000000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000010
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000001100000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000001001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000001100000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000001000010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000000100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0011000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000001010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0011000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000001000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100000000000000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100001000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000011000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000010100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001010
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000011000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000010001000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000001000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100001000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000110000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000010100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000110000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000010001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000000000000010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000010000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000110
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000101000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000011000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000110
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000100010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000110000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000001111
1111111111111111100000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000100000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000001010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000011000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000001000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000011111111111111111111100000000
0000000000000000000000000000000000000001100000000000000000000011000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001001000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000010000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000001100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000100000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000001000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000010000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000001001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000001000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000011000000000000000000000110000000000000000000000000000000
0000000000000100000000000000000000000001000000000000000000000000000000
0000000000000000000000000011111111111111111111111111111111111111111111
1111111111111111111111000000010010000000000000000000000011111111111111
1111111111111111111111111111111111111111111111111111000000000011000000
0000000000000000111111111111111111111111111111111111111111111111111111
1111111111110000000000000011000000000000000000111111111111111111111111
1111111111111111111111111111111111111111110000001000000001000000000000
0000001111111111111111111111111111111111111111111111111111111111111111
1100000000001100000000000000000000001111111111111111111111111111111111
1111111111111111111111111111111100000001000000010000000000000000001111
1111111111111111111111111111111111111111111111111111111111111100000010
0000000100000000000000000011111111111111111111111111111111111111111111
1111111111111111111111000000001000010000000000000000000011111111111111
1111111111111111111111111111111111111111111111111111000000000011000000
0000000000000000111111111111111111111111111111111111111111111111111111
1111111111110000000000000010010000000000000000111111111111111111111111
1111111111111111111111111111111111111111110000100000000000010000000000
0000001111111111111111111111111111111111111111111111111111111111111111
1100001000000000000100000000000000001111111111111111111111111111111111
1111111111111111111111111111111100000010000000010000000000000000001111
1111111111111111111111111111111111111111111111111111111111111100000000
0011000000000000000000000011111111111111111111111111111111111111111111
1111111111111111111111000000000000000000000001100000000000100000000000
0000000000000010000000000000000000000000000000000000000001000000000001
1000000000000001000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100100000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000110000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0110000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000001100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010000100000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000110000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0100100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000011000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011110000000010000000000011000000000000001000000000
0000000000000000000000000000000010000000000100100000000000001000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100100000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000001100000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000001100000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000010100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000110000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011111
1000000100000000001001000000000000010000000000000000000000000000000000
0000001000000000000001000000000000001000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000001000000
0000000000000000100000001001000000000000000000000001000000000000000000
0000000000000000000001000111100000000000000000100000000001100000000000
0000000000010000000000000000000000000000000000000001100011000000000000
0000001000000000000000100000000000000000010000000000000000000000000000
0000000000000100110000000000000000001000000100000000100000000000000000
0100000000000000000000000000000000000000011101111000000000000000001000
0000001010000000000000000000000100000000000000000000000000000000000000
0110001000000000000000000010000000100000001000000000000000000100000000
0000000000000000000000000000000110011110000000000000000010000001000000
0010000000000000000001000000000000000000000000000000000000100001000011
0000000000000000100000000100001000000000000000000001000000000000000000
0000000000000000001000011000110000000000000000100000000001100000000000
0000000000010000000000000000000000000000000000001000000101111000000000
0000001000000000000000101000000000000000010000000000000000000000000000
0000000010000111001000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000010001111011110000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000010
0001100011000000000000000010000001000000001000000000000000000100000000
0000000000000000000000000000110001110011000000000000000010000000001010
0000000000000000000001000000000000000000000000000000000000110001100111
1000000000000000100000000000000000000000111111110001000000000000001000
0000000000010000000000000000000000000000000000000001000000000000010000
0000000000111111000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000110000000000000000000000100000001
0010000000000000000000000010000000000000000000000000000000000000011000
0001000000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000000100101001000000000000000001000000000000000100
0000000000000000100000000000000000000000000000000000000001101001000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000001000010000000000000000000010000000001001000000000000000
0000001000000000000000000000000000000000000001001011000000000000000000
0100000001000000010000000000000000001000000000000000000000000000000000
0000010010000100000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000011000110001001000000000000000100000000
1000010000000000000000000010000000000000000000000000000000000011000100
1010010000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000110000011010000000000000000001000000000000000101
0000000000000000100000000000000000000000000000000000110001000011000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000001100000010000100000000000000010000100000000000010000000000
0000001000000000000000000000000000000000001100010010100100000000000000
0100000010000000010000000000000000001000000000000000000000000000000000
0010010100011001000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000010010100101000000000000000000100000000
0000000000111111111111111010000000000000100000000000000010000000000000
0000000000000000000000000010000000000000010000000000000010001000000000
0000000000000000000000000000000000000000010000000000000000111001110111
1110111000000100000000000000000000001000000010010000000000000000000000
0100000000000000111001110111111011100000010000010000000000000000001000
0000000110000000000000000000000100000000000000111001110111111011100000
0001000010000000000000000010000000000000001000000000000000000100000000
0000001110011101111110111000000101010010000000000000000010000001000000
0010000000000000000001000000000000001110011101111110111000001110011100
0000000000000000100000000010010000000000000000000001000000000000001110
0111011111101110000010010010000000000000000000100000001000000010000000
0000000000010000000000000011100111011111101110000010010001000000000000
0000001000000100000000100000000000000000010000000000011100111011111101
1100000010000100000010000000000000001000000001000010000000000000000000
0100000000000111001110111111011100000010001001010010000000000000001000
0000000110000000000000000000000100000000000111001110111111011100000010
0001010111000000000000000010000000000000001010000000000000000100000000
0001110011101111110111000000100011100010000000000000000010000100000000
0000100000000000000001000000000001110011101111110111000000100000100001
0000000000000000100001000000000000100000000000000001000000000001110011
1011111101110000001000100100001000000000000000100000010000000010000000
0000000000010000000000011100111011111101110000010010100011001000000000
0000001000000000100100000000000000000000010000000000011100111011111101
1100000100101001011100000000000000001000000000000000001000001111111100
0100000000000000100000000000000100000000000000000000000000000000000000
0100000000000100100000000000000100001000000000000000000000000000000000
0000000000000000100000000000000010001100011001001100100000100000000000
0000000000010000000010100000000000000000000000100000000000001000110001
1001001100100000100000100000000000000000010000000000110000000000000000
0000001000000000000010001100011001001100100000010000100000000000000000
0100000000000000010000000000000000001000000000000010001100011001001100
1000010010011100000000000000000100000010000000010000000000000000001000
0000000000100011000110010011001000010010100100000000000000000100000000
0100100000000000000000000010000000000000100011000110010011001000001100
0100000000000000000001000000001000000100000000000000000010000000000000
1000110001100100110010000011100010000000000000000001000000100000000100
0000000000000000100000000001000110001100100110010000010000100000100000
0000000000010000000010000100000000000000000000100000000001000110001100
1001100100000100000010011100000000000000010000000000110000000000000000
0000001000000000010001100011001001100100000100010010100100000000000000
0100000000000000010100000000000000001000000000010001100011001001100100
0001000100100100000000000000000100001000000000000100000000000000001000
0000000100011000110010011001000001000001000010000000000000000100001000
0000000001000000000000000010000000000100011000110010011001000001000011
1000100000000000000001000000100000000100000000000000000010000000000100
0110001100100110010000000101000101110000000000000001000000000100100000
0000000000000000100000000001000110001100100110010000000100001010010000
0000000000010000000000000000010000011111100000100000000000100100000000
0000001000000000000000000000000000000000000000100000000000011000000000
0000001000010000000000000000000000000000000000000000000000000100000000
0000000100001000110010011001000001000000000000000000000010000000010100
0000000000000000000001000000000000010000100011001001100100000100000100
0000000000000000100000000001100000000000000000000001000000000000010000
1000110010011001000000010000100000000000000000100000000000000010000000
0000000000010000000000000100001000110010011001000011111000100000000000
0000001000000100000000100000000000000000010000000000000100001000110010
0110010000100100001000000000000000001000000001000100000000000000000000
0100000000000001000010001100100110010000100100100000000000000000001000
0000010000001000000000000000000100000000000001000010001100100110010000
0001000100000000000000000010000001000000001000000000000000000100000000
0010000100011001001100100000100001000000100000000000000010000000010000
1000000000000000000001000000000010000100011001001100100000100000100000
1000000000000000100000000001100000000000000000000001000000000010000100
0110010011001000001000111110001000000000000000100000000000000010100000
0000000000010000000000100001000110010011001000001000100100100000000000
0000001000010000000000001000000000000000010000000000100001000110010011
0010000010000010000100000000000000001000010000000000001000000000000000
0100000000001000010001100100110010000010000001000010000000000000001000
0001000000001000000000000000000100000000001000010001100100110010000001
0010001000100000000000000010000000010001000000000000000000000100000000
0010000100011001001100100000010000100000100000000000000010000000000000
0001000000111100000001000000000000110000000000000001000000000000000000
0000000000000000000000100000000000000000000000000010000001000000000000
0000000000000000000000000000000000001000000000000000100011000110010011
0010000010000000000000000000000100000000101000000000000000000000001000
0000000000100011000110010011001000001000010000000000000000000100000000
0011000000000000000000000010000000000000100011000110010011001000010010
1001000000000000000001000000000000000100000000000000000010000000000000
1000110001100100110010000000101001000000000000000001000000100000000100
0000000000000000100000000000001000110001100100110010000100101001000000
0000000000010000000010000100000000000000000000100000000000001000110001
1001001100100001001001000000000000000000010000000010000001000000000000
0000001000000000000010001100011001001100100001001001000000000000000000
0100000010000000010000000000000000001000000000010001100011001001100100
0001000010001001000000000000000100000000100001000000000000000000001000
0000000100011000110010011001000001000010001001000000000000000100000000
0011000000000000000000000010000000000100011000110010011001000001000000
1010010000000000000001000000000000000101000000000000000010000000000100
0110001100100110010000010001001001000000000000000001000010000000000001
0000000000000000100000000001000110001100100110010000010000100001000000
0000000000010000100000000000010000000000000000100000000001000110001100
1001100100000100010010100100000000000000010000001000000001000000000000
0000001000000000010001100011001001100100000100010001100100000000000000
0100000000100001000000000000000000001000000000010001100011001001100100
0001000010001001000000000000000100000000000000001000000110000000000100
0000000000000000000000000100000000000000000000000000000000000000000100
0000000000000000000000000100000010000000000000000000000000000000000000
0000000000010000000000000000111001110100100111100000010000000000000000
0000001000000001010000000000000000000000010000000000000011100111010010
0111100000010000100000000000000000001000000000011000000000000000000000
0100000000000000111001110100100111100000011000110000000000000000001000
0000000000001000000000000000000100000000000000111001110100100111100000
0001001100000000000000000010000001000000001000000000000000000100000000
0000001110011101001001111000000110001100000000000000000010000000010000
1000000000000000000001000000000000001110011101001001111000000110001000
0000000000000000100000000100000010000000000000000001000000000000001110
0111010010011110000001100010000000000000000000100000010000000010000000
0000000000010000000000011100111010010011110000001000010000110000000000
0000001000000001000010000000000000000000010000000000011100111010010011
1100000010000111001100000000000000001000000000011000000000000000000000
0100000000000111001110100100111100000010000001001100000000000000001000
0000000000001010000000000000000100000000000111001110100100111100000010
0001100010000000000000000010000100000000000010000000000000000100000000
0001110011101001001111000000100001000010000000000000000010000100000000
0000100000000000000001000000000001110011101001001111000000100001100011
0000000000000000100000010000000010000000000000000001000000000001110011
1010010011110000001110011100110000000000000000100000000100001000000000
0000000000010000000000011100111010010011110000001110011100110000000000
0000001000000000000000100000000000000000001000000000000000000000000000
1000000000000000000000000000000000000000000100000000000000000000000001
0000000100000000000000000000000000000000000000000000000010000000000000
0000000000000000000100001110000000000000000000000001000000001010000000
0000000000000000100000000000000000000000000000010000111000000000000000
0000000000010000000000110000000000000000000000100000000000000000000000
0000000100001110000000000000000000000000010000000000000001100000000000
0000001000000000000000000000000000000100001110000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000000100
0011100000000000000000000000000100000000100001000000000000000000001000
0000000000000000000000000001000011100000000000000000000000000100000000
1000000100000000000000000010000000000000000000000000000001000011100000
0000000000000000000001000000100000000100000000000000000010000000000000
0000000000000010000111000000000000000000000000000001000000001000010000
0000000000000000100000000000000000000000000010000111000000000000000000
0000000000010000000000110000000000000000000000100000000000000000000000
0000100001110000000000000000000000000000010000000000000000110000000000
0000001000000000000000000000000000100001110000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000100001
1100000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000001000011100000000000000000000000000000100000010
0000000100000000000000000010000000000000000000000000001000011100000000
0000000000000000000001000000001000010000000000000000000010000000000000
0000000000000010000111000000000000000000000000000001000000000000001000
0000000000000000001000000000000000000000000010000000000000000000000000
0000000000000000000110000000000000000000001100000000010000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000011000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001010
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000101000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000010000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000010000100000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001010
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000001100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000100000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000010000000000000000000000110000
0000000000000000011000000000000000000000000000000000000000000000001111
1111111111111111100000000000100000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000110000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000001010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000011000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000001000000000000000000000000011111111111111111111100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000100000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000110000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000100100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000001010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000010000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000100001000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000100100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000011000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000001000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000100000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000010100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000001000010000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000110000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000100000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000100000
0011000000000000000000000100000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0101000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000100000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010000100000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0001100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000010000000000000000000000000001111000000001000110000000000000000
0000000000000000000000000000000000000001000000100100000000000000000000
1000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000101000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000001100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000010000000000000000
0000000000100001000000010010010000000000000000000000000000000000000000
0000000000000010111000001000000000000000000001000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000001010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001000001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100001000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000011000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000001000000000000000000000000000100001010010111
0000100000000000000000000000000000000000000000000000000000010100100010
0000000000000000000001000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000001001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0010000000000000000000000000001000010100100100001000000000000000000000
0000000000000000000000000000000000101001000010000000000000000000001000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000010010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010000010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100000000000000000000000
0000010000101001001000001000000000000000000000000000000000000000000000
0000000001010010100100000000000000000000001000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000100100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000000000000000000000000000010000101001001001001
0000000000000000000000000000000000000000000000000000001010010011000000
0000000000000000010000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000100100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000000001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000010000
0000000000000000000000000011110001110001001100000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000010000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000011000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000001001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000100001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000010000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001010000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000100010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000100000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000001000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000100100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000001000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000100000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000001010000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000100000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000100010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0010000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000100000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000010000000000
0000000000000000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000000010100000000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000010000
1000000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000001000100000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000000100001000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000001000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000010000100000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000001000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001001000000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000010000
1000000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000100000110000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000010000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000010000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000100000000000000000000000000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000101000000000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000010000100001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000001000010000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000000100001000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000001100001111000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000100000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000001000000000000000000000000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000000101000000000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000001000010000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000000000010000100001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010000100000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000010000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000100
0010000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000010000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000000010010000000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000001000010000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000001100001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000010000
1000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000000100000111111000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000100000000000000
0000000000000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000001010000000000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000001000010000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000000000100001000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100010000000000000010000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000001000010000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000100000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000001000010000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000011000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100010000
0000000000100001111111100010000000000000000000000000000000000000000000
0000000000000000000001000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000001000000000000000000000000111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1111111111111111111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111111111111111111111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111000000000
1000011111111111111101000000000000000000000000000000000000000000000000
0000000000000001111111111111111111111111111111111101000000000000000000
0000000000000000000000000000000000000000000001111110000000000000011111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111100000010000100111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111100100000000100111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1000001001000001111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111111111111111111111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111000000000
0000111111111111111101000000000000000000000000000000000000000000000000
0000000000000001111111111111111111111111111111111101000000000000000000
0000000000000000000000000000000000000000000001111111111111111111111111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111111111111111111111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111100000000000000111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000010000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000010010000000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100010000000001000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010000000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000100000001000100
1000011111111000100000000000000000000000000000000000000000000000000000
0000000000010001001000000001001000011111111000100000000000000000000000
0000000000000000000000000000000000000000010001000001001000001000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100010000000000000100000111111110001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000001000010000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0001000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000100100000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000000100001000000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000100000000010000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000001000010000000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010001000000010001001000011111100000100000000
0000000000000000000000000000000000000000000000000000000010001001000000
0010010000111111000001000000000000000000000000000000000000000000000000
0000000000000000100010000010010000010000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000000100001000000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000001000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000100000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000010000100000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000001000000000000000000010000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1001000000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000001000010000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000100000000010000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000100000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000000100010010000111100000001000000000000000000000000000000000
0000000000000000000000000000000100010010000000010010000111100000001000
0000000000000000000000000000000000000000000000000000000000000100010000
0100100000100001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000001000010000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000100000000000001
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0010000000000000000001000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000001001000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010000100000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010001000000000100000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000010000
1000000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100010000000100010010000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000100100000000100100001100000000010000000000000000000000000000
0000000000000000000000000000000000001000100000100100000100001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010000100000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000010000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000001000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000000100001000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000010000000000000000010000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000010010000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000000001000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100000001000100100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100100000000100
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000001001000001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000001000010000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000010000000000000001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100010
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000001000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010000000010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000010010001000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001001000000010001000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001000001001
0000010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000001000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000010
0000000000000100000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100000000100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000010010001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010001000000100010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010000010010000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000010000000000001000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010001000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000100100010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010001000000100010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100000100100000100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000100000000000100000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000101000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100010000001000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100000100100000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000100000
0000010000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000101000100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000100000010001000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001000001010000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000100000000100000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000001010001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001000100000010001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000001100000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000001000000010000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000001
0100100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010001000000100010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000001100000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000000001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000010100100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010001
0000001000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000011000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000001000010000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000101001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100010000001000100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000110000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000100100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000010001000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000101001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000100000010001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000110000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000001010000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000001010010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001000100000
0100010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000001100000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000011000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000010000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000001100100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010001000000100010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0011000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000110000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000010000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000010000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001010
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000001100100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100010000001001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000011000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000001010000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000100000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000100000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000011001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010010000001001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000110000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000100010000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
1000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000011000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000110010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100100000010010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000110
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000110000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000001
0000100000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000001000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000001000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000011000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000110010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001001000000100100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000001100000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000100000100000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000010000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000010000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000110000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000001100100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001001000000100100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000011000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000001100000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000010000000100000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000010000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000010000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000001100000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000011001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010010000001001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000011000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0011000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000100000000
1000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000000100000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000100000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000001100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000011001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100100000010010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000110000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000011000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000010000000000100000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0001000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000010010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100100000010010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000001100000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000110000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000001000000000001000000000000000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000010000000100000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000100000000100000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000001000001000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000000110000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000010000000
0100100000000000000001000000000000000000000000000001000000000000000000
0000000000000000100001001000000100100000000000000001000000000000000000
0000000000010000000000000000000000000000000000100001000001100000100000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000100000000100000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000001000000000001000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000001000000001000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000110
0000000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000010000000000001000
0000000000000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000000100000001000000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000010000010000000000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000100000000100100000000000000001000
0000000000000000000000000010000000000000000000000000000000000100001001
0000001001000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000010000011000001000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000010000000000010000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000001000000000000001000000000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0001000000010000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000001000000001000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000010000010
0000000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000000001100000000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000001000000001001000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000010010000001001000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0100000110000010000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000001000000001000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000010000000
0000100000000000000001000000000000000000000000000001000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000010000000010000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000000011000000000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000001111111111111111111110000000000000
0100000000000000010000000000000000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000001000000010000000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000100000100000000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000000
0011000000000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000001000000001001
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000100100000010010000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000100000110000010000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000100000000000100000000000000001000
0000000000000000000000000010000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000000100000000100000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000000000011000000
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000011111111111111111111100000000000000000000000000000000000000
0000000001100000000000000000000011000000000001000000000000000001000000
0000000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000100000000100000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000100000000010000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000001000010000000000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000000010000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000010000000010010000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000100100000
0100100000000000000001000000000000000000000000000001000000000000000000
0000000000000000100001000001000001000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000100000000010000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000001000000000010000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000010000000000010000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0001000000001000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000000000100000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000001100000000000000
0000000110000000000000000000000000000000000000000000010000000000000000
0000000001000000000100000000000000000010000000000000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000100
0000001000000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000001000010000000
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000000000110000000000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000010000000100100000000000000001000000000000000000000000000001000
0000000000000000000000000000000100001001000000100100000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000100
0011000010000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000000001100000000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000001100000000000100000000000000000000000001000000000000000
0000000000000000000000000001000000000000010000000000000100000001000000
0000000000000100000000000000000000000000010000000000000000000000000001
0101000000000000000000000000000000001000001000000001000000000000000000
0100000000000000000000000000010101000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000010101000000
0000000000000000000000000010000010000100000000000000000000000100000000
0000000000000000000101010000000000000000000000000000000010000000000110
0000000000000000000001000000000000000000000000000101010000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000001010100000000000000000000000000000000100000010000000100100000
0000000000010000000000000000000000000001010100000000000000000000000000
0000001000010010000001001000000000000000010000000000000000000000000001
0101000000000000000000000000000000001000001000011000010000000000000000
0100000000000000000000000000010101000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000010101000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000101010000000000000000000000000000000010000010000000
0001000000000000000001000000000000000000000000000101010000000000000000
0000000000000000100000010000000010000000000000000001000000000000000000
0000000001010100000000000000000000000000000000100000000001100000000000
0000000000010000000000000000000000000001010100000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000001
0101000000000000000000000000000000001000000000000000000000001111000000
0010000000000000100000000000001000000000000000000000000000000000000000
0010000000000001100000000000001000000100000000000000000000010000000000
0000000000000000100000000000000000000000000001110000000000000000000000
0000000000010000010000000001000000000000000000100000000000000000000000
0000011100000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000011100000000000000000000000000000000
0100000100001000000000000000000000001000000000000000000000000000011100
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000111000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000111000000000000
0000000000000000000001000000100000001101000000000000000010000000000000
0000000000000001110000000000000000000000000000000001000010010000001001
0000000000000000100000000000000000000000000001110000000000000000000000
0000000000010000010000110000100000000000000000100000000000000000000000
0000011100000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000011100000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000011100
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000111000000000000000000000000000000000100000010
0000000100000000000000000010000000000000000000000000000111000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000001110000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000001110000000000000000000000
0000000000010000000000000000000000011111100000010000000000001100000000
0000010000000000000000000000000000000000000000100000000000010100000000
0000001000010000000000000000000000100000000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000010000000
0010000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000100001000000000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000000011000000000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0001000000011010000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000100100000010010000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000010000110
0001000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000001000000000010000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000100000000100000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000000110000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000111111110001000000000000101000000000000001000000000000000000
0000000000000000000001000000000001001000000000000011111100000000000000
0000000000100000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000010000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000011000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000011010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001001000000100100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100001100001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000011111111111111101000
0000000010010000000000000010000000000000000000000000000000000000001000
0000000011111000000000000010000000000000000000000000000100000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000100000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000110000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000111000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001001000000100100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000011000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000001100000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000001000001111111100010000000000011111000000000000
0100000000000000000000000000000000000000010000000000000010000000000000
0100000000000000000000000000000100000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000100000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000001100000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000001110000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010010000001001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000011000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0011000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000001
0000011111100000100000000000000100000000000000100000000000000000000000
0000000000000000100000000000000100000000000000100000000000000000000000
0000001000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100001000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000001100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000001110000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100100000010010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000110000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000011000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000100000011110000000100000000
0000001000000000000001000000000000000000000000000000000000000010000000
0000000000000000000010000000000000000000000000000001000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0010000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000011100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100100000010010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100001100001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000110000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000001000000110000000000100000000000000000000000000010000
0000000000000000000000000000000000000100000000000000000000000000010000
0000000000000000000000000001000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000010000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000110000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0111000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001001000000100100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100001100001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000110
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000010000000
0000000000001000000000000000000000000000100000000000000000000000000000
0000000000000100000000000000000000000001000000000000000000000000000000
0010000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000100000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000101000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001001
0000001001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000011000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000001000000000000000000000100000000000
0000000000000010000000000000000000000000000000000000000000011000000000
0000000000001100000000000000000000000000000000001000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001001000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010100000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000010010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010010000010001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000110000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000101000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000010000000000000000000000110000000000000000000001100000000000
0000000000000000000000000000000000001111111111111111111110000000000000
0000000000000000000000010000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010010000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000010010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100010000100010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000110000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000100000000000000
0000000000011111111111111111111100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000010
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100100000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000100100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100010000
1000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100001100001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000001000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100100000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000001001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000100001000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0011000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000100000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000100000000010000000000000000000000000
0000000000000000000100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001001000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000001001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010001000010001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000011000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000001000000000000000000000
0000001111000000001000001000000000000000000000000000000000000000000000
0000000001000000001100000000000000000000000000000000000000000000010000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010010000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000010010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010001000010001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000110000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000010000000000000000000000000010000100000001000011
0000000000000000000000000000000000000000000000000000001011100010100000
0000000000000000000000000000000000000000100000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010010000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000100100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000100100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100010000100010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000110
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000100
0000000000000000000000000100001010010111001010000000000000000000000000
0000000000000000000000000000010100101001000000000000000000000000000000
0000000000000001000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100100000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000100110000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000100001000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100001100001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001000000000000000000000000000
1000010100100100100100000000000000000000000000000000000000000000000000
0000101001011111000000000000000000000000000000000000000000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001001000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000001001100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000100001000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000101000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000100000000000000000000000000001000010100100100111110000
0000000000000000000000000000000000000000000000000101001000010000000000
0000000000000000000000000000000000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001001000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000010011000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010001000010001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100100100100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000000000
0000000000000000000010000101001001000001000000000000000000000000000000
0000000000000000000000001010010000100000000000000000000000000000000000
0000000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010010000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000010011000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100010000100010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001001001001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000010000000000000000000000000000001111
0001110001000010000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0100000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000100110000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100010000100010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010010010010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000101000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
1001100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000100001001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010010010010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000010001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100000000000000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001010000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000100001001100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
1000010010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100100100100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100000000000000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000010000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000010000011000000000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000001000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000001010000
0000000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100001000000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000010011000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000001001000010010000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001001001001000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000001000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0001000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000001000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000010000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000010000011110000000100000000000000000000000
0000000000000000000000000000000000000000010001000000000000001000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000000000000010000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000001100000000000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000010010
1000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000010010000100100000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000001001001001000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000000000000010000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000001000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000010000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000100000111111000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000000010000111111000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000010000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000011000000000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000001000010000000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000010000100101000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000010010000
1001000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000010010010010000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000010000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000010000000010000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000010000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000010000100000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000010000111111110001000
0000000000000000000000000000000000000000000000000000000000000100010000
0000000000100001111111100010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000011000000000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000010000100000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000100001001010000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000100100001001000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000010
0100100100000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000010000000010
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000100000010000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111100000000000000111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1000000000000001111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111000110000000001111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111000010000
1000011111111111111101000000000000000000000000000000000000000000000000
0000000000000001111111111111111111111111111111111101000000000000000000
0000000000000000000000000000000000000000000001111110000100001010011111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111111111111111111111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111111111111111111111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1000000000000001111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111000100000000101111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111010000000
0001011111111111111101000000000000000000000000000000000000000000000000
0000000000000001111110001000000100011111111111111101000000000000000000
0000000000000000000000000000000000000000000001111110000100001000011111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111111111111111111111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111100000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100010001100000000010000111111110001000000000000000000000000000000000
0000000000000000000000000000000100010000100001000010000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000100001000010100000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000001001000010010
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000001001001001000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100010001000000001010000111111110001000000000000000000000000000000000
0000000000000000000000000000000100010100000000001010000111111110001000
0000000000000000000000000000000000000000000000000000000000000100010001
0000001000100001111111100010000000000000000000000000000000000000000000
0000000000000000000001000100001000010000100001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100010001100000000010000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000100001000010000100001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
1000010000101000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000010010000100100000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000001001001
0010000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100010001000000001010000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000101000000000010100001111110000010000000000000000000000000000
0000000000000000000000000000000000001000100010000001000100001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
1000010000100001000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000010011000000000100001111000000010000000000000
0000000000000000000000000000000000000000000000000001000100001000010000
1000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010001000010000101000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100100001001000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000010010010010000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000010010000000010100001111000000010000000000000
0000000000000000000000000000000000000000000000000001000101000000000010
1000011110000000100000000000000000000000000000000000000000000000000000
0000000000010001000100000010001000011110000000100000000000000000000000
0000000000000000000000000000000000000000010001000010000100001000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100110000000010000011000000000100000000000000000000000000000000000000
0000000000000000000000000010001000010000100001000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100010000100001010000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000100100001001000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000100100100100000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100100000000101000011000000000100000000000000000000000000000000000000
0000000000000000000000000010001010000000000101000011000000000100000000
0000000000000000000000000000000000000000000000000000000010001000100000
0100010000110000000001000000000000000000000000000000000000000000000000
0000000000000000100010000100001000010000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100110000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000100001000010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010000
1000010100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001001000010010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100100100100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100100000000101000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010100000000001010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010001000000100010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010000
1000010000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001001000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010001000001000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100001000010100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010010000100100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001001001001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001001000000001010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010100000000001010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100010000010000100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100010000010001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000101
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010010000001001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000001000101000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010010000100100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010010010010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000101
0000000010100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000101000000000010100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100001000010000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100100000010010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001010000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100100000010010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001000001000
1010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100100001001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010010010010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001010000000010100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1010000000000101000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001000010000100001000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100100000
0100100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010100000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100100000010010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000010001010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
1000010010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100100100100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010100000000101000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001010000000000101000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000100001000010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001001000000100100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010100000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001001000000100100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000100010100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001001000010010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001010001010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010100000
0001010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010100000000001010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010000100001000010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010010000001001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000011000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001001
0000001001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000100010100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010010000100100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000110000110000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000011000000001010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010100
0000000010100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100001000010000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010010000001001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000110000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010010000001001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100001000101000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010010000
1001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001100001100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000110000000010100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000101000000000010100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000010000100001000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100100000010010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000111000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100100000010010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000010001010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100100001001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
1000011000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000101000000010
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001010000000000101000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001000010000100001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001001000000100100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001110000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100100000
0100100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000010001010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001001000010010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000011000011000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001010000000101000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001010000000
0001010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010000100001000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001001000000100100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001100000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001001000000100100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000100010100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001001000010010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000110000110000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001100000001010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010100000000001010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
1000010001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010010000001001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001100000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010010000001001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100001000101000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010010000100100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000110000
1100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001100000001010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000101000000000010100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010001000010001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100100000010010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000011000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010010000001001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100001000101000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100100001001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001100001100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000011000000010100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000101000000000010
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100010000100010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100100000010010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001110000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000101000000010100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000010010010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100100010001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000011000011000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000110000000101000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001010000000000101000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100010000
1000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001010000000101000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001010000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000110000000011000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0010100100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000100100010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000011000011000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000000101000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010100000000001010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000100001000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000110
0000000110000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010100000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000110000000011000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000010100100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010001001000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000110000110000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100000001010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010100000000001010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010001000010001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001100000000110000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
1000000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001100000000110000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000101001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010001001000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001100001100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000000010100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000101000000000010100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010001000010001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000011000000001100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000101000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0011000000001100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000101
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100010010001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001100001100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000000010100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1010000000000101000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100010000100010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000011000000
0011000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001011000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000011000000001100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000001010010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0100100010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000011000011000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000011000000101000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001010000000000101000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000100001000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000110000000011000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001011000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000110000000011000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000010101000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000100100010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000110000110000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000011000
0001010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010100000000001010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000100001000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001100000000110000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010110000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000110
0000000110000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000010101000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010001001000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000110000110000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000110000001010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010100
0000000010100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010001000010001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001100000000110
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000101100000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001100000000110000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000101010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010001001
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001100001100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001100000010100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000101000000000010100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100010000100010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000011000000001100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000101010000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000011000000001100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100001010100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100010010001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
1000011000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000001010000010
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001010000000000101000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100010000100010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000110000000011000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001010100010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000011000000
0011000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100001010100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000100100010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000011000011000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000010100000110000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001010000000
0001010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000100001000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000110000000011000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000001111111111111111111110000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010011000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000110000000011000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000010101000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000100100010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000110000110000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000011000001100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010100000000001010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
1000010001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001100000000110000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000001111111111111111111
1100000000000000000000000000000000000000000000000110000000000000000000
0011000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100011000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000101010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010001001001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
1000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000011000010100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000101000000000101000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010001000010001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000001100000000000000000000011000000000000000000000
0000000000000000000000010000000000000000000000000100000000000000000000
0000000000000000000000000000000000001111111111111111111111111111111111
1111111111111111111111111111111100000000000000000000000000000000001111
1111111111111111111111111111111111111111111111111111111111111100000000
0000000000000000000000000011111111111111111111111111111111111111111111
1111111111111111111111000001000101001000000000000000000011111111111111
1111111111111111111111111111111111111111111111111111000001100000000110
0000000000000000111111111111111111111111111111111111111111111111111111
1111111111110000000000000000000000000000000000111111111111111111111111
1111111111111111111111111111111111111111110000010000011010000000000000
0000001111111111111111111111111111111111111111111111111111111111111111
1100000010010010010000000000000000001111111111111111111111111111111111
1111111111111111111111111111111100000001100001100000000000000000001111
1111111111111111111111111111111111111111111111111111111111111100000000
0000000000000000000000000011111111111111111111111111111111111111111111
1111111111111111111111000000000101000101000000000000000011111111111111
1111111111111111111111111111111111111111111111111111000010100000000101
0000000000000000111111111111111111111111111111111111111111111111111111
1111111111110000100010000100010000000000000000111111111111111111111111
1111111111111111111111111111111111111111110000011000000001100000000000
0000001111111111111111111111111111111111111111111111111111111111111111
1100000000000000000000000000000000001111111111111111111111111111111111
1111111111111111111111111111111100000000000000000000000110000000000010
0000000000000000000000001000000000000000000000000000000000000000000100
0000000011110000000000000100000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010001010010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000011000000001100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000110100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010010010010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000011000011000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001010001010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000101000000001010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100010000
1000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000110000000011000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001111000000001000000000011110000000000000
1000000000000000000000000000000000000000001000000000010000000000000000
1000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010001010010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000110000000011000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0001101000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100100100100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000011000011000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001010001010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001010000000010100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000100001000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000110
0000000110000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011111100000010000000000100000000000000001000000000000000000000000
0000000000000000100000000000111000000000000000100000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0001100000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000100001100000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000110000010
0000000000000000100000100010100100000000000000000001000000000000000000
0000000000000000000011110011100000000000000000100000110000000011000000
0000000000010000000000000000000000000000000000000001110011100000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000011000110000000000000000001000001000001101000000000000000000
0100000000000000000000000000000000000000011000110000000000000000001000
0001001001001000000000000000000100000000000000000000000000000000000010
0001000000100000000000000010000000110000110000000000000000000100000000
0000000000000000000000000000100001100011100000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000100000010011
1000000000000000100000000010100010100000000000000001000000000000000000
0000000000000000001000011100110000000000000000100001010000000010100000
0000000000010000000000000000000000000000000000001000111100110000000000
0000001000010001000100001000000000000000010000000000000000000000000000
0000000010000110000010000000000000001000001100000000110000000000000000
0100000000000000000000000000000000000011000100001110000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000011
0001100011100000000000000010000000000000000000000011111111000100000000
0001110000000000000001000000000000000000000000000000000000000100000000
0001001000000000000011111100000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000010010000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000011000100100000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000010010001100000000000000000100000100
0100101000000000000000000010000000000000000000000000000000000000010000
1000100000000000000001000001100000000110000000000000000010000000000000
0000000000000000000000000100001000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000100101001000000
0000000000010000010000011010000000000000000000100000000000000000000000
0000000000000001001010010000000000000000010000001001001001000000000000
0000001000000000000000000000000000000000001100011000001100000000000000
0100000001100001100000000000000000001000000000000000000000000000000000
0011000100101000100000000000000100000000000000000000000000000000001000
0000000000000000000000000000000011000001101000000000000000000100000000
0100100101000000000000000010000000000000000000000000000000000011000100
0010010000000000000001000010100000000101000000000000000010000000000000
0000000000000000000000110000001010010000000000000001000010000100100001
0000000000000000100000000000000000000000000000000000110001001000110000
0000000000010000011000000001100000000000000000100000000000000000000000
0000000000001001011000100010000000000000010000000000000000000000000000
0000001000000000000000000000000000000000001001010010100000000000000000
0100000000000000000011111111111111101000000000001001000000000000001000
0000000000000000000000000000000000001000000000000001000000000000001000
1000000000000000000000000000000000000000000000000001000000000000000011
1001110111111011100000100100000000000000000000100000000000000000000000
0000000000010000000000000011100111011111101110000001000100100000000000
0000001000000000000000000000000000000000010000000000000011100111011111
1011100000000100101000000000000000001000001000100110000000000000000000
0100000000000000111001110111111011100000111001000100000000000000001000
0011000000001100000000000000000100000000000000111001110111111011100000
1110011100000000000000000010000000000000000000000000000000000100000000
0000001110011101111110111000001001010010000000000000000010000010000011
0100000000000000000001000000000000001110011101111110111000001001010010
0000000000000000100000010010010010000000000000000001000000000001110011
1011111101110000001000010000101000000000000000100000001100001100000000
0000000000010000000000011100111011111101110000001000000101000100000000
0000001000000000000000000000000000000000010000000000011100111011111101
1100000010000101011100000000000000001000000000100100101000000000000000
0100000000000111001110111111011100000010001110010010000000000000001000
0101000000001010000000000000000100000000000111001110111111011100000010
0000100100100000000000000010000100001001000010000000000000000100000000
0001110011101111110111000000100010010010100000000000000010000011000000
0011000000000000000001000000000001110011101111110111000001001001000100
0100000000000000100000000000000000000000000000000001000000000001110011
1011111101110000010010100101110000000000000000100000000000000000100000
1111111100010000000000000010000000000000010000000000000000000000000000
0000000000010000000000010010000000000000010000100000000000000000000000
0000000000000000000000000010000000000000001000110001100100110010000000
1000000000000000000001000000000000000000000000000000000010000000000000
1000110001100100110010000010000110000000000000000001000000000000000000
0000000000000000100000000000001000110001100100110010000001001001000000
0000000000010000010001001100000000000000000000100000000000001000110001
1001001100100001001010001000000000000000010000011000000001100000000000
0000001000000000000010001100011001001100100001001010010000000000000000
0100000000000000000000000000000000001000000000000010001100011001001100
1000001100000100000000000000000100000100000110100000000000000000001000
0000000000100011000110010011001000001110011000000000000000000100000010
0100100100000000000000000010000000000100011000110010011001000001000010
0010010000000000000001000000011000011000000000000000000010000000000100
0110001100100110010000010000010010001000000000000001000000000000000000
0000000000000000100000000001000110001100100110010000010001001010010000
0000000000010000000001001001010000000000000000100000000001000110001100
1001100100000100010010000100000000000000010000101000000001010000000000
0000001000000000010001100011001001100100000100000100011000000000000000
0100001000010010000100000000000000001000000000010001100011001001100100
0001000011101001000000000000000100000110000000011000000000000000001000
0000000100011000110010011001000000010010001000100000000000000100000000
0000000000000000000000000010000000000100011000110010011001000000010000
1010010000000000000001000000000000000001000001111110000010000000000010
0100000000000000100000000000000000000000000000000000000010000000000001
1000000000000000100001000000000000000000000000000000000000000000000000
0100000000000000010000100011001001100100000010000000000000000000001000
0000000000000000000000000000000100000000000001000010001100100110010000
0100010010000000000000000010000000000000000000000000000000000100000000
0000010000100011001001100100000001011111000000000000000010000010001001
1000000000000000000001000000000000010000100011001001100100000001010001
0000000000000000100000110000000011000000000000000001000000000000010000
1000110010011001000010010100100000000000000000100000000000000000000000
0000000000010000000000000100001000110010011001000010010001000000000000
0000001000001000001101000000000000000000010000000000000100001000110010
0110010000000101001000000000000000001000000100100100100000000000000000
0100000000001000010001100100110010000010000100011111000000000000001000
0000110000110000000000000000000100000000001000010001100100110010000010
0000010100010000000000000010000000000000000000000000000000000100000000
0010000100011001001100100000100011111100100000000000000010000000001001
0010100000000000000001000000000010000100011001001100100000100010010001
0000000000000000100001010000000010100000000000000001000000000010000100
0110010011001000001000001001001000000000000000100001000010010000100000
0000000000010000000000100001000110010011001000001000000101111100000000
0000001000001100000000110000000000000000010000000000100001000110010011
0010000001000100010001000000000000001000000000000000000000000000000000
0100000000001000010001100100110010000001000010010010000000000000001000
0000000000000100000011110000000100000000000011000000000000000100000000
0000000000000000000000000000000010000000000000000000000000001000000100
0000000000000000000000000000000000000000000000100000000000000010001100
0110010011001000001000000000000000000000010000000000000000000000000000
0000001000000000000010001100011001001100100000100010010000000000000000
0100000000000000000000000000000000001000000000000010001100011001001100
1000010010000100000000000000000100000100010001000000000000000000001000
0000000000100011000110010011001000010010100010000000000000000100000110
0000000110000000000000000010000000000000100011000110010011001000010010
1001000000000000000001000000000000000000000000000000000010000000000000
1000110001100100110010000100100100000000000000000001000001000001101000
0000000000000000100000000000001000110001100100110010000100101001000000
0000000000010000001001001001000000000000000000100000000001000110001100
1001100100000100001000000100000000000000010000000110000110000000000000
0000001000000000010001100011001001100100000100010010100010000000000000
0100000000000000000000000000000000001000000000010001100011001001100100
0001000000101001000000000000000100000000010001010100000000000000001000
0000000100011000110010011001000001000100100100000000000000000100001010
0000000101000000000000000010000000000100011000110010011001000001000010
0010010000000000000001000010000100100001000000000000000010000000000100
0110001100100110010000010001001000010000000000000001000001100000000110
0000000000000000100000000001000110001100100110010000010000100010001000
0000000000010000000000000000000000000000000000100000000001000110001100
1001100100000100001000100100000000000000010000000000000000100000011000
0000000100000000000000000000000000010000000000000000000000000000000000
0000000100000000000000000000000000010000001000000000000000000000000000
0000000000000000000001000000000000000011100111010010011110000001110000
0000000000000000100000000000000000000000000000000001000000000000001110
0111010010011110000001000011000000000000000000100000000000000000000000
0000000000010000000000000011100111010010011110000001100000100000000000
0000001000001000100010000000000000000000010000000000000011100111010010
0111100000011000111000000000000000001000001100000000110000000000000000
0100000000000000111001110100100111100000011000110000000000000000001000
0000000000000000000000000000000100000000000000111001110100100111100000
0110001110000000000000000010000010000011010000000000000000000100000000
0000001110011101001001111000000110001100000000000000000010000001001001
0010000000000000000001000000000001110011101001001111000000100001000000
1000000000000000100000001100001100000000000000000001000000000001110011
1010010011110000001000011000111000000000000000100000000000000000000000
0000000000010000000000011100111010010011110000001000000100110000000000
0000001000000000100010101000000000000000010000000000011100111010010011
1100000010000110001110000000000000001000010100000000101000000000000000
0100000000000111001110100100111100000010000100001100000000000000001000
0100001001000010000000000000000100000000000111001110100100111100000010
0001100000100000000000000010000011000000001100000000000000000100000000
0001110011101001001111000000111001000011100000000000000010000000000000
0000000000000000000001000000000001110011101001001111000000111001110011
0000000000000000100000000000000010000000000000000000100000000000000000
0000000000100000000000000000000000000000000000000000010000000000000000
0000000001000000010000000000000000000000000000000000000000000000001000
0000000000000000000000000000010000111000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000001000011100000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000010000111000000000000000000000000001000001000100010000
0000000000000000100000000000000000000000000000010000111000000000000000
0000000000010000011000000001100000000000000000100000000000000000000000
0000000100001110000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000100001110000000000000000000000000
0100000010000110100000000000000000001000000000000000000000000000000100
0011100000000000000000000000000100000010010010010000000000000000001000
0000000000000000000000001000011100000000000000000000000000000100000001
1000011000000000000000000010000000000000000000000000001000011100000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000010000111000000000000000000000000000001000000000100010101
0000000000000000100000000000000000000000000010000111000000000000000000
0000000000010000101000000001010000000000000000100000000000000000000000
0000100001110000000000000000000000000000010000100001001000010000000000
0000001000000000000000000000000000100001110000000000000000000000000000
0100000110000000011000000000000000001000000000000000000000000000100001
1100000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000001000011100000000000000000000000000000100000000
0000001000000000000000000000100000000000000000000000001000000000000000
0000000000000000000000000000011000000000000000000000110000000001000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100001000100000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000101000000
0101000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000110100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100100100100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000011000011000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001000101010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000101000000
0010100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000010010001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001010000000101000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000001000000000000000000
0000110000000000000000000001100000000000000000000000000000000000000000
0000001111111111111111111110000000000010000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000010001100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001001000000100100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000101000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100100100100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000110000110000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010000110100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001010000000010100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0100100010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010010000001001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000100000000000000000000000001111111111111111111
1100000000000000000000000000000000000000000000000000000000000000000000
0000000000000010000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000010010100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010010000001001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000001010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001001001001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000110000
1100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010000110100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010100000000101000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000100100010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100100000010010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
1000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000010000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000010101000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010010000001001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000001010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010010010010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001100001100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000010001101000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010100000000101
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010001001000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100100000010010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000010000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000100000011110000000000000000000010000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000101010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100100000010010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000010100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010010010010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000011000011000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000100011010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000101000000001010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010001001
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001001000000100100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000001000000000000000000000000000111100000000100111100000
0000000000000000000000000000000000000000000000000100000010000000000000
0000000000100000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000101001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001001000000100100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000101000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100100100100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000011000011000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000100001010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001010000000010100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100010010001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001001
0000001001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000001000000
0000000000000000000010000100000001001000000000000000000000000000000000
0000000000000000000000001011100111000000000000000000000100000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000001010010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001001000000100100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000110000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001001001001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000110000110000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000001000010100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001010000000010100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000100100010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010010000001001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000100000000000000000000000000010000
1010010111011100000000000000000000000000000000000000000000000000000001
0100101001000000000000000000000100000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0010100100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010010000001001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000001100000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001001001001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001100001100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0010000101000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010100000000101000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000100100010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100100000010010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000001000000000000000000000000000100001010010010010010000000000
0000000000000000000000000000000000000000000010100100001000000000000000
0000001000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000010100100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100100000010010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000001
1000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010010010010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010100010100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000010000101000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0101000000001010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010001001000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100100000
0100100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010000000000000
0000000000000001000010100100100000100000000000000000000000000000000000
0000000000000000000101001010010000000000000000000000100000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000101000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100100000010010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000011000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0100100100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100100100100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000100001110000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000101000000001010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100010010001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001001000000100100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000001000000000000000000000000000001000010100
1001001001000000000000000000000000000000000000000000000000000000101001
0011000000000000000000000001000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000110
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001001000000100100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000110000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100100100100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001001001001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000100
0011100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001010000000010100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100010010001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010010000001001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010000000000000000000000000000001111000111000100110000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0010000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000001100001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001001
0000001001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000110000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001001001001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001001001001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001000011100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001010
0000000101000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000100100010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010010000001001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000001000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100000011000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100010000010001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000011100000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001001010
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010010010010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000010000111000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010100000000101000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010001001000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001000100000100010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000010000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100000011000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000010000100001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000101000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010001100010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0100100100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000010000101
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000101000000001010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010001001000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000100001000010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000001
0000000000000000000000000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010001000000110000010000011000000000100000000
0000000000000000000000000000000000000000000000000000000010001000010000
1000010000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000101000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000100011000100000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000100100100100000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000100001010000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000101000000
0010100000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000100010010001000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100010000100001000010000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000010000000000000000000000000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000001100000100000111100000001000000000000000000000000000000000
0000000000000000000000000000000100010000100001000010000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000010001010000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000100011000100
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000001001001001000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000001000010100000111100000001000000000000000000000000000000000
0000000000000000000000000000000100001010000000010100000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0100100010000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000100001000010000100001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000100000000000000000000000000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100010000001100000100000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000100001000010000100001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100010100000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000001000110001000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000001001001
0010000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000000001000010100000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000010100000000101000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000001000100100010000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
1000010000100001000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000010000
0000000000000000000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000100000011000000100001111111100010000000000000
0000000000000000000000000000000000000000000000000001000100001000010000
1000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000100010100000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000010001100010000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000010010010010000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000000010000101100001111111100010000000000000
0000000000000000000000000000000000000000000000000001000010100000000101
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000010001001000100000011111111000100000000000000000000000
0000000000000000000000000000000000000000010001000010000100001000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000100000000000000000000000011111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111100000000000000111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111111111111111111111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1000000100000001111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111000010000100001111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111111111111
1111111111111111111101000000000000000000000000000000000000000000000000
0000000000000001111110001000101000011111111111111101000000000000000000
0000000000000000000000000000000000000000000001111110010001100010011111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111111111111111111111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111100000000000000111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1000000100001011111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111111111111111111111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111111111111
1111111111111111111101000000000000000000000000000000000000000000000000
0000000000000001111110000100001000011111111111111101000000000000000000
0000000000000000000000000000000000000000000001111111111111111111111111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111100000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000001000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000100000000000000
1000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000000110000000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100010001
0001010000100001111111100010000000000000000000000000000000000000000000
0000000000000000000001000100100011000100100001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000100100100100
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010001000000000000001000011111111000100000000000000000000000
0000000000000000000000000000000000000000010001000000010001010000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100001010000000010100000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000100010010001000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010000000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000100000011111100000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000010000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000001100000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000000100001000000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000100010001010000100001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
1001000110001001000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000001001001001000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010001000000000
0000010000111111000001000000000000000000000000000000000000000000000000
0000000000000000100010000000100010100000111111000001000000000000000000
0000000000000000000000000000000000000000000000100001010000000010100000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000001000101000010000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000001000010000000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000100000000000000000001000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000000000000100000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0011000000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000001000010000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010001000100010100001000011110000000100000000000000000000000
0000000000000000000000000000000000000000010001001000110001001000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010010010010000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100010000000000000010000111100000001000
0000000000000000000000000000000000000000000000000000000000000100010000
0001000101000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000010100000000101000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000001000011000010
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000100000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000001000000000000000000100000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000100000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000011000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010000100000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010001000100010
1000010000110000000001000000000000000000000000000000000000000000000000
0000000000000000100010010001100010010000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000010010010010000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000000100001100000000010000000000000000000000000000
0000000000000000000000000000000000001000100000001000101000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0101000000001010000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000110000100000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000010000
1000000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000001000000000000
0000010000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000110000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010001000101000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010010
0011000100100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100100100100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100000000000000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000000010001010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000101000000001010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100001100001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000001000000000000000100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000110
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100010001010000100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100100011001000100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001001001001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001000000010
0010100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001010000000010100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100001100001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000010000000000000010000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100010001011000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000100110010001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001001001001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010000000100010100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001010
0000000101000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000011000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000001000000000000100
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000101000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001000100010110001000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001000100110
0100010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010010010010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100000001000101000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010100000000101000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000110000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000010000000000010000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000101000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010001000101100010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010001001100100010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0100100100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100000001000101
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000101000000001010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000110000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000100000000001000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001010000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010001000101100010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100010011001000100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000101000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001000000010001010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000101000000
0010100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100001100010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000010000000010000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010100000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010010001011000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100010011001000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000110000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000000100010100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001010000000010100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0011000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000100000001000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000100100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100100011010001000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001000100110010001000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000110
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010000000100010100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010100000000101000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100011000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0100000100000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000101000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100010011010001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010001001100100010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100001100001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000001000101000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010100000000101
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000110001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000100001000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001010000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000100110100100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010001001100100010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000011000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000010001010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000101000000001010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000110
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000001000100000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001010000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
1001101001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100010011001000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000011000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000010001010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001010000000010100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010001100010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000101
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100100000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010001001101001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000100110010001000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000110000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000100010100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001010000000010100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100011000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000001100000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100010011010010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001000100110010001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100001100001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000100101000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010100000000101000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100011000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000011000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000001000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001010000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100010011
0100100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010001001100100100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100001100001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000100101000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0101000000001010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000110001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001010
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000101000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000010000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000010001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000100110010100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001001
0011001001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000011000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000001001010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000101000000001010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010001100010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000010001000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000100000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000010001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000001100000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010001001100101000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010010011001001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000110000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000001
0010100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001010000000010100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010001100010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000011000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000001000010000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000100010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0011000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010001001100101
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100100110010010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000110000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000010010100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001010
0000000101000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100011000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000011000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000010000010000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000011000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100010011001010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100100110
0100100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100001100001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000100101000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010100000000101000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000110001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000110000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000001000000010000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000110000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000100110010100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001001001100100100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0011000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000100101
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000101000000001010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000110001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000001100000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0100000000100000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000110
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000100110010100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010010011001001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000011000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000001001100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000101000000
0010100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010001100010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000001100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000001000000000010000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010001001100101000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010010011001001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000110000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000010011000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001010000000010100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0011000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000100000000000100000000000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000001000010
0000000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000001000010000000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000000011000000000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0100010011001010000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000100100110010010000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000010000110
0001000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100001000000010011000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000010100000000101000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000100011000100000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000000110000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000001000000
0000001000000000000000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000010000100000000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000000010000100000000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000000000011000000
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000100010011001010000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100001001001100100100000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000100001100001000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000010000000100110000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000010100000000101
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000001000110001000000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000100000000000000100000000000000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000100001000000000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000100001000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000000000110000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100001000100110010100000000000000001000000000000000000
0000000000010000000000000000000000000000000000100001001001100100100000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000001000011000010000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0100000001001100000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000101000000001010000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000001000110
0010000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000000001100000000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000111111111111111111111000
0000000000010000000000000001000000000000000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000000010001000000
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000000100001000000000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000000001100000000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100001000
0101100101000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000010010011001001000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000001000011000010
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000100000001001100000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100001010000000010100000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000010001100010000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000000
0011000000000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000001111111111111111111110000000000000000000000000000
0000000000000000000110000000000000000000001100000000000100000000000000
0001000000000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000000100100000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000001000010000000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000000001000000000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000010000110100101000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0100100100010010000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000100000100000100000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000010000000
0010000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100001000000010101000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100001010000000101000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000100010000100000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000000010000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000110000
0000000000000000011000000000000000000000000000000000000000000001000000
0000000000000000000100000000010000000000000000001000000000000000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000001001000000000000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100000001
0000100000000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000010001101000110000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000100100110010010000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100001000001100000100000000000000001000000000000000000000000000001000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000010000000000000000000000000000000000100001000
0000101010000000000000000010000000000000000000000000000010000000000000
0000000000000000000001000001010000001010000000000000000010000000000000
0000000000000000100000000000000000000000000000000001000000100011000100
0000000000000000100000000000000000000000000000100000000000000000000000
0000000000010000000000110000000000000000000000100000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000110000000000010000000000000000000000000100000
0000000000000000000000000000000000000100000000000111000000000000010000
0001000000000000000000010000000000000000000000000001000000000000000000
0000000001010100000000000000000000000000000000100000001001000000000000
0000000000010000000000000000000000000001010100000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000001
0101000000000000000000000000000000001000000100000100000000000000000000
0100000000000000000000000000010101000000000000000000000000000000001000
0000000110000000000000000000000100000000000000000000000000010101000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000101010000000000000000000000000000000010000010001101
0001100000000000000001000000000000000000000000000101010000000000000000
0000000000000000100001001001100100100000000000000001000000000000000000
0000000001010100000000000000000000000000000000100001000001100000100000
0000000000010000000000000000000000000001010100000000000000000000000000
0000001000000100000000100000000000000000010000000000000000000000000001
0101000000000000000000000000000000001000010000000101010000000000000000
0100000000000000000000000000010101000000000000000000000000000000001000
0010100000010100000000000000000100000000000000000000000000010101000000
0000000000000000000000000010000001000110001000000000000000000100000000
0000000000000000000101010000000000000000000000000000000010000000000110
0000000000000000000001000000000000000000000000000101010000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000001010100000000000000000000000000000000100000000000000000000000
1111000000001000000000001110000000000000100000000000000000000000000000
0000000000001000000000010000000000000000100000010000000000000000000001
0000000000000000000000000010000000000000000000000000000111000000000000
0000000000000000000001000000010010000000000000000000000010000000000000
0000000000000001110000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000001110000000000000000000000
0000000000010000001000000100000000000000000000100000000000000000000000
0000011100000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000011100000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000011100
0000000000000000000000000000000100000100011010001100000000000000001000
0000000000000000000000000111000000000000000000000000000000000100001001
0011001001000000000000000010000000000000000000000000000111000000000000
0000000000000000000001000010000011000001000000000000000010000000000000
0000000000000001110000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000001110000000000000000000000
0000000000010000100000000110100000000000000000100000000000000000000000
0000011100000000000000000000000000000000010000010100000010100000000000
0000001000000000000000000000000000011100000000000000000000000000000000
0100000010001100010000000000000000001000000000000000000000000000011100
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000111000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000111000000000000
0000000000000000000001000000000000000000000001111110000001000000000010
0000000000000001000000000000000000000000000000000000000010000000000011
1000000000000000100001000000000000000000000010000000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000101000000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000001000000
1000000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000000001100000000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000001000110100011000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000010010011001001000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0100000110000010000000000000000100000000000000000000000000000100000000
0000000000000000000000000010000001000000001000000000000000000100000000
0000000000000000000001000000000000000000000000000000000010000100000000
1101000000000000000001000000000000000000000000000001000000000000000000
0000000000000000100000101000000101000000000000000001000000000000000000
0000000000010000000000000000000000000000000000100000010001100010000000
0000000000010000000000000000000000000000010000000000000000000000000000
0000001000000000011000000000000000000000010000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000011111111000100000000000111000000000000000100000000
0000000000000000000000000000000100000000000100100000000000001111110000
0000000000000000000010000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000101000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000001000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0011000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000110100011
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100100110010010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000110000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000001101000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000101
0000001010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100011000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000011000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000001111111111
1111101000000000001001000000000000001000000000000000000000000000000000
0000001000000000001001000000000000001000000000000000000000000000010000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001010000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000010000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000011000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010001110000110000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100100110
0100100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000001100000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000011010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001010000001010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000110001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000110000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000100000111111110001000000000001001000
0000000000010000000000000000000000000000000000000001000000000001001000
0000000000010000000000000000000000000000010000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1100000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000010000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000110000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100011100001100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001001001100100100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0011000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000011010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010100000010100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000110001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000001100000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000001000001111110000010000000000010010000000000000010000000000000
0000000000000000000000000010000000000001100000000000000010000000000000
0000000000000000100000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000000100000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000110
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100011100001100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010010011001001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000011000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000110100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010100000
0101000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010001100100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000001100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000010000001111000000
0100000000000011000000000000000100000000000000000000000000000000000000
0010000000000000000000000000001000000000000000000000000000000100000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000001000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000111000011000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010010011001001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000110000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000001101000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000101000000101000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0011001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000100000011000000000010000000000000000000000
0000010000000000000000000000000000000000000000010000000000000000000000
0000010000000000000000000000000000000100000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000010000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000001000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000011000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010001110000110000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100100110010010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000110
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000001101000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001010000001010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010011001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000110000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0010000000000000000000100000000000000000000000000010000000000000000000
0000000000000000000000010000000000000000000000000100000000000000000000
0000000000001000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000100000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000010000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000011000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010001110000110000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001001001100100100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000001100000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000011010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001010000001010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100110010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000100000000000000000000010
0000000000000000000000001000000000000000000000000000000000000000000001
1000000000000000000000110000000000000000000000000000000000100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000011000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000100000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001010000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100011100001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001001001101000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000011000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000110100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010100000010100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100110
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010100000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000001000000000000000000000011000000000000000000000110
0000000000000000000000000000000000000000000000111111111111111111111000
0000000000000000000000000000000001000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000011000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0111000011000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010001011010001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000011000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000110100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000101000000101000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001001100100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000010000
0000000000000000000001111111111111111111110000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000010000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000110000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000001000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000111000011000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100010110100010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000110000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000001101000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000101000000101000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010011001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000100000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001010000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000010000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000110000110000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100010110100010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000001100000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000011010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001010000001010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010011001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000010000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000010000000111000000000000000
0000000000000000000000000000010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010010000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000010000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000110
0001100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000101101000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000001100000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000011010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010100000010100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100110010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000100000000000
0000000000000000111100000000100011100000000000000000000000000000000000
0000000000000000000100000010000000000000000000000000000000000000000000
0000010000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100100000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000100000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100001100001100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
1011010001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000011000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000110100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010100000010100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001001100100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000001000000000000000000000000001000010000
0001001000000000000000000000000000000000000000000000000000000000101110
0111000000000000000000000000000000000000000000000010000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001001000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
1000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000011000011000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010001011010001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000110000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
1101000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000101000000101000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001001100100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000100100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000100000000000000000000000000010000101001011101110000000000000000
0000000000000000000000000000000000000001010010100100000000000000000000
0000000000000000000000000100000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001001000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000011000011
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100010110100010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000110000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000101000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000101
0000001010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010011001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000100000000000000000
0000000000100001010010010010010000000000000000000000000000000000000000
0000000000000010100101001000000000000000000000000000000000000000000000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100010000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000110000110000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100010110
1000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010000010100000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000001010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001010000001010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100110010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010000000000000000000000000000100001010010010
0100100000000000000000000000000000000000000000000000000000010100101001
0000000000000000000000000000000000000000000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0100000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010001100001100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000101101000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010000
0100100000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000001010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010100000010100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100110010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000000000000000000000000000001000010100100100100100000000000000000000
0000000000000000000000000000000000101001001100000000000000000000000000
0000000000000000000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000100000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010001100001100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010001011010001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100000100100000100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000010100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010100000
0101000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001001100100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000000000000000000000000
0000001111000111000100110000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000100000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100011000011000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010001011010001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000001001000001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000101000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000101000000101000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0011001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000100
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000110000110000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100010110100100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001000001001
0000010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000001000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000101000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001010000001010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010011001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000001000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000010000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000110000101000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100101101001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010000010010000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000001010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001010000001010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100110010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000001000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000010000010000000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000010000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000000010000100000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000010001100001010000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000100101101001000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000100000100100000100001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000010000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000010100000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000010100000010100000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100110
0100000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100001000000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000001000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000010000010000000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010001000000000010000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0011000010100001111000000010000000000000000000000000000000000000000000
0000000000000000000001000001001011010010000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000100000100100000
1000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000100000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000010100000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000101000000101000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000001001100100000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000010000011111100000100000000000000000000000000000000000000
0000000000000000000000000010001000000100000000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000100000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000000100001000000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000100011000010100001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0010010110100100000011111100000100000000000000000000000000000000000000
0000000000000000000000000010001000001001000001000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000010000
1000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000101000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000101000000101000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000010101001000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000001000010000000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000001000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100010000001000000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100010000
0000001000000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000001000010000000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000001000110000101000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000010010110100100000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100010000010010000010000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000001010000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000001010000001010000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000010100101000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000010000100000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000011111111111111101000000000000000000
0000000000000000000000000000000000000000000001111110000001000000011111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111100000000000000111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111100000000001000111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1111111111111111111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111000000000000001111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111001000100
0001011111111111111101000000000000000000000000000000000000000000000000
0000000000000001111111111111111111111111111111111101000000000000000000
0000000000000000000000000000000000000000000001111110000010010000011111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111111111111111111111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111101000000001010111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1010100000010101111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111000101001010001111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111111111111
1111111111111111111101000000000000000000000000000000000000000000000000
0000000000000001111110000000000000011111111111111101000000000000000000
0000000000000000000000000000000000000000000001111110000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000000001000000100001111111100010000000000000
0000000000000000000000000000000000000000000000000001000100000000000000
1000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000000000010001000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100010000000000000010000111111110001000000000000000000000000000000000
0000000000000000000000000000000100010010001100001000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000100
1011010010000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000001000010000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010001001000000010101000011111111000100000000000000000000000
0000000000000000000000000000000000000000010001010100000010101000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100010001010010100010000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100010000
0000000000100001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000010000010000011111100000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000010000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0100100000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000100001000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000100000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000100100011000010000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000001001011010010000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001001000000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000010000100000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010001001000000
0101010000111111000001000000000000000000000000000000000000000000000000
0000000000000000100010101000000101010000111111000001000000000000000000
0000000000000000000000000000000000000000000000100010001010010100010000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000001000010000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000100000000000001000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000000000010000010000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000100100000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000100100011000010
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000010010110100100000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000000001001000000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100010010000000101010000111100000001000
0000000000000000000000000000000000000000000000000000000000000100010101
0000001010100001111000000010000000000000000000000000000000000000000000
0000000000000000000001000100010100101000100001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000010000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000100000100000110000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000001001000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000010000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000011000000000100000000000000000000000000000000000000
0000000000000000000000000010001001000110000100000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000010010110
1001000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010010000000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000000100001000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000100100000001010100001100000000010000000000000000000000000000
0000000000000000000000000000000000001000101010000001010100001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000101001010001000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000000010000100000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0001000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000101
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000100000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010010001100001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100101101001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000001000010000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100100000001110
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001010100000010101000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001000101001010001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000001000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000001100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
1000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010010011100001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001001101010010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001001000000011101000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001010100000
0101010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010001010011000010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000001000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000010000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000011000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100100111000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001001100110010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001010000000111010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010101000000101010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010000
1100110000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000010
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000011000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1001001110000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010011001100100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001010000000111010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000101010000001010100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100001100110000100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000010001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000110000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001001001110000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100110011001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010100000001110100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000101010000001010
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000011001100001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000100100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010010011100010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100110011001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0101000000011101000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001010100000010101000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001000011001
1000010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000100100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010001
0111000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001001100110010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000010000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000101000000011101000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010101000000101010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010000110011000010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000001001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100010111000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010011001100100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000010000100000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001010000000111010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010101000000101010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100001100110000100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000010010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100101110001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010011001100100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001010
0000001110100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000101010000001010100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100001100110000
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000010100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000001100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100101110
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100110011001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000100001000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000100100000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010100000001110100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1010100000010101000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001000011001100010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000101000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000011000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001001011100010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
1100110010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000001000010000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000101000000011101000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001010100000010101000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000110011000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000001010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0110000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010010111000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001001100110010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010000100000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000101000000
0111010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010101000000101010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000110011000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000110000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000110000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010010110100100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010011001100100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001010000000111010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010101
0000001010100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010001100110001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000001000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000001000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000010100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000100000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100101101001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010011001
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100001000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010100000001110100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000101010000001010100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100011001100010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
1000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000010000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000001000010000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000010100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001001011010010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100010010001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001100000001110
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001010100000010101000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100011001100010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000010000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010000100000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000101000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100001000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001001011010010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000100100010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000010000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000110000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000011000000011001000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001010100000
0101010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000110011000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000010000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000100000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000001001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010010110100100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000100100010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000100000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000110000000111010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010101000000101010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
1100110001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000010000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000001
1000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000010001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100101101001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010001001000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000010000
1000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000001100000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000110000000111010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000101010000001010100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010001100110001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000010001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000011000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000100010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100101101001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100010010001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0011000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001100000001110100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000101010000001010
1000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100011001100010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000110000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000001000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000000001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001001010010010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100010010001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000010000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000011000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0011000000011101000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001010100000010101000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100011001
1000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000101000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000001000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000010010000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001001
0100100100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000100100010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000010000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000110000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010100000011101000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010101000000101010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000110011000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000010010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001010
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000100001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000101000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010010100100100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010001001000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000010000100000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000110
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000101000000111100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010101000000101010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010001000110001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001010000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000100100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0001000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000011000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100101001001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010001001000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000101
0000001111000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000101010000001010100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010001000010001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000100100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000011000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000001000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000110000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100101001
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100010010001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000100001000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000011000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001010000001111000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1010100000010101000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100010000100010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000001100000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000111111111111111111111000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000001001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000011000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000010000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000001100000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001001010010010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0100100010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000001000010000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000011000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010100000011110000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001010100000010101000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000100001000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0011000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000111111111
1111111111110000000000000000000000000000000000000000000000011000000000
0000000000001100000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000100010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000100000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000100
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000001000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010010100100100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000100100100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000100000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000100000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010100000
1011100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010101000001010100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000100001000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000010000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000110000000000000000000001100000000000
0000000000000000000000000000000001000000000000000000000000010000000000
0000000000000000000000000000000000000000000000111111111111111111111111
1111111111111111111111111111111111111111110000000000100010000000000000
0000001111111111111111111111111111111111111111111111111111111111111111
1100000000001100000000000000000000001111111111111111111111111111111111
1111111111111111111111111111111100000000001000001000000000000000001111
1111111111111111111111111111111111111111111111111111111111111100000100
0000000010000000000000000011111111111111111111111111111111111111111111
1111111111111111111111000000000011000000000000000000000011111111111111
1111111111111111111111111111111111111111111111111111000010001100100100
0000000000000000111111111111111111111111111111111111111111111111111111
1111111111110000001001001001000000000000000000111111111111111111111111
1111111111111111111111111111111111111111110000000100000010000000000000
0000001111111111111111111111111111111111111111111111111111111111111111
1100000000001100000000000000000000001111111111111111111111111111111111
1111111111111111111111111111111100000011000001011100000000000000001111
1111111111111111111111111111111111111111111111111111111111111100001010
1000010101000000000000000011111111111111111111111111111111111111111111
1111111111111111111111000010001000010001000000000000000011111111111111
1111111111111111111111111111111111111111111111111111000001000000000010
0000000000000000111111111111111111111111111111111111111111111111111111
1111111111110000000000110000000000000000000000111111111111111111111111
1111111111111111111111111111111111111111110000000000000000000000011000
0000000010000000000000000000000000100000000000000000000000000000000000
0000000100000000001111000000000000010000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000001000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000001100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000010000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000110000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100011001001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001001001
0010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000001100000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000110000010111000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010101000010101000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100010000100010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000000100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000110
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000111100000000100000000001111000
0000000000100000000000000000000000000000000000000000100000000000001000
0000000000100000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0010000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000010000010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000110000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000110001010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010010010010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000011000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000110000010111
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000101010000101010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100010000100010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111110000001000000000000010000000000000100000000000000
0000000000000000000000000010000000000000100000000000000010000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000110000000000000000000001000000000100000100000000000000000
0100000000000000000000000000000000000000010000110000000000000000001000
0000001010000000000000000000000100000000000000000000000000000000000000
0110011110000000000000000010000000001000000100000000000000000100000000
0000000000000000000000000000001111001000000000000000000010000010000000
0001000000000000000001000000000000000000000000000000000000000111011110
0000000000000000100000000010100000000000000000000001000000000000000000
0000000000000000000001100011000000000000000000100001000110001010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100100100100000000000000000010000000000000000000000000000
0000000010000100011110000000000000001000000010000001000000000000000000
0100000000000000000000000000000000000010000110001000000000000000001000
0000000110000000000000000000000100000000000000000000000000000000000010
0000010111100000000000000010000001100000101110000000000000000100000000
0000000000000000000000000000100001110011000000000000000010000101010000
1010100000000000000001000000000000000000000000000000000000100011110011
0000000000000000100001000100011000100000000000000001000000000000000000
0000000000000000001000011001111000000000000000100000100000000001000000
0000000000010000000000000000000000000000000000001100010000100000000000
0000001000000000101000000000000000000000010000000000000000000000000000
0000000011000110011110000000000000001000000000000000000000001111111100
0100000000000001000000000000000100000000000000000000000000000000000000
0100000000000001000000000000001111110000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000001001000000000
0000000000010000000001000001000000000000000000100000000000000000000000
0000000000000001100010010000000000000000010000000001001000000000000000
0000001000000000000000000000000000000000000001001010000000000000000000
0100000000010000001000000000000000001000000000000000000000000000000000
0000010000110000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000010000000100000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000010010
1001000000000000000001000010001100010100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100100100100
0000000000000000100000000000000000000000000000000000110001100010000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000001100010010110000000000000000010000000000110000000000000000
0000001000000000000000000000000000000000001100000110000100000000000000
0100000011000001011100000000000000001000000000000000000000000000000000
0011000100001001000000000000000100001010100001010100000000000000001000
0000000000000000000000000000000011000000101001000000000000000100001000
1100110001000000000000000010000000000000000000000000000000000011000100
1010000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000100101100011000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000100101001000010000
0000000000010000000000000000001111111111111110100000000000001000000000
0000001000000000000000000000000000000000000000100000000000001000000000
0000001000011000000000000000000000000000000000000000000000000100000000
0000000011100111011111101110000000010000000000000000000010000000001000
0010000000000000000001000000000000001110011101111110111000000100010010
0000000000000000100000000010010000000000000000000001000000000000001110
0111011111101110000000010111000000000000000000100000000010000001000000
0000000000010000000000000011100111011111101110000011100010000000000000
0000001000001000000000010000000000000000010000000000000011100111011111
1011100000111000010000000000000000001000000000100100000000000000000000
0100000000000000111001110111111011100000100100001000000000000000001000
0100011000101000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001001001001000000000000000000100000000
0001110011101111110111000000100001000111000000000000000010000000100000
0100000000000000000001000000000001110011101111110111000000100000010010
0000000000000000100000000001100000000000000000000001000000000001110011
1011111101110000001000010100010000000000000000100000011000001011100000
0000000000010000000000011100111011111101110000001000111000001000000000
0000001000010101000010101000000000000000010000000000011100111011111101
1100000010000010010010000000000000001000010001100110001000000000000000
0100000000000111001110111111011100000010001001011100000000000000001000
0010000000000100000000000000000100000000000111001110111111011100000100
1001000010000000000000000010000000001001000000000000000000000100000000
0001110011101111110111000001001010010001000000000000000010000000000000
0000100000111111110001000000000000010000000000000001000000000000000000
0000000000000000000001000000000000100000000000000001000000100000000000
0000000000000000000000000000000000001000000000000000100011000110010011
0010000001000000000000000000000100000000010000010000000000000000001000
0000000000100011000110010011001000001000011100000000000000000100000000
0100100000000000000000000010000000000000100011000110010011001000000100
1001000000000000000001000000000100000001000000000000000010000000000000
1000110001100100110010000100100100000000000000000001000001000000000010
0000000000000000100000000000001000110001100100110010000100100010000000
0000000000010000000001001000000000000000000000100000000000001000110001
1001001100100000110000100000000000000000010000010011000101000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010010010010000000000000000001000000000010001100011001001100100
0001000010001001000000000000000100000001000000100000000000000000001000
0000000100011000110010011001000001000001000100000000000000000100000000
0011000000000000000000000010000000000100011000110010011001000001000100
1000100000000000000001000000110000010101000000000000000010000000000100
0110001100100110010000010001001000100000000000000001000010101000010101
0000000000000000100000000001000110001100100110010000010000010001110000
0000000000010000100011001100010000000000000000100000000001000110001100
1001100100000100001110100100000000000000010000010000000000100000000000
0000001000000000010001100011001001100100000001001000010000000000000000
0100000000010010000000000000000000001000000000010001100011001001100100
0000010000100010000000000000000100000000000000000100000111111000001000
0000000001000000000000000010000000000000000000000000000000000000001000
0000000001000000000000000010000000100000000000000000000000000000000000
0000000000010000000000000001000010001100100110010000000100000000000000
0000001000000001000000100000000000000000010000000000000100001000110010
0110010000010000001000000000000000001000000001000100000000000000000000
0100000000000001000010001100100110010000000100001000000000000000001000
0000010000000010000000000000000100000000000001000010001100100110010000
0001001000000000000000000010000010000000000100000000000000000100000000
0000010000100011001001100100001001000100000000000000000010000000010001
0000000000000000000001000000000000010000100011001001100100001001000010
0000000000000000100000100110001100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010010010010000000
0000000000010000000000100001000110010011001000001000010000001000000000
0000001000000010000001000000000000000000010000000000100001000110010011
0010000010000001001000000000000000001000000000011000000000000000000000
0100000000001000010001100100110010000010001111100100000000000000001000
0001100000101010000000000000000100000000001000010001100100110010000010
0010010000100000000000000010000101010000101010000000000000000100000000
0010000100011001001100100000100000100000100000000000000010000100011001
1000100000000000000001000000000010000100011001001100100000100000010000
1000000000000000100000100000000001000000000000000001000000000010000100
0110010011001000000100010000100000000000000000100000000100010000000000
0000000000010000000000100001000110010011001000000100001000010000000000
0000001000000000000000010000001111000000010000000000001000000000000000
0100000000000000000000000000000000000000001000000000000000000000000000
1000000000110000000000000000000000000000000000000000000010000000000000
0010001100011001001100100001001000000000000000000001000000001000000100
0000000000000000100000000000001000110001100100110010000010001001000000
0000000000010000000010000100000000000000000000100000000000001000110001
1001001100100001001010010000000000000000010000000010000000010000000000
0000001000000000000010001100011001001100100001001001000000000000000000
0100000100000000001000000000000000001000000000000010001100011001001100
1000010010010000000000000000000100000000100001000000000000000000001000
0000000000100011000110010011001000010010100100000000000000000100000100
1100011000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100100100100000000000000000010000000000100
0110001100100110010000010000100010010000000000000001000000010000001000
0000000000000000100000000001000110001100100110010000010001001001000000
0000000000010000000000110000000000000000000000100000000001000110001100
1001100100000100000010010000000000000000010000001100000101010000000000
0000001000000000010001100011001001100100000100010010100100000000000000
0100001010100001010100000000000000001000000000010001100011001001100100
0001000010001001000000000000000100001000110011000100000000000000001000
0000000100011000110010011001000001000100101001000000000000000100000100
0000000010000000000000000010000000000100011000110010011001000001000010
0001000000000000000001000000001000010000000000000000000010000000000100
0110001100100110010000010000100001000000000000000001000000000000000010
0000011000000000010000000000000000000000000001000000000000000000000000
0000000000000000010000000000000000000000000001000000000001000000000000
0000000000000000000000000000000100000000000000001110011101001001111000
0001100000000000000000000010000000010000001000000000000000000100000000
0000001110011101001001111000000100001100000000000000000010000000010000
1000000000000000000001000000000000001110011101001001111000000110001100
0000000000000000100000000100000000100000000000000001000000000000001110
0111010010011110000001100010000000000000000000100000100000000001000000
0000000000010000000000000011100111010010011110000001100010000000000000
0000001000000001000010000000000000000000010000000000000011100111010010
0111100000011000110000000000000000001000001001100011000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001001001001000000000000000000100000000000111001110100100111100000010
0001000011000000000000000010000000100000010000000000000000000100000000
0001110011101001001111000000100001100010000000000000000010000000000110
0000000000000000000001000000000001110011101001001111000000100000010010
0000000000000000100000011000001010100000000000000001000000000001110011
1010010011110000001000011000110000000000000000100001010100001010100000
0000000000010000000000011100111010010011110000001000010000110000000000
0000001000010001100110001000000000000000010000000000011100111010010011
1100000010000110001100000000000000001000001000000000010000000000000000
0100000000000111001110100100111100000011100100001000000000000000001000
0000010000100000000000000000000100000000000111001110100100111100000011
1001110010000000000000000010000000000000001000000000000000000010000000
0000000000000000000010000000000000000000000000000000000000000001000000
0000000000000000000100000000000001100000000000000000000000000000000000
0000001000000000000000000000000000000001000011100000000000000000000000
0100000000100000001000000000000000001000000000000000000000000000000100
0011100000000000000000000000000100000000100001000000000000000000001000
0000000000000000000000000001000011100000000000000000000000000100000000
1000000001000000000000000010000000000000000000000000000001000011100000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000010000111000000000000000000000000001000000001000010000
0000000000000000100000000000000000000000000000010000111000000000000000
0000000000010000010011000110000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001001001001000000000000
0000001000000000000000000000000000100001110000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000100001
1100000000000000000000000000000100000000001100000000000000000000001000
0000000000000000000000001000011100000000000000000000000000000100000011
0000010101000000000000000010000000000000000000000000001000011100000000
0000000000000000000001000010101000010101000000000000000010000000000000
0000000000000010000111000000000000000000000000000001000010001100110001
0000000000000000100000000000000000000000000010000111000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000100001110000000000000000000000000000010000000010000100000000000000
0000001000000000000000000000000000100001110000000000000000000000000000
0100000000000000100000000000000000000010000000000000000000000000100000
0000000000000000000000000000000000000001100000000000000000000011000000
0000000000100000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000010000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000100000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010011000
1100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010110010010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000101000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000110000010101000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0101010000101010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100011001100100000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000001000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000100000000
0000000000000011000000000000000000000110000000000000000000000000000000
0000000000000000111111111111111111111000000000000000000010000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100110001100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
1100110100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000100100000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000101010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000101010000101010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100110011001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000010000000000000000000000000111111111
1111111111110000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000011000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001001100011000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000101100110100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000001001000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
1010100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001010100001010100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100110011001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000100000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000001000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001001100011000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001011001101000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000100000010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000010010000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000001010100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001010
1000010101000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001001100110010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000001000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000010000001111000000000000000000000000000000110000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010011000110000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001011001
1010000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001000000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000010010000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000010101000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010101000010101000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010011001100100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000100000000000000000000000000011110000000010
0111100000000000000000000000000000000000000000000000000000010000000001
0000000000000000000000000000000010000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100110001100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010110011010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000001
0000001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000100100000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000010101
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000101010000101010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010011001100100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0001000000000000000000000000001000010000000100000100000000000000000000
0000000000000000000000000000000000101110000100000000000000000000000000
0000000010000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000100000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000001000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000010000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100100001100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000101100110100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000001001000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000101010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000101010000
1010100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100110011001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000010000000000000000000000
0000010000101001011100010000000000000000000000000000000000000000000000
0000000001010010001000000000000000000000000000000000001100000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000000010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000100000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001001000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000101100110100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000001001000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001100001010100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001010100001010100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
1100110010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000100000000000000000000000000010000101001001000010
0000000000000000000000000000000000000000000000000000001010010001000000
0000000000000000000000000000000100000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0000100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000010000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000100000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010010000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001011001101000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000010010000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001100001010100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010101000010101000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001001100110010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010000000001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000001000
0000000000000000000000000100001010010010000100000000000000000000000000
0000000000000000000000000000010100100100000000000000000000000000000000
0000000110000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000001000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010011000010000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010110011010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0100100000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000011000010101000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010101000010101
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010011001100100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000100000000001000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000100000000000000000000000000000
1000010100100100010000000000000000000000000000000000000000000000000000
0000101001001000000000000000000000000000000000000000001000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001000000000001000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100110000100000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000010110011010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000100100000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000110000101010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000101010000101010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010011001
1001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000001000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000000000000000000000000000000111100011100010010000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000001000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010000000000100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100000000001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
1100001000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000101100110100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000001001000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000110000101011000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001010100001010100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000100110011001000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000001100000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000100000000
0001000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001001100001000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001011010101000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000000001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000010001
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000001100001010110000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001010100001010100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001010100110010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100000000000001000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000010000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100001000000000000100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010011000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001010110101000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000100001000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010101100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010101000010101000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001010100101010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000000000000001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000011000000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100001000000000000100000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000010000000000001000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000010000000000000100001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000001000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000100000000000010000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000010011000
0100000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000010101101010000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000010000000010000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000001000010000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000001000010101100001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0101010000101010000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000010101001010100000011000000000100000000
0000000000000000000000000000000000000000000000000000000010001000000000
0000010000110000000001000000000000000000000000000000000000000000000000
0000000000000000100001000000000000100000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000001000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000010000000000000100001111000000010000000000000
0000000000000000000000000000000000000000000000000001000010000000000001
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000100000000000001000011110000000100000000000000000000000
0000000000000000000000000000000000000000010001000000000000001000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100001000000000000100000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000100110000100000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000010
1011010100000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000100000000100000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000001000010000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000010000101011000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000101010000101010000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000101010010101000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100010000000000000010000111100000001000
0000000000000000000000000000000000000000000000000000000000000100001000
0000000001000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000100000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
1000000000000001000011111100000100000000000000000000000000000000000000
0000000000000000000000000010001000000000000010000011111100000100000000
0000000000000000000000000000000000000000000000000000000010001000000000
0000010000111111000001000000000000000000000000000000000000000000000000
0000000000000000100010000000000000010000111111000001000000000000000000
0000000000000000000000000000000000000000000000100010000000000000100000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000001001100001000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000101011010100000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0001000000001000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000010000100000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000010000
1010110000111111000001000000000000000000000000000000000000000000000000
0000000000000000100001010100001010100000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000101010010101000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000100000000000000100001111110000010000000000000000000000000000
0000000000000000000000000000000000001000100000000000001000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000110000011111111000100000000000000000000000
0000000000000000000000000000000000000000010001000000000000001000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100010000000000000010000111111110001000000000000000000000000000000000
0000000000000000000000000000000100010000000000000010000111111110001000
0000000000000000000000000000000000000000000000000000000000000100010000
0000000000100001111111100010000000000000000000000000000000000000000000
0000000000000000000001000100000000000000100001111111100010000000000000
0000000000000000000000000000000000000000000000000001000001001100001000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000001010110101000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000001000000001000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000100001000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000100001010110000111111110001000
0000000000000000000000000000000000000000000000000000000000000100001010
1000010101000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000001010100101010000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000100000000000000
1000011111111000100000000000000000000000000000000000000000000000000000
0000000000010001000000000000001000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000011111111111111101000000000000000000000000000000000000000000000000
0000000000000001111110000000000000011111111111111101000000000000000000
0000000000000000000000000000000000000000000001111110000000000000011111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111100000000000000111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111100000000000000111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1000000000000001111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111010011000010001111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111001010110
1010011111111111111101000000000000000000000000000000000000000000000000
0000000000000001111111111111111111111111111111111101000000000000000000
0000000000000000000000000000000000000000000001111111111111111111111111
1111111111010000000000000000000000000000000000000000000000000000000000
0000011111100001000010101111111111111111010000000000000000000000000000
0000000000000000000000000000000000011111111111111111111111111111111111
0100000000000000000000000000000000000000000000000000000000000000011111
1111111111111111111111111111110100000000000000000000000000000000000000
0000000000000000000000000111111000000000000001111111111111110100000000
0000000000000000000000000000000000000000000000000000000111111000000000
0000011111111111111101000000000000000000000000000000000000000000000000
0000000000000001111110000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100010010110000100010000111111110001000000000000000000000000000000000
0000000000000000000000000000000100010010101101010010000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000010
0000000100000001111111100010000000000000000000000000000000000000000000
0000000000000000000001000000001000010000000001111111100010000000000000
0000000000000000000000000000000000000000000000000001000100001000010101
0000011111111000100000000000000000000000000000000000000000000000000000
0000000000010000101010000101010000011111111000100000000000000000000000
0000000000000000000000000000000000000000010000010101001010100000011111
1110001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111111110001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111111110001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100010010110000100010000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000100101011010100100001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000100000000100000001111110000
0100000000000000000000000000000000000000000000000000000000000000001000
0000010000100000000011111100000100000000000000000000000000000000000000
0000000000000000000000000010001000010000101010000011111100000100000000
0000000000000000000000000000000000000000000000000000000010000101010000
1010100000111111000001000000000000000000000000000000000000000000000000
0000000000000000100000101010100101000000111111000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
1111110000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001111110000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000111100000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000100101100001000100001111000000010000000000000
0000000000000000000000000000000000000000000000000001000100101011010100
1000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000001000000001000000011110000000100000000000000000000000
0000000000000000000000000000000000000000010000000010000100000000011110
0000001000000000000000000000000000000000000000000000000000000000000000
0100010000100001010100000111100000001000000000000000000000000000000000
0000000000000000000000000000000100001010100001010100000111100000001000
0000000000000000000000000000000000000000000000000000000000000100000101
0011001010000001111000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000001111000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000011110000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
1001011000010001000011000000000100000000000000000000000000000000000000
0000000000000000000000000010001001010110101001000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000001000000
0010000000110000000001000000000000000000000000000000000000000000000000
0000000000000000100000000100001000000000110000000001000000000000000000
0000000000000000000000000000000000000000000000100010000100001010100000
1100000000010000000000000000000000000000000000000000000000000000000000
0000001000010101000010101000001100000000010000000000000000000000000000
0000000000000000000000000000000000001000001010011001010000001100000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000011000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000011000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001001011000011001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100010010101101010010000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000010000000010000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
1000010000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100001000010101000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000010101000010101
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000010100110010100000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010010110001010010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100010010101101100010000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000100000000100000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000010000010000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000010000101010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000101010000101010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000010100110
0101000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010010
1100010100100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000100011011011000100000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000100000000100
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000100000010000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001000011000101010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001010100001010100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000101001100101000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100101100010101000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
1000110110110001000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000001000000001000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000100000
0100000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010000110001010100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001010100001010100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000001010011001010000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001001011000101010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010001000110110110001000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000010000000010000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000001000000100000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010000
1100010101000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000010101000010101000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000001010011001010
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001001011000
1010100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100010001101101100010000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000100000000010000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000010000001000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100001100010101000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0101010000101010000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000010100110011000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010010101001010100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100010001
1011011000100000000000000010000000000000000000000000000000000000000000
0000000000000000000001000001000000000010000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000010000001000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000011000101010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000101010000101010000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000011001100110000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100111010010101000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000100011011011000100000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0010000000000100000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000100000010000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001000011000
1010100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100001010100001010100000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000011001100110000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100111010010101
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010001000110110110001000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000010000000000100000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000001000000100000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010000010001010100000000000000001000
0000000000000000000000000000000000000000000000000000000000000100001010
1000010101000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000110011001100000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001001110100101010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010001000110110
1100010000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000100000000001000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000001000000100000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100000100010101000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000010101000010101000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0001100110011000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000000000000000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000000000000000000
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000000000000000000000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100001011101001010100000000000000001000000000000000000000000000000000
0000000000000000000000000000000100010001101101100010000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000100
0000000010000000000000000010000000000000000000000000000000000000000000
0000000000000000000001000000010000001000000000000000000010000000000000
0000000000000000000000000000000000000000000000000001000100000100010101
0000000000000000100000000000000000000000000000000000000000000000000000
0000000000010000101010000101010000000000000000100000000000000000000000
0000000000000000000000000000000000000000010000001100110011000000000000
0000001000000000000000000000000000000000000000000000000000000000000000
0100000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000100000000000000000000000000000000001000
0000000000000000000000000000000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000000000000000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010000000000000000000000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000000000000
0000000000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000000000000000000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100001011101001010100000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000100011011011000100000000000000010000000000000000000000000000
0000000000000000000000000000000000001000001000000000010000000000000000
0100000000000000000000000000000000000000000000000000000000000000001000
0000100000010000000000000000000100000000000000000000000000000000000000
0000000000000000000000000010001000001000110010000000000000000100000000
0000000000000000000000000000000000000000000000000000000010000101010000
1010100000000000000001000000000000000000000000000000000000000000000000
0000000000000000100000011001100110000000000000000001000000000000000000
0000000000000000000000000000000000000000000000100000000000000000000000
0000000000010000000000000000000000000000000000000000000000000000000000
0000001000000000000000000000000000000000010000000000000000000000000000
0000000000000000000000000000000000001000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment