FPPS4/sys/dev/display_soft.pas

1342 lines
1.4 MiB

unit display_soft;
{$mode ObjFPC}{$H+}
interface
uses
LFQueue,
mqueue,
display_interface,
time,
kern_thr,
kern_mtx,
sched_ule;
type
p_attr=^t_attr;
t_attr=packed record
init :DWORD;
index:DWORD;
attr :t_register_buffer_attr;
size :QWORD;
end;
t_map_ptr=packed record
orig:Pointer; //original ptr
mirr:Pointer; //mirror ptr
base:Pointer; //base mmap
size:QWORD; //size mmap
end;
p_buffer=^t_buffer;
t_buffer=packed record
init :DWORD;
attr :DWORD;
left :t_map_ptr; //buffer ptr
right:t_map_ptr; //Stereo ptr
size :QWORD;
end;
PQNode=^TQNode;
TQNode=object
next_:PQNode;
end;
PQNodeSubmit=^TQNodeSubmit;
TQNodeSubmit=object(TQNode)
submit:t_submit_flip;
tsc :QWORD;
end;
TSubmitAlloc=object
FNodes:array[0..31] of TQNodeSubmit;
FAlloc:TIntrusiveMPSCQueue;
Procedure Init;
function Alloc:PQNodeSubmit;
procedure Free(P:PQNodeSubmit);
end;
PQNodeFlip=^TQNodeFlip;
TQNodeFlip=object(TQNode)
entry :STAILQ_ENTRY;
submit :PQNodeSubmit;
submit_id:QWORD;
end;
TFlipAlloc=object
FNodes:array[0..17] of TQNodeFlip;
FAlloc:TIntrusiveMPSCQueue;
FCount:Integer;
Procedure Init;
function Alloc:PQNodeFlip;
procedure Free(P:PQNodeFlip);
end;
TSubmitQueue=TIntrusiveMPSCQueue;
TBufStateChange=(
bSubmitFlip,
bSubmitFlipEop,
bTriggerFlipEop,
bFinishFlip
);
TDisplayHandleSoft=class(TDisplayHandle)
hWindow:THandle;
FHEvent:PRTLEvent;
FVEvent:PRTLEvent;
Ftd:p_kthread;
FSubmitAlloc:TSubmitAlloc;
FSubmitQueue:TSubmitQueue;
FFlipAlloc:TFlipAlloc;
FFlipQueue:STAILQ_HEAD;
FTerminate:Boolean;
Fflip_count:array[0..15] of Integer;
FPrevBufIndex:Integer;
Fsubmit_count:array[0..15] of PRTLEvent;
flip_rate:Integer;
vblank_count:Integer;
m_attr:array[0.. 3] of t_attr;
m_bufs:array[0..15] of t_buffer;
m_sbat:t_attr;
dst_cache:Pointer;
function Open ():Integer; override;
Destructor Destroy; override;
//function GetFlipStatus (status:p_flip_status):Integer; virtual;
//function GetResolutionStatus (status:p_resolution_status):Integer; virtual;
function SetFlipRate (rate:Integer):Integer; override;
function RegisterBufferAttribute (attrid:Byte;attr:p_register_buffer_attr):Integer; override;
function SubmitBufferAttribute (attrid:Byte;attr:p_register_buffer_attr):Integer; override;
function UnregisterBufferAttribute(attrid:Byte):Integer; override;
function RegisterBuffer (buf:p_register_buffer):Integer; override;
function UnregisterBuffer (index:Integer):Integer; override;
procedure SubmitNode (Node:PQNodeSubmit);
procedure BufferChangeState (state:TBufStateChange;bufferIndex:Integer);
procedure HackPreWait (submit:p_submit_flip);
function SubmitFlip (submit:p_submit_flip):Integer; override;
function SubmitFlipEop (submit:p_submit_flip;submit_id:QWORD):Integer; override;
function TriggerFlipEop (submit_id:QWORD):Integer; override;
function Vblank ():Boolean; override;
//
procedure OnFlip(Node:PQNodeSubmit);
end;
implementation
uses
errno,
windows,
{
Types,
LCLType,
LCLIntf,
}
md_time,
sys_bootparam,
vmparam,
vm_mmap;
//
Procedure TSubmitAlloc.Init;
var
i:Integer;
begin
FAlloc.Create;
For i:=0 to High(FNodes) do
begin
FAlloc.Push(@FNodes[i]);
end;
end;
function TSubmitAlloc.Alloc:PQNodeSubmit;
begin
Result:=nil;
FAlloc.Pop(Result);
end;
procedure TSubmitAlloc.Free(P:PQNodeSubmit);
begin
if (P=nil) then Exit;
FAlloc.Push(P);
end;
//
Procedure TFlipAlloc.Init;
var
i:Integer;
begin
FAlloc.Create;
For i:=0 to High(FNodes) do
begin
FAlloc.Push(@FNodes[i]);
end;
end;
function TFlipAlloc.Alloc:PQNodeFlip;
begin
Result:=nil;
FAlloc.Pop(Result);
if (Result<>nil) then
begin
System.InterlockedIncrement(FCount);
end;
end;
procedure TFlipAlloc.Free(P:PQNodeFlip);
begin
if (P=nil) then Exit;
FAlloc.Push(P);
System.InterlockedDecrement(FCount);
end;
//
procedure dce_thread(parameter:pointer); SysV_ABI_CDecl; forward;
function TDisplayHandleSoft.Open():Integer;
var
i:Integer;
begin
Result:=inherited;
FPrevBufIndex:=-1;
Writeln('OpenMainWindows->');
hWindow:=p_host_ipc.OpenMainWindows();
Writeln('OpenMainWindows:',hWindow);
FHEvent:=RTLEventCreate;
FVEvent:=RTLEventCreate;
FSubmitAlloc.Init;
FSubmitQueue.Create;
FFlipAlloc.Init;
STAILQ_INIT(@FFlipQueue);
For i:=0 to High(Fsubmit_count) do
begin
Fsubmit_count[i]:=RTLEventCreate;
RTLEventSetEvent(Fsubmit_count[i]);
end;
if (Ftd=nil) then
begin
kthread_add(@dce_thread,Self,@Ftd,0,'[dce_soft]');
end;
end;
Destructor TDisplayHandleSoft.Destroy;
var
i:Integer;
begin
if (Ftd<>nil) then
begin
FTerminate:=True;
RTLEventSetEvent(FHEvent);
RTLEventSetEvent(FVEvent);
WaitForThreadTerminate(Ftd^.td_handle,0);
thread_dec_ref(Ftd);
Ftd:=nil;
end;
For i:=0 to High(Fsubmit_count) do
begin
RTLEventDestroy(Fsubmit_count[i]);
end;
RTLEventDestroy(FHEvent);
RTLEventDestroy(FVEvent);
FreeMem(dst_cache);
inherited;
end;
function TDisplayHandleSoft.SetFlipRate(rate:Integer):Integer;
begin
flip_rate:=rate;
Result:=0;
end;
function get_buf_size(attr:p_register_buffer_attr):QWORD;
begin
//TODO: neo mode, etc
Result:=((attr^.pitchPixel+127) and (not 127))*
((attr^.height +127) and (not 127))*4;
end;
function TDisplayHandleSoft.RegisterBufferAttribute(attrid:Byte;attr:p_register_buffer_attr):Integer;
begin
if (m_attr[attrid].init<>0) then Exit(EINVAL);
m_attr[attrid].init :=1;
m_attr[attrid].index:=attrid;
m_attr[attrid].attr :=attr^;
m_attr[attrid].size :=get_buf_size(attr);
Result:=0;
end;
function TDisplayHandleSoft.SubmitBufferAttribute(attrid:Byte;attr:p_register_buffer_attr):Integer;
begin
if (m_attr[attrid].init=0) then Exit(EINVAL);
if (m_sbat.init<>0) then Exit(EBUSY);
m_sbat.attr :=attr^;
m_sbat.index:=attrid;
System.InterlockedExchange(m_sbat.init,1);
Result:=0;
end;
function TDisplayHandleSoft.UnregisterBufferAttribute(attrid:Byte):Integer;
begin
if (m_attr[attrid].init=0) then Exit(EINVAL);
if (m_sbat.init<>0) and (m_sbat.index=attrid) then Exit(EBUSY);
m_attr[attrid].init:=0;
Result:=0;
end;
function mirror_map(orig:Pointer;size:QWORD):t_map_ptr;
var
mask:QWORD;
base:Pointer;
begin
mask:=QWORD(orig) and PAGE_MASK;
size:=(size+mask+PAGE_MASK) and QWORD(not PAGE_MASK);
base:=vm_mmap.mirror_map(Pointer(QWORD(orig) and QWORD(not PAGE_MASK)),size);
Result.orig:=orig;
Result.mirr:=base+mask;
Result.base:=base;
Result.size:=size;
end;
procedure mirror_unmap(var m:t_map_ptr);
begin
vm_mmap.mirror_unmap(m.base,m.size);
end;
function TDisplayHandleSoft.RegisterBuffer(buf:p_register_buffer):Integer;
var
i,a:Integer;
left :t_map_ptr; //buffer ptr
right:t_map_ptr; //Stereo ptr
size:QWORD;
begin
i:=buf^.index;
a:=buf^.attrid;
if (m_bufs[i].init<>0) then Exit(EINVAL);
if (m_attr[a].init=0 ) then Exit(EINVAL);
if (buf^.left=nil) then Exit(EINVAL);
size:=m_attr[a].size;
left :=mirror_map(buf^.left ,size);
right:=mirror_map(buf^.right,size);
m_bufs[i].init :=1;
m_bufs[i].attr :=a;
m_bufs[i].left :=left;
m_bufs[i].right:=right;
m_bufs[i].size :=size;
//
labels [buf^.index]:=0; //reset
Fflip_count [buf^.index]:=0; //reset
//
RTLEventSetEvent(Fsubmit_count[buf^.index]);
//
Result:=0;
end;
function TDisplayHandleSoft.UnregisterBuffer(index:Integer):Integer;
begin
if (m_bufs[index].init=0) then Exit(EINVAL);
if (Fflip_count[index]<>0) then Exit(EBUSY);
m_bufs[index].init:=0;
mirror_unmap(m_bufs[index].left );
mirror_unmap(m_bufs[index].right);
Result:=0;
end;
type
// y x
t_index_pipe_bank=array[0..127,0..1023] of WORD;
const
index_pipe_bank_32:t_index_pipe_bank=
(
(0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300),
(16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316),
(64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364),
(80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380),
(128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428),
(144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444),
(192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492),
(208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508),
(16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172),
(16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188),
(16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236),
(16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252),
(16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300),
(16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316),
(16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364),
(16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380),
(8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596),
(8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612),
(8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660),
(8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676),
(8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724),
(8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740),
(8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788),
(8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804),
(25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468),
(25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484),
(25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532),
(25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548),
(25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596),
(25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612),
(25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660),
(25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676),
(5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180),
(5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196),
(5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244),
(5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260),
(5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308),
(5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324),
(5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372),
(5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388),
(21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052),
(21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068),
(21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116),
(21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132),
(21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180),
(21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196),
(21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244),
(21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260),
(13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476),
(13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492),
(13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540),
(13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556),
(13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604),
(13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620),
(14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668),
(14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684),
(30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348),
(30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364),
(30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412),
(30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428),
(30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476),
(30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492),
(30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540),
(30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556),
(6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156),
(6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172),
(6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220),
(6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236),
(6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284),
(6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300),
(6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348),
(6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364),
(22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028),
(22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044),
(22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092),
(22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108),
(22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156),
(22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172),
(22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220),
(22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236),
(14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452),
(14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468),
(14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516),
(14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532),
(14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580),
(14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596),
(15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644),
(15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660),
(31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324),
(31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340),
(31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388),
(31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404),
(31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452),
(31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468),
(31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516),
(31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532),
(3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228),
(3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244),
(3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292),
(3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308),
(3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356),
(3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372),
(3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420),
(3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436),
(19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100),
(19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116),
(19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164),
(19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180),
(19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228),
(19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244),
(19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292),
(19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308),
(11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524),
(11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540),
(11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588),
(11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604),
(11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652),
(11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668),
(11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716),
(11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732),
(28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396),
(28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412),
(28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460),
(28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476),
(28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524),
(28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540),
(28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588),
(28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604)
);
index_pipe_bank_neo_32:t_index_pipe_bank=
(
(0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300),
(16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316),
(64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364),
(80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380),
(128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428),
(144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444),
(192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492),
(208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508),
(256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556),
(272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572),
(320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620),
(336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636),
(384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684),
(400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700),
(448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748),
(464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764),
(16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404),
(16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420),
(16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468),
(16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484),
(17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532),
(17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548),
(17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596),
(17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612),
(17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660),
(17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676),
(17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724),
(17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740),
(17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788),
(17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804),
(17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852),
(17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868),
(11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036),
(11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052),
(11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100),
(11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116),
(11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164),
(11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180),
(11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228),
(11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244),
(11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292),
(11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308),
(11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356),
(11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372),
(11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420),
(11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436),
(11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484),
(11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500),
(28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140),
(28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156),
(28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204),
(28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220),
(28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268),
(28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284),
(28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332),
(28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348),
(28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396),
(28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412),
(28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460),
(28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476),
(28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524),
(28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540),
(28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588),
(28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604),
(12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012),
(12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028),
(12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076),
(12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092),
(12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140),
(12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156),
(12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204),
(12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220),
(12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268),
(12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284),
(12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332),
(12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348),
(12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396),
(12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412),
(12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460),
(12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476),
(29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116),
(29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132),
(29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180),
(29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196),
(29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244),
(29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260),
(29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308),
(29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324),
(29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372),
(29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388),
(29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436),
(29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452),
(29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500),
(29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516),
(29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564),
(29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580),
(7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132),
(7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148),
(7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196),
(7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212),
(7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260),
(7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276),
(7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324),
(7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340),
(7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388),
(7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404),
(7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452),
(7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468),
(7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516),
(7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532),
(7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580),
(7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596),
(24064,24068,24072,24076,24096,24100,24104,24108,24320,24324,24328,24332,24352,24356,24360,24364,23808,23812,23816,23820,23840,23844,23848,23852,23552,23556,23560,23564,23584,23588,23592,23596,23040,23044,23048,23052,23072,23076,23080,23084,23296,23300,23304,23308,23328,23332,23336,23340,22784,22788,22792,22796,22816,22820,22824,22828,22528,22532,22536,22540,22560,22564,22568,22572,22016,22020,22024,22028,22048,22052,22056,22060,22272,22276,22280,22284,22304,22308,22312,22316,21760,21764,21768,21772,21792,21796,21800,21804,21504,21508,21512,21516,21536,21540,21544,21548,20992,20996,21000,21004,21024,21028,21032,21036,21248,21252,21256,21260,21280,21284,21288,21292,20736,20740,20744,20748,20768,20772,20776,20780,20480,20484,20488,20492,20512,20516,20520,20524,19968,19972,19976,19980,20000,20004,20008,20012,20224,20228,20232,20236,20256,20260,20264,20268,19712,19716,19720,19724,19744,19748,19752,19756,19456,19460,19464,19468,19488,19492,19496,19500,18944,18948,18952,18956,18976,18980,18984,18988,19200,19204,19208,19212,19232,19236,19240,19244,18688,18692,18696,18700,18720,18724,18728,18732,18432,18436,18440,18444,18464,18468,18472,18476,17920,17924,17928,17932,17952,17956,17960,17964,18176,18180,18184,18188,18208,18212,18216,18220,17664,17668,17672,17676,17696,17700,17704,17708,17408,17412,17416,17420,17440,17444,17448,17452,16896,16900,16904,16908,16928,16932,16936,16940,17152,17156,17160,17164,17184,17188,17192,17196,16640,16644,16648,16652,16672,16676,16680,16684,16384,16388,16392,16396,16416,16420,16424,16428,32256,32260,32264,32268,32288,32292,32296,32300,32512,32516,32520,32524,32544,32548,32552,32556,32000,32004,32008,32012,32032,32036,32040,32044,31744,31748,31752,31756,31776,31780,31784,31788,31232,31236,31240,31244,31264,31268,31272,31276,31488,31492,31496,31500,31520,31524,31528,31532,30976,30980,30984,30988,31008,31012,31016,31020,30720,30724,30728,30732,30752,30756,30760,30764,30208,30212,30216,30220,30240,30244,30248,30252,30464,30468,30472,30476,30496,30500,30504,30508,29952,29956,29960,29964,29984,29988,29992,29996,29696,29700,29704,29708,29728,29732,29736,29740,29184,29188,29192,29196,29216,29220,29224,29228,29440,29444,29448,29452,29472,29476,29480,29484,28928,28932,28936,28940,28960,28964,28968,28972,28672,28676,28680,28684,28704,28708,28712,28716,28160,28164,28168,28172,28192,28196,28200,28204,28416,28420,28424,28428,28448,28452,28456,28460,27904,27908,27912,27916,27936,27940,27944,27948,27648,27652,27656,27660,27680,27684,27688,27692,27136,27140,27144,27148,27168,27172,27176,27180,27392,27396,27400,27404,27424,27428,27432,27436,26880,26884,26888,26892,26912,26916,26920,26924,26624,26628,26632,26636,26656,26660,26664,26668,26112,26116,26120,26124,26144,26148,26152,26156,26368,26372,26376,26380,26400,26404,26408,26412,25856,25860,25864,25868,25888,25892,25896,25900,25600,25604,25608,25612,25632,25636,25640,25644,25088,25092,25096,25100,25120,25124,25128,25132,25344,25348,25352,25356,25376,25380,25384,25388,24832,24836,24840,24844,24864,24868,24872,24876,24576,24580,24584,24588,24608,24612,24616,24620,7680,7684,7688,7692,7712,7716,7720,7724,7936,7940,7944,7948,7968,7972,7976,7980,7424,7428,7432,7436,7456,7460,7464,7468,7168,7172,7176,7180,7200,7204,7208,7212,6656,6660,6664,6668,6688,6692,6696,6700,6912,6916,6920,6924,6944,6948,6952,6956,6400,6404,6408,6412,6432,6436,6440,6444,6144,6148,6152,6156,6176,6180,6184,6188,5632,5636,5640,5644,5664,5668,5672,5676,5888,5892,5896,5900,5920,5924,5928,5932,5376,5380,5384,5388,5408,5412,5416,5420,5120,5124,5128,5132,5152,5156,5160,5164,4608,4612,4616,4620,4640,4644,4648,4652,4864,4868,4872,4876,4896,4900,4904,4908,4352,4356,4360,4364,4384,4388,4392,4396,4096,4100,4104,4108,4128,4132,4136,4140,3584,3588,3592,3596,3616,3620,3624,3628,3840,3844,3848,3852,3872,3876,3880,3884,3328,3332,3336,3340,3360,3364,3368,3372,3072,3076,3080,3084,3104,3108,3112,3116,2560,2564,2568,2572,2592,2596,2600,2604,2816,2820,2824,2828,2848,2852,2856,2860,2304,2308,2312,2316,2336,2340,2344,2348,2048,2052,2056,2060,2080,2084,2088,2092,1536,1540,1544,1548,1568,1572,1576,1580,1792,1796,1800,1804,1824,1828,1832,1836,1280,1284,1288,1292,1312,1316,1320,1324,1024,1028,1032,1036,1056,1060,1064,1068,512,516,520,524,544,548,552,556,768,772,776,780,800,804,808,812,256,260,264,268,288,292,296,300,0,4,8,12,32,36,40,44,15872,15876,15880,15884,15904,15908,15912,15916,16128,16132,16136,16140,16160,16164,16168,16172,15616,15620,15624,15628,15648,15652,15656,15660,15360,15364,15368,15372,15392,15396,15400,15404,14848,14852,14856,14860,14880,14884,14888,14892,15104,15108,15112,15116,15136,15140,15144,15148,14592,14596,14600,14604,14624,14628,14632,14636,14336,14340,14344,14348,14368,14372,14376,14380,13824,13828,13832,13836,13856,13860,13864,13868,14080,14084,14088,14092,14112,14116,14120,14124,13568,13572,13576,13580,13600,13604,13608,13612,13312,13316,13320,13324,13344,13348,13352,13356,12800,12804,12808,12812,12832,12836,12840,12844,13056,13060,13064,13068,13088,13092,13096,13100,12544,12548,12552,12556,12576,12580,12584,12588,12288,12292,12296,12300,12320,12324,12328,12332,11776,11780,11784,11788,11808,11812,11816,11820,12032,12036,12040,12044,12064,12068,12072,12076,11520,11524,11528,11532,11552,11556,11560,11564,11264,11268,11272,11276,11296,11300,11304,11308,10752,10756,10760,10764,10784,10788,10792,10796,11008,11012,11016,11020,11040,11044,11048,11052,10496,10500,10504,10508,10528,10532,10536,10540,10240,10244,10248,10252,10272,10276,10280,10284,9728,9732,9736,9740,9760,9764,9768,9772,9984,9988,9992,9996,10016,10020,10024,10028,9472,9476,9480,9484,9504,9508,9512,9516,9216,9220,9224,9228,9248,9252,9256,9260,8704,8708,8712,8716,8736,8740,8744,8748,8960,8964,8968,8972,8992,8996,9000,9004,8448,8452,8456,8460,8480,8484,8488,8492,8192,8196,8200,8204,8224,8228,8232,8236),
(24080,24084,24088,24092,24112,24116,24120,24124,24336,24340,24344,24348,24368,24372,24376,24380,23824,23828,23832,23836,23856,23860,23864,23868,23568,23572,23576,23580,23600,23604,23608,23612,23056,23060,23064,23068,23088,23092,23096,23100,23312,23316,23320,23324,23344,23348,23352,23356,22800,22804,22808,22812,22832,22836,22840,22844,22544,22548,22552,22556,22576,22580,22584,22588,22032,22036,22040,22044,22064,22068,22072,22076,22288,22292,22296,22300,22320,22324,22328,22332,21776,21780,21784,21788,21808,21812,21816,21820,21520,21524,21528,21532,21552,21556,21560,21564,21008,21012,21016,21020,21040,21044,21048,21052,21264,21268,21272,21276,21296,21300,21304,21308,20752,20756,20760,20764,20784,20788,20792,20796,20496,20500,20504,20508,20528,20532,20536,20540,19984,19988,19992,19996,20016,20020,20024,20028,20240,20244,20248,20252,20272,20276,20280,20284,19728,19732,19736,19740,19760,19764,19768,19772,19472,19476,19480,19484,19504,19508,19512,19516,18960,18964,18968,18972,18992,18996,19000,19004,19216,19220,19224,19228,19248,19252,19256,19260,18704,18708,18712,18716,18736,18740,18744,18748,18448,18452,18456,18460,18480,18484,18488,18492,17936,17940,17944,17948,17968,17972,17976,17980,18192,18196,18200,18204,18224,18228,18232,18236,17680,17684,17688,17692,17712,17716,17720,17724,17424,17428,17432,17436,17456,17460,17464,17468,16912,16916,16920,16924,16944,16948,16952,16956,17168,17172,17176,17180,17200,17204,17208,17212,16656,16660,16664,16668,16688,16692,16696,16700,16400,16404,16408,16412,16432,16436,16440,16444,32272,32276,32280,32284,32304,32308,32312,32316,32528,32532,32536,32540,32560,32564,32568,32572,32016,32020,32024,32028,32048,32052,32056,32060,31760,31764,31768,31772,31792,31796,31800,31804,31248,31252,31256,31260,31280,31284,31288,31292,31504,31508,31512,31516,31536,31540,31544,31548,30992,30996,31000,31004,31024,31028,31032,31036,30736,30740,30744,30748,30768,30772,30776,30780,30224,30228,30232,30236,30256,30260,30264,30268,30480,30484,30488,30492,30512,30516,30520,30524,29968,29972,29976,29980,30000,30004,30008,30012,29712,29716,29720,29724,29744,29748,29752,29756,29200,29204,29208,29212,29232,29236,29240,29244,29456,29460,29464,29468,29488,29492,29496,29500,28944,28948,28952,28956,28976,28980,28984,28988,28688,28692,28696,28700,28720,28724,28728,28732,28176,28180,28184,28188,28208,28212,28216,28220,28432,28436,28440,28444,28464,28468,28472,28476,27920,27924,27928,27932,27952,27956,27960,27964,27664,27668,27672,27676,27696,27700,27704,27708,27152,27156,27160,27164,27184,27188,27192,27196,27408,27412,27416,27420,27440,27444,27448,27452,26896,26900,26904,26908,26928,26932,26936,26940,26640,26644,26648,26652,26672,26676,26680,26684,26128,26132,26136,26140,26160,26164,26168,26172,26384,26388,26392,26396,26416,26420,26424,26428,25872,25876,25880,25884,25904,25908,25912,25916,25616,25620,25624,25628,25648,25652,25656,25660,25104,25108,25112,25116,25136,25140,25144,25148,25360,25364,25368,25372,25392,25396,25400,25404,24848,24852,24856,24860,24880,24884,24888,24892,24592,24596,24600,24604,24624,24628,24632,24636,7696,7700,7704,7708,7728,7732,7736,7740,7952,7956,7960,7964,7984,7988,7992,7996,7440,7444,7448,7452,7472,7476,7480,7484,7184,7188,7192,7196,7216,7220,7224,7228,6672,6676,6680,6684,6704,6708,6712,6716,6928,6932,6936,6940,6960,6964,6968,6972,6416,6420,6424,6428,6448,6452,6456,6460,6160,6164,6168,6172,6192,6196,6200,6204,5648,5652,5656,5660,5680,5684,5688,5692,5904,5908,5912,5916,5936,5940,5944,5948,5392,5396,5400,5404,5424,5428,5432,5436,5136,5140,5144,5148,5168,5172,5176,5180,4624,4628,4632,4636,4656,4660,4664,4668,4880,4884,4888,4892,4912,4916,4920,4924,4368,4372,4376,4380,4400,4404,4408,4412,4112,4116,4120,4124,4144,4148,4152,4156,3600,3604,3608,3612,3632,3636,3640,3644,3856,3860,3864,3868,3888,3892,3896,3900,3344,3348,3352,3356,3376,3380,3384,3388,3088,3092,3096,3100,3120,3124,3128,3132,2576,2580,2584,2588,2608,2612,2616,2620,2832,2836,2840,2844,2864,2868,2872,2876,2320,2324,2328,2332,2352,2356,2360,2364,2064,2068,2072,2076,2096,2100,2104,2108,1552,1556,1560,1564,1584,1588,1592,1596,1808,1812,1816,1820,1840,1844,1848,1852,1296,1300,1304,1308,1328,1332,1336,1340,1040,1044,1048,1052,1072,1076,1080,1084,528,532,536,540,560,564,568,572,784,788,792,796,816,820,824,828,272,276,280,284,304,308,312,316,16,20,24,28,48,52,56,60,15888,15892,15896,15900,15920,15924,15928,15932,16144,16148,16152,16156,16176,16180,16184,16188,15632,15636,15640,15644,15664,15668,15672,15676,15376,15380,15384,15388,15408,15412,15416,15420,14864,14868,14872,14876,14896,14900,14904,14908,15120,15124,15128,15132,15152,15156,15160,15164,14608,14612,14616,14620,14640,14644,14648,14652,14352,14356,14360,14364,14384,14388,14392,14396,13840,13844,13848,13852,13872,13876,13880,13884,14096,14100,14104,14108,14128,14132,14136,14140,13584,13588,13592,13596,13616,13620,13624,13628,13328,13332,13336,13340,13360,13364,13368,13372,12816,12820,12824,12828,12848,12852,12856,12860,13072,13076,13080,13084,13104,13108,13112,13116,12560,12564,12568,12572,12592,12596,12600,12604,12304,12308,12312,12316,12336,12340,12344,12348,11792,11796,11800,11804,11824,11828,11832,11836,12048,12052,12056,12060,12080,12084,12088,12092,11536,11540,11544,11548,11568,11572,11576,11580,11280,11284,11288,11292,11312,11316,11320,11324,10768,10772,10776,10780,10800,10804,10808,10812,11024,11028,11032,11036,11056,11060,11064,11068,10512,10516,10520,10524,10544,10548,10552,10556,10256,10260,10264,10268,10288,10292,10296,10300,9744,9748,9752,9756,9776,9780,9784,9788,10000,10004,10008,10012,10032,10036,10040,10044,9488,9492,9496,9500,9520,9524,9528,9532,9232,9236,9240,9244,9264,9268,9272,9276,8720,8724,8728,8732,8752,8756,8760,8764,8976,8980,8984,8988,9008,9012,9016,9020,8464,8468,8472,8476,8496,8500,8504,8508,8208,8212,8216,8220,8240,8244,8248,8252),
(24128,24132,24136,24140,24160,24164,24168,24172,24384,24388,24392,24396,24416,24420,24424,24428,23872,23876,23880,23884,23904,23908,23912,23916,23616,23620,23624,23628,23648,23652,23656,23660,23104,23108,23112,23116,23136,23140,23144,23148,23360,23364,23368,23372,23392,23396,23400,23404,22848,22852,22856,22860,22880,22884,22888,22892,22592,22596,22600,22604,22624,22628,22632,22636,22080,22084,22088,22092,22112,22116,22120,22124,22336,22340,22344,22348,22368,22372,22376,22380,21824,21828,21832,21836,21856,21860,21864,21868,21568,21572,21576,21580,21600,21604,21608,21612,21056,21060,21064,21068,21088,21092,21096,21100,21312,21316,21320,21324,21344,21348,21352,21356,20800,20804,20808,20812,20832,20836,20840,20844,20544,20548,20552,20556,20576,20580,20584,20588,20032,20036,20040,20044,20064,20068,20072,20076,20288,20292,20296,20300,20320,20324,20328,20332,19776,19780,19784,19788,19808,19812,19816,19820,19520,19524,19528,19532,19552,19556,19560,19564,19008,19012,19016,19020,19040,19044,19048,19052,19264,19268,19272,19276,19296,19300,19304,19308,18752,18756,18760,18764,18784,18788,18792,18796,18496,18500,18504,18508,18528,18532,18536,18540,17984,17988,17992,17996,18016,18020,18024,18028,18240,18244,18248,18252,18272,18276,18280,18284,17728,17732,17736,17740,17760,17764,17768,17772,17472,17476,17480,17484,17504,17508,17512,17516,16960,16964,16968,16972,16992,16996,17000,17004,17216,17220,17224,17228,17248,17252,17256,17260,16704,16708,16712,16716,16736,16740,16744,16748,16448,16452,16456,16460,16480,16484,16488,16492,32320,32324,32328,32332,32352,32356,32360,32364,32576,32580,32584,32588,32608,32612,32616,32620,32064,32068,32072,32076,32096,32100,32104,32108,31808,31812,31816,31820,31840,31844,31848,31852,31296,31300,31304,31308,31328,31332,31336,31340,31552,31556,31560,31564,31584,31588,31592,31596,31040,31044,31048,31052,31072,31076,31080,31084,30784,30788,30792,30796,30816,30820,30824,30828,30272,30276,30280,30284,30304,30308,30312,30316,30528,30532,30536,30540,30560,30564,30568,30572,30016,30020,30024,30028,30048,30052,30056,30060,29760,29764,29768,29772,29792,29796,29800,29804,29248,29252,29256,29260,29280,29284,29288,29292,29504,29508,29512,29516,29536,29540,29544,29548,28992,28996,29000,29004,29024,29028,29032,29036,28736,28740,28744,28748,28768,28772,28776,28780,28224,28228,28232,28236,28256,28260,28264,28268,28480,28484,28488,28492,28512,28516,28520,28524,27968,27972,27976,27980,28000,28004,28008,28012,27712,27716,27720,27724,27744,27748,27752,27756,27200,27204,27208,27212,27232,27236,27240,27244,27456,27460,27464,27468,27488,27492,27496,27500,26944,26948,26952,26956,26976,26980,26984,26988,26688,26692,26696,26700,26720,26724,26728,26732,26176,26180,26184,26188,26208,26212,26216,26220,26432,26436,26440,26444,26464,26468,26472,26476,25920,25924,25928,25932,25952,25956,25960,25964,25664,25668,25672,25676,25696,25700,25704,25708,25152,25156,25160,25164,25184,25188,25192,25196,25408,25412,25416,25420,25440,25444,25448,25452,24896,24900,24904,24908,24928,24932,24936,24940,24640,24644,24648,24652,24672,24676,24680,24684,7744,7748,7752,7756,7776,7780,7784,7788,8000,8004,8008,8012,8032,8036,8040,8044,7488,7492,7496,7500,7520,7524,7528,7532,7232,7236,7240,7244,7264,7268,7272,7276,6720,6724,6728,6732,6752,6756,6760,6764,6976,6980,6984,6988,7008,7012,7016,7020,6464,6468,6472,6476,6496,6500,6504,6508,6208,6212,6216,6220,6240,6244,6248,6252,5696,5700,5704,5708,5728,5732,5736,5740,5952,5956,5960,5964,5984,5988,5992,5996,5440,5444,5448,5452,5472,5476,5480,5484,5184,5188,5192,5196,5216,5220,5224,5228,4672,4676,4680,4684,4704,4708,4712,4716,4928,4932,4936,4940,4960,4964,4968,4972,4416,4420,4424,4428,4448,4452,4456,4460,4160,4164,4168,4172,4192,4196,4200,4204,3648,3652,3656,3660,3680,3684,3688,3692,3904,3908,3912,3916,3936,3940,3944,3948,3392,3396,3400,3404,3424,3428,3432,3436,3136,3140,3144,3148,3168,3172,3176,3180,2624,2628,2632,2636,2656,2660,2664,2668,2880,2884,2888,2892,2912,2916,2920,2924,2368,2372,2376,2380,2400,2404,2408,2412,2112,2116,2120,2124,2144,2148,2152,2156,1600,1604,1608,1612,1632,1636,1640,1644,1856,1860,1864,1868,1888,1892,1896,1900,1344,1348,1352,1356,1376,1380,1384,1388,1088,1092,1096,1100,1120,1124,1128,1132,576,580,584,588,608,612,616,620,832,836,840,844,864,868,872,876,320,324,328,332,352,356,360,364,64,68,72,76,96,100,104,108,15936,15940,15944,15948,15968,15972,15976,15980,16192,16196,16200,16204,16224,16228,16232,16236,15680,15684,15688,15692,15712,15716,15720,15724,15424,15428,15432,15436,15456,15460,15464,15468,14912,14916,14920,14924,14944,14948,14952,14956,15168,15172,15176,15180,15200,15204,15208,15212,14656,14660,14664,14668,14688,14692,14696,14700,14400,14404,14408,14412,14432,14436,14440,14444,13888,13892,13896,13900,13920,13924,13928,13932,14144,14148,14152,14156,14176,14180,14184,14188,13632,13636,13640,13644,13664,13668,13672,13676,13376,13380,13384,13388,13408,13412,13416,13420,12864,12868,12872,12876,12896,12900,12904,12908,13120,13124,13128,13132,13152,13156,13160,13164,12608,12612,12616,12620,12640,12644,12648,12652,12352,12356,12360,12364,12384,12388,12392,12396,11840,11844,11848,11852,11872,11876,11880,11884,12096,12100,12104,12108,12128,12132,12136,12140,11584,11588,11592,11596,11616,11620,11624,11628,11328,11332,11336,11340,11360,11364,11368,11372,10816,10820,10824,10828,10848,10852,10856,10860,11072,11076,11080,11084,11104,11108,11112,11116,10560,10564,10568,10572,10592,10596,10600,10604,10304,10308,10312,10316,10336,10340,10344,10348,9792,9796,9800,9804,9824,9828,9832,9836,10048,10052,10056,10060,10080,10084,10088,10092,9536,9540,9544,9548,9568,9572,9576,9580,9280,9284,9288,9292,9312,9316,9320,9324,8768,8772,8776,8780,8800,8804,8808,8812,9024,9028,9032,9036,9056,9060,9064,9068,8512,8516,8520,8524,8544,8548,8552,8556,8256,8260,8264,8268,8288,8292,8296,8300),
(24144,24148,24152,24156,24176,24180,24184,24188,24400,24404,24408,24412,24432,24436,24440,24444,23888,23892,23896,23900,23920,23924,23928,23932,23632,23636,23640,23644,23664,23668,23672,23676,23120,23124,23128,23132,23152,23156,23160,23164,23376,23380,23384,23388,23408,23412,23416,23420,22864,22868,22872,22876,22896,22900,22904,22908,22608,22612,22616,22620,22640,22644,22648,22652,22096,22100,22104,22108,22128,22132,22136,22140,22352,22356,22360,22364,22384,22388,22392,22396,21840,21844,21848,21852,21872,21876,21880,21884,21584,21588,21592,21596,21616,21620,21624,21628,21072,21076,21080,21084,21104,21108,21112,21116,21328,21332,21336,21340,21360,21364,21368,21372,20816,20820,20824,20828,20848,20852,20856,20860,20560,20564,20568,20572,20592,20596,20600,20604,20048,20052,20056,20060,20080,20084,20088,20092,20304,20308,20312,20316,20336,20340,20344,20348,19792,19796,19800,19804,19824,19828,19832,19836,19536,19540,19544,19548,19568,19572,19576,19580,19024,19028,19032,19036,19056,19060,19064,19068,19280,19284,19288,19292,19312,19316,19320,19324,18768,18772,18776,18780,18800,18804,18808,18812,18512,18516,18520,18524,18544,18548,18552,18556,18000,18004,18008,18012,18032,18036,18040,18044,18256,18260,18264,18268,18288,18292,18296,18300,17744,17748,17752,17756,17776,17780,17784,17788,17488,17492,17496,17500,17520,17524,17528,17532,16976,16980,16984,16988,17008,17012,17016,17020,17232,17236,17240,17244,17264,17268,17272,17276,16720,16724,16728,16732,16752,16756,16760,16764,16464,16468,16472,16476,16496,16500,16504,16508,32336,32340,32344,32348,32368,32372,32376,32380,32592,32596,32600,32604,32624,32628,32632,32636,32080,32084,32088,32092,32112,32116,32120,32124,31824,31828,31832,31836,31856,31860,31864,31868,31312,31316,31320,31324,31344,31348,31352,31356,31568,31572,31576,31580,31600,31604,31608,31612,31056,31060,31064,31068,31088,31092,31096,31100,30800,30804,30808,30812,30832,30836,30840,30844,30288,30292,30296,30300,30320,30324,30328,30332,30544,30548,30552,30556,30576,30580,30584,30588,30032,30036,30040,30044,30064,30068,30072,30076,29776,29780,29784,29788,29808,29812,29816,29820,29264,29268,29272,29276,29296,29300,29304,29308,29520,29524,29528,29532,29552,29556,29560,29564,29008,29012,29016,29020,29040,29044,29048,29052,28752,28756,28760,28764,28784,28788,28792,28796,28240,28244,28248,28252,28272,28276,28280,28284,28496,28500,28504,28508,28528,28532,28536,28540,27984,27988,27992,27996,28016,28020,28024,28028,27728,27732,27736,27740,27760,27764,27768,27772,27216,27220,27224,27228,27248,27252,27256,27260,27472,27476,27480,27484,27504,27508,27512,27516,26960,26964,26968,26972,26992,26996,27000,27004,26704,26708,26712,26716,26736,26740,26744,26748,26192,26196,26200,26204,26224,26228,26232,26236,26448,26452,26456,26460,26480,26484,26488,26492,25936,25940,25944,25948,25968,25972,25976,25980,25680,25684,25688,25692,25712,25716,25720,25724,25168,25172,25176,25180,25200,25204,25208,25212,25424,25428,25432,25436,25456,25460,25464,25468,24912,24916,24920,24924,24944,24948,24952,24956,24656,24660,24664,24668,24688,24692,24696,24700,7760,7764,7768,7772,7792,7796,7800,7804,8016,8020,8024,8028,8048,8052,8056,8060,7504,7508,7512,7516,7536,7540,7544,7548,7248,7252,7256,7260,7280,7284,7288,7292,6736,6740,6744,6748,6768,6772,6776,6780,6992,6996,7000,7004,7024,7028,7032,7036,6480,6484,6488,6492,6512,6516,6520,6524,6224,6228,6232,6236,6256,6260,6264,6268,5712,5716,5720,5724,5744,5748,5752,5756,5968,5972,5976,5980,6000,6004,6008,6012,5456,5460,5464,5468,5488,5492,5496,5500,5200,5204,5208,5212,5232,5236,5240,5244,4688,4692,4696,4700,4720,4724,4728,4732,4944,4948,4952,4956,4976,4980,4984,4988,4432,4436,4440,4444,4464,4468,4472,4476,4176,4180,4184,4188,4208,4212,4216,4220,3664,3668,3672,3676,3696,3700,3704,3708,3920,3924,3928,3932,3952,3956,3960,3964,3408,3412,3416,3420,3440,3444,3448,3452,3152,3156,3160,3164,3184,3188,3192,3196,2640,2644,2648,2652,2672,2676,2680,2684,2896,2900,2904,2908,2928,2932,2936,2940,2384,2388,2392,2396,2416,2420,2424,2428,2128,2132,2136,2140,2160,2164,2168,2172,1616,1620,1624,1628,1648,1652,1656,1660,1872,1876,1880,1884,1904,1908,1912,1916,1360,1364,1368,1372,1392,1396,1400,1404,1104,1108,1112,1116,1136,1140,1144,1148,592,596,600,604,624,628,632,636,848,852,856,860,880,884,888,892,336,340,344,348,368,372,376,380,80,84,88,92,112,116,120,124,15952,15956,15960,15964,15984,15988,15992,15996,16208,16212,16216,16220,16240,16244,16248,16252,15696,15700,15704,15708,15728,15732,15736,15740,15440,15444,15448,15452,15472,15476,15480,15484,14928,14932,14936,14940,14960,14964,14968,14972,15184,15188,15192,15196,15216,15220,15224,15228,14672,14676,14680,14684,14704,14708,14712,14716,14416,14420,14424,14428,14448,14452,14456,14460,13904,13908,13912,13916,13936,13940,13944,13948,14160,14164,14168,14172,14192,14196,14200,14204,13648,13652,13656,13660,13680,13684,13688,13692,13392,13396,13400,13404,13424,13428,13432,13436,12880,12884,12888,12892,12912,12916,12920,12924,13136,13140,13144,13148,13168,13172,13176,13180,12624,12628,12632,12636,12656,12660,12664,12668,12368,12372,12376,12380,12400,12404,12408,12412,11856,11860,11864,11868,11888,11892,11896,11900,12112,12116,12120,12124,12144,12148,12152,12156,11600,11604,11608,11612,11632,11636,11640,11644,11344,11348,11352,11356,11376,11380,11384,11388,10832,10836,10840,10844,10864,10868,10872,10876,11088,11092,11096,11100,11120,11124,11128,11132,10576,10580,10584,10588,10608,10612,10616,10620,10320,10324,10328,10332,10352,10356,10360,10364,9808,9812,9816,9820,9840,9844,9848,9852,10064,10068,10072,10076,10096,10100,10104,10108,9552,9556,9560,9564,9584,9588,9592,9596,9296,9300,9304,9308,9328,9332,9336,9340,8784,8788,8792,8796,8816,8820,8824,8828,9040,9044,9048,9052,9072,9076,9080,9084,8528,8532,8536,8540,8560,8564,8568,8572,8272,8276,8280,8284,8304,8308,8312,8316),
(24192,24196,24200,24204,24224,24228,24232,24236,24448,24452,24456,24460,24480,24484,24488,24492,23936,23940,23944,23948,23968,23972,23976,23980,23680,23684,23688,23692,23712,23716,23720,23724,23168,23172,23176,23180,23200,23204,23208,23212,23424,23428,23432,23436,23456,23460,23464,23468,22912,22916,22920,22924,22944,22948,22952,22956,22656,22660,22664,22668,22688,22692,22696,22700,22144,22148,22152,22156,22176,22180,22184,22188,22400,22404,22408,22412,22432,22436,22440,22444,21888,21892,21896,21900,21920,21924,21928,21932,21632,21636,21640,21644,21664,21668,21672,21676,21120,21124,21128,21132,21152,21156,21160,21164,21376,21380,21384,21388,21408,21412,21416,21420,20864,20868,20872,20876,20896,20900,20904,20908,20608,20612,20616,20620,20640,20644,20648,20652,20096,20100,20104,20108,20128,20132,20136,20140,20352,20356,20360,20364,20384,20388,20392,20396,19840,19844,19848,19852,19872,19876,19880,19884,19584,19588,19592,19596,19616,19620,19624,19628,19072,19076,19080,19084,19104,19108,19112,19116,19328,19332,19336,19340,19360,19364,19368,19372,18816,18820,18824,18828,18848,18852,18856,18860,18560,18564,18568,18572,18592,18596,18600,18604,18048,18052,18056,18060,18080,18084,18088,18092,18304,18308,18312,18316,18336,18340,18344,18348,17792,17796,17800,17804,17824,17828,17832,17836,17536,17540,17544,17548,17568,17572,17576,17580,17024,17028,17032,17036,17056,17060,17064,17068,17280,17284,17288,17292,17312,17316,17320,17324,16768,16772,16776,16780,16800,16804,16808,16812,16512,16516,16520,16524,16544,16548,16552,16556,32384,32388,32392,32396,32416,32420,32424,32428,32640,32644,32648,32652,32672,32676,32680,32684,32128,32132,32136,32140,32160,32164,32168,32172,31872,31876,31880,31884,31904,31908,31912,31916,31360,31364,31368,31372,31392,31396,31400,31404,31616,31620,31624,31628,31648,31652,31656,31660,31104,31108,31112,31116,31136,31140,31144,31148,30848,30852,30856,30860,30880,30884,30888,30892,30336,30340,30344,30348,30368,30372,30376,30380,30592,30596,30600,30604,30624,30628,30632,30636,30080,30084,30088,30092,30112,30116,30120,30124,29824,29828,29832,29836,29856,29860,29864,29868,29312,29316,29320,29324,29344,29348,29352,29356,29568,29572,29576,29580,29600,29604,29608,29612,29056,29060,29064,29068,29088,29092,29096,29100,28800,28804,28808,28812,28832,28836,28840,28844,28288,28292,28296,28300,28320,28324,28328,28332,28544,28548,28552,28556,28576,28580,28584,28588,28032,28036,28040,28044,28064,28068,28072,28076,27776,27780,27784,27788,27808,27812,27816,27820,27264,27268,27272,27276,27296,27300,27304,27308,27520,27524,27528,27532,27552,27556,27560,27564,27008,27012,27016,27020,27040,27044,27048,27052,26752,26756,26760,26764,26784,26788,26792,26796,26240,26244,26248,26252,26272,26276,26280,26284,26496,26500,26504,26508,26528,26532,26536,26540,25984,25988,25992,25996,26016,26020,26024,26028,25728,25732,25736,25740,25760,25764,25768,25772,25216,25220,25224,25228,25248,25252,25256,25260,25472,25476,25480,25484,25504,25508,25512,25516,24960,24964,24968,24972,24992,24996,25000,25004,24704,24708,24712,24716,24736,24740,24744,24748,7808,7812,7816,7820,7840,7844,7848,7852,8064,8068,8072,8076,8096,8100,8104,8108,7552,7556,7560,7564,7584,7588,7592,7596,7296,7300,7304,7308,7328,7332,7336,7340,6784,6788,6792,6796,6816,6820,6824,6828,7040,7044,7048,7052,7072,7076,7080,7084,6528,6532,6536,6540,6560,6564,6568,6572,6272,6276,6280,6284,6304,6308,6312,6316,5760,5764,5768,5772,5792,5796,5800,5804,6016,6020,6024,6028,6048,6052,6056,6060,5504,5508,5512,5516,5536,5540,5544,5548,5248,5252,5256,5260,5280,5284,5288,5292,4736,4740,4744,4748,4768,4772,4776,4780,4992,4996,5000,5004,5024,5028,5032,5036,4480,4484,4488,4492,4512,4516,4520,4524,4224,4228,4232,4236,4256,4260,4264,4268,3712,3716,3720,3724,3744,3748,3752,3756,3968,3972,3976,3980,4000,4004,4008,4012,3456,3460,3464,3468,3488,3492,3496,3500,3200,3204,3208,3212,3232,3236,3240,3244,2688,2692,2696,2700,2720,2724,2728,2732,2944,2948,2952,2956,2976,2980,2984,2988,2432,2436,2440,2444,2464,2468,2472,2476,2176,2180,2184,2188,2208,2212,2216,2220,1664,1668,1672,1676,1696,1700,1704,1708,1920,1924,1928,1932,1952,1956,1960,1964,1408,1412,1416,1420,1440,1444,1448,1452,1152,1156,1160,1164,1184,1188,1192,1196,640,644,648,652,672,676,680,684,896,900,904,908,928,932,936,940,384,388,392,396,416,420,424,428,128,132,136,140,160,164,168,172,16000,16004,16008,16012,16032,16036,16040,16044,16256,16260,16264,16268,16288,16292,16296,16300,15744,15748,15752,15756,15776,15780,15784,15788,15488,15492,15496,15500,15520,15524,15528,15532,14976,14980,14984,14988,15008,15012,15016,15020,15232,15236,15240,15244,15264,15268,15272,15276,14720,14724,14728,14732,14752,14756,14760,14764,14464,14468,14472,14476,14496,14500,14504,14508,13952,13956,13960,13964,13984,13988,13992,13996,14208,14212,14216,14220,14240,14244,14248,14252,13696,13700,13704,13708,13728,13732,13736,13740,13440,13444,13448,13452,13472,13476,13480,13484,12928,12932,12936,12940,12960,12964,12968,12972,13184,13188,13192,13196,13216,13220,13224,13228,12672,12676,12680,12684,12704,12708,12712,12716,12416,12420,12424,12428,12448,12452,12456,12460,11904,11908,11912,11916,11936,11940,11944,11948,12160,12164,12168,12172,12192,12196,12200,12204,11648,11652,11656,11660,11680,11684,11688,11692,11392,11396,11400,11404,11424,11428,11432,11436,10880,10884,10888,10892,10912,10916,10920,10924,11136,11140,11144,11148,11168,11172,11176,11180,10624,10628,10632,10636,10656,10660,10664,10668,10368,10372,10376,10380,10400,10404,10408,10412,9856,9860,9864,9868,9888,9892,9896,9900,10112,10116,10120,10124,10144,10148,10152,10156,9600,9604,9608,9612,9632,9636,9640,9644,9344,9348,9352,9356,9376,9380,9384,9388,8832,8836,8840,8844,8864,8868,8872,8876,9088,9092,9096,9100,9120,9124,9128,9132,8576,8580,8584,8588,8608,8612,8616,8620,8320,8324,8328,8332,8352,8356,8360,8364),
(24208,24212,24216,24220,24240,24244,24248,24252,24464,24468,24472,24476,24496,24500,24504,24508,23952,23956,23960,23964,23984,23988,23992,23996,23696,23700,23704,23708,23728,23732,23736,23740,23184,23188,23192,23196,23216,23220,23224,23228,23440,23444,23448,23452,23472,23476,23480,23484,22928,22932,22936,22940,22960,22964,22968,22972,22672,22676,22680,22684,22704,22708,22712,22716,22160,22164,22168,22172,22192,22196,22200,22204,22416,22420,22424,22428,22448,22452,22456,22460,21904,21908,21912,21916,21936,21940,21944,21948,21648,21652,21656,21660,21680,21684,21688,21692,21136,21140,21144,21148,21168,21172,21176,21180,21392,21396,21400,21404,21424,21428,21432,21436,20880,20884,20888,20892,20912,20916,20920,20924,20624,20628,20632,20636,20656,20660,20664,20668,20112,20116,20120,20124,20144,20148,20152,20156,20368,20372,20376,20380,20400,20404,20408,20412,19856,19860,19864,19868,19888,19892,19896,19900,19600,19604,19608,19612,19632,19636,19640,19644,19088,19092,19096,19100,19120,19124,19128,19132,19344,19348,19352,19356,19376,19380,19384,19388,18832,18836,18840,18844,18864,18868,18872,18876,18576,18580,18584,18588,18608,18612,18616,18620,18064,18068,18072,18076,18096,18100,18104,18108,18320,18324,18328,18332,18352,18356,18360,18364,17808,17812,17816,17820,17840,17844,17848,17852,17552,17556,17560,17564,17584,17588,17592,17596,17040,17044,17048,17052,17072,17076,17080,17084,17296,17300,17304,17308,17328,17332,17336,17340,16784,16788,16792,16796,16816,16820,16824,16828,16528,16532,16536,16540,16560,16564,16568,16572,32400,32404,32408,32412,32432,32436,32440,32444,32656,32660,32664,32668,32688,32692,32696,32700,32144,32148,32152,32156,32176,32180,32184,32188,31888,31892,31896,31900,31920,31924,31928,31932,31376,31380,31384,31388,31408,31412,31416,31420,31632,31636,31640,31644,31664,31668,31672,31676,31120,31124,31128,31132,31152,31156,31160,31164,30864,30868,30872,30876,30896,30900,30904,30908,30352,30356,30360,30364,30384,30388,30392,30396,30608,30612,30616,30620,30640,30644,30648,30652,30096,30100,30104,30108,30128,30132,30136,30140,29840,29844,29848,29852,29872,29876,29880,29884,29328,29332,29336,29340,29360,29364,29368,29372,29584,29588,29592,29596,29616,29620,29624,29628,29072,29076,29080,29084,29104,29108,29112,29116,28816,28820,28824,28828,28848,28852,28856,28860,28304,28308,28312,28316,28336,28340,28344,28348,28560,28564,28568,28572,28592,28596,28600,28604,28048,28052,28056,28060,28080,28084,28088,28092,27792,27796,27800,27804,27824,27828,27832,27836,27280,27284,27288,27292,27312,27316,27320,27324,27536,27540,27544,27548,27568,27572,27576,27580,27024,27028,27032,27036,27056,27060,27064,27068,26768,26772,26776,26780,26800,26804,26808,26812,26256,26260,26264,26268,26288,26292,26296,26300,26512,26516,26520,26524,26544,26548,26552,26556,26000,26004,26008,26012,26032,26036,26040,26044,25744,25748,25752,25756,25776,25780,25784,25788,25232,25236,25240,25244,25264,25268,25272,25276,25488,25492,25496,25500,25520,25524,25528,25532,24976,24980,24984,24988,25008,25012,25016,25020,24720,24724,24728,24732,24752,24756,24760,24764,7824,7828,7832,7836,7856,7860,7864,7868,8080,8084,8088,8092,8112,8116,8120,8124,7568,7572,7576,7580,7600,7604,7608,7612,7312,7316,7320,7324,7344,7348,7352,7356,6800,6804,6808,6812,6832,6836,6840,6844,7056,7060,7064,7068,7088,7092,7096,7100,6544,6548,6552,6556,6576,6580,6584,6588,6288,6292,6296,6300,6320,6324,6328,6332,5776,5780,5784,5788,5808,5812,5816,5820,6032,6036,6040,6044,6064,6068,6072,6076,5520,5524,5528,5532,5552,5556,5560,5564,5264,5268,5272,5276,5296,5300,5304,5308,4752,4756,4760,4764,4784,4788,4792,4796,5008,5012,5016,5020,5040,5044,5048,5052,4496,4500,4504,4508,4528,4532,4536,4540,4240,4244,4248,4252,4272,4276,4280,4284,3728,3732,3736,3740,3760,3764,3768,3772,3984,3988,3992,3996,4016,4020,4024,4028,3472,3476,3480,3484,3504,3508,3512,3516,3216,3220,3224,3228,3248,3252,3256,3260,2704,2708,2712,2716,2736,2740,2744,2748,2960,2964,2968,2972,2992,2996,3000,3004,2448,2452,2456,2460,2480,2484,2488,2492,2192,2196,2200,2204,2224,2228,2232,2236,1680,1684,1688,1692,1712,1716,1720,1724,1936,1940,1944,1948,1968,1972,1976,1980,1424,1428,1432,1436,1456,1460,1464,1468,1168,1172,1176,1180,1200,1204,1208,1212,656,660,664,668,688,692,696,700,912,916,920,924,944,948,952,956,400,404,408,412,432,436,440,444,144,148,152,156,176,180,184,188,16016,16020,16024,16028,16048,16052,16056,16060,16272,16276,16280,16284,16304,16308,16312,16316,15760,15764,15768,15772,15792,15796,15800,15804,15504,15508,15512,15516,15536,15540,15544,15548,14992,14996,15000,15004,15024,15028,15032,15036,15248,15252,15256,15260,15280,15284,15288,15292,14736,14740,14744,14748,14768,14772,14776,14780,14480,14484,14488,14492,14512,14516,14520,14524,13968,13972,13976,13980,14000,14004,14008,14012,14224,14228,14232,14236,14256,14260,14264,14268,13712,13716,13720,13724,13744,13748,13752,13756,13456,13460,13464,13468,13488,13492,13496,13500,12944,12948,12952,12956,12976,12980,12984,12988,13200,13204,13208,13212,13232,13236,13240,13244,12688,12692,12696,12700,12720,12724,12728,12732,12432,12436,12440,12444,12464,12468,12472,12476,11920,11924,11928,11932,11952,11956,11960,11964,12176,12180,12184,12188,12208,12212,12216,12220,11664,11668,11672,11676,11696,11700,11704,11708,11408,11412,11416,11420,11440,11444,11448,11452,10896,10900,10904,10908,10928,10932,10936,10940,11152,11156,11160,11164,11184,11188,11192,11196,10640,10644,10648,10652,10672,10676,10680,10684,10384,10388,10392,10396,10416,10420,10424,10428,9872,9876,9880,9884,9904,9908,9912,9916,10128,10132,10136,10140,10160,10164,10168,10172,9616,9620,9624,9628,9648,9652,9656,9660,9360,9364,9368,9372,9392,9396,9400,9404,8848,8852,8856,8860,8880,8884,8888,8892,9104,9108,9112,9116,9136,9140,9144,9148,8592,8596,8600,8604,8624,8628,8632,8636,8336,8340,8344,8348,8368,8372,8376,8380),
(24256,24260,24264,24268,24288,24292,24296,24300,24512,24516,24520,24524,24544,24548,24552,24556,24000,24004,24008,24012,24032,24036,24040,24044,23744,23748,23752,23756,23776,23780,23784,23788,23232,23236,23240,23244,23264,23268,23272,23276,23488,23492,23496,23500,23520,23524,23528,23532,22976,22980,22984,22988,23008,23012,23016,23020,22720,22724,22728,22732,22752,22756,22760,22764,22208,22212,22216,22220,22240,22244,22248,22252,22464,22468,22472,22476,22496,22500,22504,22508,21952,21956,21960,21964,21984,21988,21992,21996,21696,21700,21704,21708,21728,21732,21736,21740,21184,21188,21192,21196,21216,21220,21224,21228,21440,21444,21448,21452,21472,21476,21480,21484,20928,20932,20936,20940,20960,20964,20968,20972,20672,20676,20680,20684,20704,20708,20712,20716,20160,20164,20168,20172,20192,20196,20200,20204,20416,20420,20424,20428,20448,20452,20456,20460,19904,19908,19912,19916,19936,19940,19944,19948,19648,19652,19656,19660,19680,19684,19688,19692,19136,19140,19144,19148,19168,19172,19176,19180,19392,19396,19400,19404,19424,19428,19432,19436,18880,18884,18888,18892,18912,18916,18920,18924,18624,18628,18632,18636,18656,18660,18664,18668,18112,18116,18120,18124,18144,18148,18152,18156,18368,18372,18376,18380,18400,18404,18408,18412,17856,17860,17864,17868,17888,17892,17896,17900,17600,17604,17608,17612,17632,17636,17640,17644,17088,17092,17096,17100,17120,17124,17128,17132,17344,17348,17352,17356,17376,17380,17384,17388,16832,16836,16840,16844,16864,16868,16872,16876,16576,16580,16584,16588,16608,16612,16616,16620,32448,32452,32456,32460,32480,32484,32488,32492,32704,32708,32712,32716,32736,32740,32744,32748,32192,32196,32200,32204,32224,32228,32232,32236,31936,31940,31944,31948,31968,31972,31976,31980,31424,31428,31432,31436,31456,31460,31464,31468,31680,31684,31688,31692,31712,31716,31720,31724,31168,31172,31176,31180,31200,31204,31208,31212,30912,30916,30920,30924,30944,30948,30952,30956,30400,30404,30408,30412,30432,30436,30440,30444,30656,30660,30664,30668,30688,30692,30696,30700,30144,30148,30152,30156,30176,30180,30184,30188,29888,29892,29896,29900,29920,29924,29928,29932,29376,29380,29384,29388,29408,29412,29416,29420,29632,29636,29640,29644,29664,29668,29672,29676,29120,29124,29128,29132,29152,29156,29160,29164,28864,28868,28872,28876,28896,28900,28904,28908,28352,28356,28360,28364,28384,28388,28392,28396,28608,28612,28616,28620,28640,28644,28648,28652,28096,28100,28104,28108,28128,28132,28136,28140,27840,27844,27848,27852,27872,27876,27880,27884,27328,27332,27336,27340,27360,27364,27368,27372,27584,27588,27592,27596,27616,27620,27624,27628,27072,27076,27080,27084,27104,27108,27112,27116,26816,26820,26824,26828,26848,26852,26856,26860,26304,26308,26312,26316,26336,26340,26344,26348,26560,26564,26568,26572,26592,26596,26600,26604,26048,26052,26056,26060,26080,26084,26088,26092,25792,25796,25800,25804,25824,25828,25832,25836,25280,25284,25288,25292,25312,25316,25320,25324,25536,25540,25544,25548,25568,25572,25576,25580,25024,25028,25032,25036,25056,25060,25064,25068,24768,24772,24776,24780,24800,24804,24808,24812,7872,7876,7880,7884,7904,7908,7912,7916,8128,8132,8136,8140,8160,8164,8168,8172,7616,7620,7624,7628,7648,7652,7656,7660,7360,7364,7368,7372,7392,7396,7400,7404,6848,6852,6856,6860,6880,6884,6888,6892,7104,7108,7112,7116,7136,7140,7144,7148,6592,6596,6600,6604,6624,6628,6632,6636,6336,6340,6344,6348,6368,6372,6376,6380,5824,5828,5832,5836,5856,5860,5864,5868,6080,6084,6088,6092,6112,6116,6120,6124,5568,5572,5576,5580,5600,5604,5608,5612,5312,5316,5320,5324,5344,5348,5352,5356,4800,4804,4808,4812,4832,4836,4840,4844,5056,5060,5064,5068,5088,5092,5096,5100,4544,4548,4552,4556,4576,4580,4584,4588,4288,4292,4296,4300,4320,4324,4328,4332,3776,3780,3784,3788,3808,3812,3816,3820,4032,4036,4040,4044,4064,4068,4072,4076,3520,3524,3528,3532,3552,3556,3560,3564,3264,3268,3272,3276,3296,3300,3304,3308,2752,2756,2760,2764,2784,2788,2792,2796,3008,3012,3016,3020,3040,3044,3048,3052,2496,2500,2504,2508,2528,2532,2536,2540,2240,2244,2248,2252,2272,2276,2280,2284,1728,1732,1736,1740,1760,1764,1768,1772,1984,1988,1992,1996,2016,2020,2024,2028,1472,1476,1480,1484,1504,1508,1512,1516,1216,1220,1224,1228,1248,1252,1256,1260,704,708,712,716,736,740,744,748,960,964,968,972,992,996,1000,1004,448,452,456,460,480,484,488,492,192,196,200,204,224,228,232,236,16064,16068,16072,16076,16096,16100,16104,16108,16320,16324,16328,16332,16352,16356,16360,16364,15808,15812,15816,15820,15840,15844,15848,15852,15552,15556,15560,15564,15584,15588,15592,15596,15040,15044,15048,15052,15072,15076,15080,15084,15296,15300,15304,15308,15328,15332,15336,15340,14784,14788,14792,14796,14816,14820,14824,14828,14528,14532,14536,14540,14560,14564,14568,14572,14016,14020,14024,14028,14048,14052,14056,14060,14272,14276,14280,14284,14304,14308,14312,14316,13760,13764,13768,13772,13792,13796,13800,13804,13504,13508,13512,13516,13536,13540,13544,13548,12992,12996,13000,13004,13024,13028,13032,13036,13248,13252,13256,13260,13280,13284,13288,13292,12736,12740,12744,12748,12768,12772,12776,12780,12480,12484,12488,12492,12512,12516,12520,12524,11968,11972,11976,11980,12000,12004,12008,12012,12224,12228,12232,12236,12256,12260,12264,12268,11712,11716,11720,11724,11744,11748,11752,11756,11456,11460,11464,11468,11488,11492,11496,11500,10944,10948,10952,10956,10976,10980,10984,10988,11200,11204,11208,11212,11232,11236,11240,11244,10688,10692,10696,10700,10720,10724,10728,10732,10432,10436,10440,10444,10464,10468,10472,10476,9920,9924,9928,9932,9952,9956,9960,9964,10176,10180,10184,10188,10208,10212,10216,10220,9664,9668,9672,9676,9696,9700,9704,9708,9408,9412,9416,9420,9440,9444,9448,9452,8896,8900,8904,8908,8928,8932,8936,8940,9152,9156,9160,9164,9184,9188,9192,9196,8640,8644,8648,8652,8672,8676,8680,8684,8384,8388,8392,8396,8416,8420,8424,8428),
(24272,24276,24280,24284,24304,24308,24312,24316,24528,24532,24536,24540,24560,24564,24568,24572,24016,24020,24024,24028,24048,24052,24056,24060,23760,23764,23768,23772,23792,23796,23800,23804,23248,23252,23256,23260,23280,23284,23288,23292,23504,23508,23512,23516,23536,23540,23544,23548,22992,22996,23000,23004,23024,23028,23032,23036,22736,22740,22744,22748,22768,22772,22776,22780,22224,22228,22232,22236,22256,22260,22264,22268,22480,22484,22488,22492,22512,22516,22520,22524,21968,21972,21976,21980,22000,22004,22008,22012,21712,21716,21720,21724,21744,21748,21752,21756,21200,21204,21208,21212,21232,21236,21240,21244,21456,21460,21464,21468,21488,21492,21496,21500,20944,20948,20952,20956,20976,20980,20984,20988,20688,20692,20696,20700,20720,20724,20728,20732,20176,20180,20184,20188,20208,20212,20216,20220,20432,20436,20440,20444,20464,20468,20472,20476,19920,19924,19928,19932,19952,19956,19960,19964,19664,19668,19672,19676,19696,19700,19704,19708,19152,19156,19160,19164,19184,19188,19192,19196,19408,19412,19416,19420,19440,19444,19448,19452,18896,18900,18904,18908,18928,18932,18936,18940,18640,18644,18648,18652,18672,18676,18680,18684,18128,18132,18136,18140,18160,18164,18168,18172,18384,18388,18392,18396,18416,18420,18424,18428,17872,17876,17880,17884,17904,17908,17912,17916,17616,17620,17624,17628,17648,17652,17656,17660,17104,17108,17112,17116,17136,17140,17144,17148,17360,17364,17368,17372,17392,17396,17400,17404,16848,16852,16856,16860,16880,16884,16888,16892,16592,16596,16600,16604,16624,16628,16632,16636,32464,32468,32472,32476,32496,32500,32504,32508,32720,32724,32728,32732,32752,32756,32760,32764,32208,32212,32216,32220,32240,32244,32248,32252,31952,31956,31960,31964,31984,31988,31992,31996,31440,31444,31448,31452,31472,31476,31480,31484,31696,31700,31704,31708,31728,31732,31736,31740,31184,31188,31192,31196,31216,31220,31224,31228,30928,30932,30936,30940,30960,30964,30968,30972,30416,30420,30424,30428,30448,30452,30456,30460,30672,30676,30680,30684,30704,30708,30712,30716,30160,30164,30168,30172,30192,30196,30200,30204,29904,29908,29912,29916,29936,29940,29944,29948,29392,29396,29400,29404,29424,29428,29432,29436,29648,29652,29656,29660,29680,29684,29688,29692,29136,29140,29144,29148,29168,29172,29176,29180,28880,28884,28888,28892,28912,28916,28920,28924,28368,28372,28376,28380,28400,28404,28408,28412,28624,28628,28632,28636,28656,28660,28664,28668,28112,28116,28120,28124,28144,28148,28152,28156,27856,27860,27864,27868,27888,27892,27896,27900,27344,27348,27352,27356,27376,27380,27384,27388,27600,27604,27608,27612,27632,27636,27640,27644,27088,27092,27096,27100,27120,27124,27128,27132,26832,26836,26840,26844,26864,26868,26872,26876,26320,26324,26328,26332,26352,26356,26360,26364,26576,26580,26584,26588,26608,26612,26616,26620,26064,26068,26072,26076,26096,26100,26104,26108,25808,25812,25816,25820,25840,25844,25848,25852,25296,25300,25304,25308,25328,25332,25336,25340,25552,25556,25560,25564,25584,25588,25592,25596,25040,25044,25048,25052,25072,25076,25080,25084,24784,24788,24792,24796,24816,24820,24824,24828,7888,7892,7896,7900,7920,7924,7928,7932,8144,8148,8152,8156,8176,8180,8184,8188,7632,7636,7640,7644,7664,7668,7672,7676,7376,7380,7384,7388,7408,7412,7416,7420,6864,6868,6872,6876,6896,6900,6904,6908,7120,7124,7128,7132,7152,7156,7160,7164,6608,6612,6616,6620,6640,6644,6648,6652,6352,6356,6360,6364,6384,6388,6392,6396,5840,5844,5848,5852,5872,5876,5880,5884,6096,6100,6104,6108,6128,6132,6136,6140,5584,5588,5592,5596,5616,5620,5624,5628,5328,5332,5336,5340,5360,5364,5368,5372,4816,4820,4824,4828,4848,4852,4856,4860,5072,5076,5080,5084,5104,5108,5112,5116,4560,4564,4568,4572,4592,4596,4600,4604,4304,4308,4312,4316,4336,4340,4344,4348,3792,3796,3800,3804,3824,3828,3832,3836,4048,4052,4056,4060,4080,4084,4088,4092,3536,3540,3544,3548,3568,3572,3576,3580,3280,3284,3288,3292,3312,3316,3320,3324,2768,2772,2776,2780,2800,2804,2808,2812,3024,3028,3032,3036,3056,3060,3064,3068,2512,2516,2520,2524,2544,2548,2552,2556,2256,2260,2264,2268,2288,2292,2296,2300,1744,1748,1752,1756,1776,1780,1784,1788,2000,2004,2008,2012,2032,2036,2040,2044,1488,1492,1496,1500,1520,1524,1528,1532,1232,1236,1240,1244,1264,1268,1272,1276,720,724,728,732,752,756,760,764,976,980,984,988,1008,1012,1016,1020,464,468,472,476,496,500,504,508,208,212,216,220,240,244,248,252,16080,16084,16088,16092,16112,16116,16120,16124,16336,16340,16344,16348,16368,16372,16376,16380,15824,15828,15832,15836,15856,15860,15864,15868,15568,15572,15576,15580,15600,15604,15608,15612,15056,15060,15064,15068,15088,15092,15096,15100,15312,15316,15320,15324,15344,15348,15352,15356,14800,14804,14808,14812,14832,14836,14840,14844,14544,14548,14552,14556,14576,14580,14584,14588,14032,14036,14040,14044,14064,14068,14072,14076,14288,14292,14296,14300,14320,14324,14328,14332,13776,13780,13784,13788,13808,13812,13816,13820,13520,13524,13528,13532,13552,13556,13560,13564,13008,13012,13016,13020,13040,13044,13048,13052,13264,13268,13272,13276,13296,13300,13304,13308,12752,12756,12760,12764,12784,12788,12792,12796,12496,12500,12504,12508,12528,12532,12536,12540,11984,11988,11992,11996,12016,12020,12024,12028,12240,12244,12248,12252,12272,12276,12280,12284,11728,11732,11736,11740,11760,11764,11768,11772,11472,11476,11480,11484,11504,11508,11512,11516,10960,10964,10968,10972,10992,10996,11000,11004,11216,11220,11224,11228,11248,11252,11256,11260,10704,10708,10712,10716,10736,10740,10744,10748,10448,10452,10456,10460,10480,10484,10488,10492,9936,9940,9944,9948,9968,9972,9976,9980,10192,10196,10200,10204,10224,10228,10232,10236,9680,9684,9688,9692,9712,9716,9720,9724,9424,9428,9432,9436,9456,9460,9464,9468,8912,8916,8920,8924,8944,8948,8952,8956,9168,9172,9176,9180,9200,9204,9208,9212,8656,8660,8664,8668,8688,8692,8696,8700,8400,8404,8408,8412,8432,8436,8440,8444),
(24320,24324,24328,24332,24352,24356,24360,24364,24064,24068,24072,24076,24096,24100,24104,24108,23552,23556,23560,23564,23584,23588,23592,23596,23808,23812,23816,23820,23840,23844,23848,23852,23296,23300,23304,23308,23328,23332,23336,23340,23040,23044,23048,23052,23072,23076,23080,23084,22528,22532,22536,22540,22560,22564,22568,22572,22784,22788,22792,22796,22816,22820,22824,22828,22272,22276,22280,22284,22304,22308,22312,22316,22016,22020,22024,22028,22048,22052,22056,22060,21504,21508,21512,21516,21536,21540,21544,21548,21760,21764,21768,21772,21792,21796,21800,21804,21248,21252,21256,21260,21280,21284,21288,21292,20992,20996,21000,21004,21024,21028,21032,21036,20480,20484,20488,20492,20512,20516,20520,20524,20736,20740,20744,20748,20768,20772,20776,20780,20224,20228,20232,20236,20256,20260,20264,20268,19968,19972,19976,19980,20000,20004,20008,20012,19456,19460,19464,19468,19488,19492,19496,19500,19712,19716,19720,19724,19744,19748,19752,19756,19200,19204,19208,19212,19232,19236,19240,19244,18944,18948,18952,18956,18976,18980,18984,18988,18432,18436,18440,18444,18464,18468,18472,18476,18688,18692,18696,18700,18720,18724,18728,18732,18176,18180,18184,18188,18208,18212,18216,18220,17920,17924,17928,17932,17952,17956,17960,17964,17408,17412,17416,17420,17440,17444,17448,17452,17664,17668,17672,17676,17696,17700,17704,17708,17152,17156,17160,17164,17184,17188,17192,17196,16896,16900,16904,16908,16928,16932,16936,16940,16384,16388,16392,16396,16416,16420,16424,16428,16640,16644,16648,16652,16672,16676,16680,16684,32512,32516,32520,32524,32544,32548,32552,32556,32256,32260,32264,32268,32288,32292,32296,32300,31744,31748,31752,31756,31776,31780,31784,31788,32000,32004,32008,32012,32032,32036,32040,32044,31488,31492,31496,31500,31520,31524,31528,31532,31232,31236,31240,31244,31264,31268,31272,31276,30720,30724,30728,30732,30752,30756,30760,30764,30976,30980,30984,30988,31008,31012,31016,31020,30464,30468,30472,30476,30496,30500,30504,30508,30208,30212,30216,30220,30240,30244,30248,30252,29696,29700,29704,29708,29728,29732,29736,29740,29952,29956,29960,29964,29984,29988,29992,29996,29440,29444,29448,29452,29472,29476,29480,29484,29184,29188,29192,29196,29216,29220,29224,29228,28672,28676,28680,28684,28704,28708,28712,28716,28928,28932,28936,28940,28960,28964,28968,28972,28416,28420,28424,28428,28448,28452,28456,28460,28160,28164,28168,28172,28192,28196,28200,28204,27648,27652,27656,27660,27680,27684,27688,27692,27904,27908,27912,27916,27936,27940,27944,27948,27392,27396,27400,27404,27424,27428,27432,27436,27136,27140,27144,27148,27168,27172,27176,27180,26624,26628,26632,26636,26656,26660,26664,26668,26880,26884,26888,26892,26912,26916,26920,26924,26368,26372,26376,26380,26400,26404,26408,26412,26112,26116,26120,26124,26144,26148,26152,26156,25600,25604,25608,25612,25632,25636,25640,25644,25856,25860,25864,25868,25888,25892,25896,25900,25344,25348,25352,25356,25376,25380,25384,25388,25088,25092,25096,25100,25120,25124,25128,25132,24576,24580,24584,24588,24608,24612,24616,24620,24832,24836,24840,24844,24864,24868,24872,24876,7936,7940,7944,7948,7968,7972,7976,7980,7680,7684,7688,7692,7712,7716,7720,7724,7168,7172,7176,7180,7200,7204,7208,7212,7424,7428,7432,7436,7456,7460,7464,7468,6912,6916,6920,6924,6944,6948,6952,6956,6656,6660,6664,6668,6688,6692,6696,6700,6144,6148,6152,6156,6176,6180,6184,6188,6400,6404,6408,6412,6432,6436,6440,6444,5888,5892,5896,5900,5920,5924,5928,5932,5632,5636,5640,5644,5664,5668,5672,5676,5120,5124,5128,5132,5152,5156,5160,5164,5376,5380,5384,5388,5408,5412,5416,5420,4864,4868,4872,4876,4896,4900,4904,4908,4608,4612,4616,4620,4640,4644,4648,4652,4096,4100,4104,4108,4128,4132,4136,4140,4352,4356,4360,4364,4384,4388,4392,4396,3840,3844,3848,3852,3872,3876,3880,3884,3584,3588,3592,3596,3616,3620,3624,3628,3072,3076,3080,3084,3104,3108,3112,3116,3328,3332,3336,3340,3360,3364,3368,3372,2816,2820,2824,2828,2848,2852,2856,2860,2560,2564,2568,2572,2592,2596,2600,2604,2048,2052,2056,2060,2080,2084,2088,2092,2304,2308,2312,2316,2336,2340,2344,2348,1792,1796,1800,1804,1824,1828,1832,1836,1536,1540,1544,1548,1568,1572,1576,1580,1024,1028,1032,1036,1056,1060,1064,1068,1280,1284,1288,1292,1312,1316,1320,1324,768,772,776,780,800,804,808,812,512,516,520,524,544,548,552,556,0,4,8,12,32,36,40,44,256,260,264,268,288,292,296,300,16128,16132,16136,16140,16160,16164,16168,16172,15872,15876,15880,15884,15904,15908,15912,15916,15360,15364,15368,15372,15392,15396,15400,15404,15616,15620,15624,15628,15648,15652,15656,15660,15104,15108,15112,15116,15136,15140,15144,15148,14848,14852,14856,14860,14880,14884,14888,14892,14336,14340,14344,14348,14368,14372,14376,14380,14592,14596,14600,14604,14624,14628,14632,14636,14080,14084,14088,14092,14112,14116,14120,14124,13824,13828,13832,13836,13856,13860,13864,13868,13312,13316,13320,13324,13344,13348,13352,13356,13568,13572,13576,13580,13600,13604,13608,13612,13056,13060,13064,13068,13088,13092,13096,13100,12800,12804,12808,12812,12832,12836,12840,12844,12288,12292,12296,12300,12320,12324,12328,12332,12544,12548,12552,12556,12576,12580,12584,12588,12032,12036,12040,12044,12064,12068,12072,12076,11776,11780,11784,11788,11808,11812,11816,11820,11264,11268,11272,11276,11296,11300,11304,11308,11520,11524,11528,11532,11552,11556,11560,11564,11008,11012,11016,11020,11040,11044,11048,11052,10752,10756,10760,10764,10784,10788,10792,10796,10240,10244,10248,10252,10272,10276,10280,10284,10496,10500,10504,10508,10528,10532,10536,10540,9984,9988,9992,9996,10016,10020,10024,10028,9728,9732,9736,9740,9760,9764,9768,9772,9216,9220,9224,9228,9248,9252,9256,9260,9472,9476,9480,9484,9504,9508,9512,9516,8960,8964,8968,8972,8992,8996,9000,9004,8704,8708,8712,8716,8736,8740,8744,8748,8192,8196,8200,8204,8224,8228,8232,8236,8448,8452,8456,8460,8480,8484,8488,8492),
(24336,24340,24344,24348,24368,24372,24376,24380,24080,24084,24088,24092,24112,24116,24120,24124,23568,23572,23576,23580,23600,23604,23608,23612,23824,23828,23832,23836,23856,23860,23864,23868,23312,23316,23320,23324,23344,23348,23352,23356,23056,23060,23064,23068,23088,23092,23096,23100,22544,22548,22552,22556,22576,22580,22584,22588,22800,22804,22808,22812,22832,22836,22840,22844,22288,22292,22296,22300,22320,22324,22328,22332,22032,22036,22040,22044,22064,22068,22072,22076,21520,21524,21528,21532,21552,21556,21560,21564,21776,21780,21784,21788,21808,21812,21816,21820,21264,21268,21272,21276,21296,21300,21304,21308,21008,21012,21016,21020,21040,21044,21048,21052,20496,20500,20504,20508,20528,20532,20536,20540,20752,20756,20760,20764,20784,20788,20792,20796,20240,20244,20248,20252,20272,20276,20280,20284,19984,19988,19992,19996,20016,20020,20024,20028,19472,19476,19480,19484,19504,19508,19512,19516,19728,19732,19736,19740,19760,19764,19768,19772,19216,19220,19224,19228,19248,19252,19256,19260,18960,18964,18968,18972,18992,18996,19000,19004,18448,18452,18456,18460,18480,18484,18488,18492,18704,18708,18712,18716,18736,18740,18744,18748,18192,18196,18200,18204,18224,18228,18232,18236,17936,17940,17944,17948,17968,17972,17976,17980,17424,17428,17432,17436,17456,17460,17464,17468,17680,17684,17688,17692,17712,17716,17720,17724,17168,17172,17176,17180,17200,17204,17208,17212,16912,16916,16920,16924,16944,16948,16952,16956,16400,16404,16408,16412,16432,16436,16440,16444,16656,16660,16664,16668,16688,16692,16696,16700,32528,32532,32536,32540,32560,32564,32568,32572,32272,32276,32280,32284,32304,32308,32312,32316,31760,31764,31768,31772,31792,31796,31800,31804,32016,32020,32024,32028,32048,32052,32056,32060,31504,31508,31512,31516,31536,31540,31544,31548,31248,31252,31256,31260,31280,31284,31288,31292,30736,30740,30744,30748,30768,30772,30776,30780,30992,30996,31000,31004,31024,31028,31032,31036,30480,30484,30488,30492,30512,30516,30520,30524,30224,30228,30232,30236,30256,30260,30264,30268,29712,29716,29720,29724,29744,29748,29752,29756,29968,29972,29976,29980,30000,30004,30008,30012,29456,29460,29464,29468,29488,29492,29496,29500,29200,29204,29208,29212,29232,29236,29240,29244,28688,28692,28696,28700,28720,28724,28728,28732,28944,28948,28952,28956,28976,28980,28984,28988,28432,28436,28440,28444,28464,28468,28472,28476,28176,28180,28184,28188,28208,28212,28216,28220,27664,27668,27672,27676,27696,27700,27704,27708,27920,27924,27928,27932,27952,27956,27960,27964,27408,27412,27416,27420,27440,27444,27448,27452,27152,27156,27160,27164,27184,27188,27192,27196,26640,26644,26648,26652,26672,26676,26680,26684,26896,26900,26904,26908,26928,26932,26936,26940,26384,26388,26392,26396,26416,26420,26424,26428,26128,26132,26136,26140,26160,26164,26168,26172,25616,25620,25624,25628,25648,25652,25656,25660,25872,25876,25880,25884,25904,25908,25912,25916,25360,25364,25368,25372,25392,25396,25400,25404,25104,25108,25112,25116,25136,25140,25144,25148,24592,24596,24600,24604,24624,24628,24632,24636,24848,24852,24856,24860,24880,24884,24888,24892,7952,7956,7960,7964,7984,7988,7992,7996,7696,7700,7704,7708,7728,7732,7736,7740,7184,7188,7192,7196,7216,7220,7224,7228,7440,7444,7448,7452,7472,7476,7480,7484,6928,6932,6936,6940,6960,6964,6968,6972,6672,6676,6680,6684,6704,6708,6712,6716,6160,6164,6168,6172,6192,6196,6200,6204,6416,6420,6424,6428,6448,6452,6456,6460,5904,5908,5912,5916,5936,5940,5944,5948,5648,5652,5656,5660,5680,5684,5688,5692,5136,5140,5144,5148,5168,5172,5176,5180,5392,5396,5400,5404,5424,5428,5432,5436,4880,4884,4888,4892,4912,4916,4920,4924,4624,4628,4632,4636,4656,4660,4664,4668,4112,4116,4120,4124,4144,4148,4152,4156,4368,4372,4376,4380,4400,4404,4408,4412,3856,3860,3864,3868,3888,3892,3896,3900,3600,3604,3608,3612,3632,3636,3640,3644,3088,3092,3096,3100,3120,3124,3128,3132,3344,3348,3352,3356,3376,3380,3384,3388,2832,2836,2840,2844,2864,2868,2872,2876,2576,2580,2584,2588,2608,2612,2616,2620,2064,2068,2072,2076,2096,2100,2104,2108,2320,2324,2328,2332,2352,2356,2360,2364,1808,1812,1816,1820,1840,1844,1848,1852,1552,1556,1560,1564,1584,1588,1592,1596,1040,1044,1048,1052,1072,1076,1080,1084,1296,1300,1304,1308,1328,1332,1336,1340,784,788,792,796,816,820,824,828,528,532,536,540,560,564,568,572,16,20,24,28,48,52,56,60,272,276,280,284,304,308,312,316,16144,16148,16152,16156,16176,16180,16184,16188,15888,15892,15896,15900,15920,15924,15928,15932,15376,15380,15384,15388,15408,15412,15416,15420,15632,15636,15640,15644,15664,15668,15672,15676,15120,15124,15128,15132,15152,15156,15160,15164,14864,14868,14872,14876,14896,14900,14904,14908,14352,14356,14360,14364,14384,14388,14392,14396,14608,14612,14616,14620,14640,14644,14648,14652,14096,14100,14104,14108,14128,14132,14136,14140,13840,13844,13848,13852,13872,13876,13880,13884,13328,13332,13336,13340,13360,13364,13368,13372,13584,13588,13592,13596,13616,13620,13624,13628,13072,13076,13080,13084,13104,13108,13112,13116,12816,12820,12824,12828,12848,12852,12856,12860,12304,12308,12312,12316,12336,12340,12344,12348,12560,12564,12568,12572,12592,12596,12600,12604,12048,12052,12056,12060,12080,12084,12088,12092,11792,11796,11800,11804,11824,11828,11832,11836,11280,11284,11288,11292,11312,11316,11320,11324,11536,11540,11544,11548,11568,11572,11576,11580,11024,11028,11032,11036,11056,11060,11064,11068,10768,10772,10776,10780,10800,10804,10808,10812,10256,10260,10264,10268,10288,10292,10296,10300,10512,10516,10520,10524,10544,10548,10552,10556,10000,10004,10008,10012,10032,10036,10040,10044,9744,9748,9752,9756,9776,9780,9784,9788,9232,9236,9240,9244,9264,9268,9272,9276,9488,9492,9496,9500,9520,9524,9528,9532,8976,8980,8984,8988,9008,9012,9016,9020,8720,8724,8728,8732,8752,8756,8760,8764,8208,8212,8216,8220,8240,8244,8248,8252,8464,8468,8472,8476,8496,8500,8504,8508),
(24384,24388,24392,24396,24416,24420,24424,24428,24128,24132,24136,24140,24160,24164,24168,24172,23616,23620,23624,23628,23648,23652,23656,23660,23872,23876,23880,23884,23904,23908,23912,23916,23360,23364,23368,23372,23392,23396,23400,23404,23104,23108,23112,23116,23136,23140,23144,23148,22592,22596,22600,22604,22624,22628,22632,22636,22848,22852,22856,22860,22880,22884,22888,22892,22336,22340,22344,22348,22368,22372,22376,22380,22080,22084,22088,22092,22112,22116,22120,22124,21568,21572,21576,21580,21600,21604,21608,21612,21824,21828,21832,21836,21856,21860,21864,21868,21312,21316,21320,21324,21344,21348,21352,21356,21056,21060,21064,21068,21088,21092,21096,21100,20544,20548,20552,20556,20576,20580,20584,20588,20800,20804,20808,20812,20832,20836,20840,20844,20288,20292,20296,20300,20320,20324,20328,20332,20032,20036,20040,20044,20064,20068,20072,20076,19520,19524,19528,19532,19552,19556,19560,19564,19776,19780,19784,19788,19808,19812,19816,19820,19264,19268,19272,19276,19296,19300,19304,19308,19008,19012,19016,19020,19040,19044,19048,19052,18496,18500,18504,18508,18528,18532,18536,18540,18752,18756,18760,18764,18784,18788,18792,18796,18240,18244,18248,18252,18272,18276,18280,18284,17984,17988,17992,17996,18016,18020,18024,18028,17472,17476,17480,17484,17504,17508,17512,17516,17728,17732,17736,17740,17760,17764,17768,17772,17216,17220,17224,17228,17248,17252,17256,17260,16960,16964,16968,16972,16992,16996,17000,17004,16448,16452,16456,16460,16480,16484,16488,16492,16704,16708,16712,16716,16736,16740,16744,16748,32576,32580,32584,32588,32608,32612,32616,32620,32320,32324,32328,32332,32352,32356,32360,32364,31808,31812,31816,31820,31840,31844,31848,31852,32064,32068,32072,32076,32096,32100,32104,32108,31552,31556,31560,31564,31584,31588,31592,31596,31296,31300,31304,31308,31328,31332,31336,31340,30784,30788,30792,30796,30816,30820,30824,30828,31040,31044,31048,31052,31072,31076,31080,31084,30528,30532,30536,30540,30560,30564,30568,30572,30272,30276,30280,30284,30304,30308,30312,30316,29760,29764,29768,29772,29792,29796,29800,29804,30016,30020,30024,30028,30048,30052,30056,30060,29504,29508,29512,29516,29536,29540,29544,29548,29248,29252,29256,29260,29280,29284,29288,29292,28736,28740,28744,28748,28768,28772,28776,28780,28992,28996,29000,29004,29024,29028,29032,29036,28480,28484,28488,28492,28512,28516,28520,28524,28224,28228,28232,28236,28256,28260,28264,28268,27712,27716,27720,27724,27744,27748,27752,27756,27968,27972,27976,27980,28000,28004,28008,28012,27456,27460,27464,27468,27488,27492,27496,27500,27200,27204,27208,27212,27232,27236,27240,27244,26688,26692,26696,26700,26720,26724,26728,26732,26944,26948,26952,26956,26976,26980,26984,26988,26432,26436,26440,26444,26464,26468,26472,26476,26176,26180,26184,26188,26208,26212,26216,26220,25664,25668,25672,25676,25696,25700,25704,25708,25920,25924,25928,25932,25952,25956,25960,25964,25408,25412,25416,25420,25440,25444,25448,25452,25152,25156,25160,25164,25184,25188,25192,25196,24640,24644,24648,24652,24672,24676,24680,24684,24896,24900,24904,24908,24928,24932,24936,24940,8000,8004,8008,8012,8032,8036,8040,8044,7744,7748,7752,7756,7776,7780,7784,7788,7232,7236,7240,7244,7264,7268,7272,7276,7488,7492,7496,7500,7520,7524,7528,7532,6976,6980,6984,6988,7008,7012,7016,7020,6720,6724,6728,6732,6752,6756,6760,6764,6208,6212,6216,6220,6240,6244,6248,6252,6464,6468,6472,6476,6496,6500,6504,6508,5952,5956,5960,5964,5984,5988,5992,5996,5696,5700,5704,5708,5728,5732,5736,5740,5184,5188,5192,5196,5216,5220,5224,5228,5440,5444,5448,5452,5472,5476,5480,5484,4928,4932,4936,4940,4960,4964,4968,4972,4672,4676,4680,4684,4704,4708,4712,4716,4160,4164,4168,4172,4192,4196,4200,4204,4416,4420,4424,4428,4448,4452,4456,4460,3904,3908,3912,3916,3936,3940,3944,3948,3648,3652,3656,3660,3680,3684,3688,3692,3136,3140,3144,3148,3168,3172,3176,3180,3392,3396,3400,3404,3424,3428,3432,3436,2880,2884,2888,2892,2912,2916,2920,2924,2624,2628,2632,2636,2656,2660,2664,2668,2112,2116,2120,2124,2144,2148,2152,2156,2368,2372,2376,2380,2400,2404,2408,2412,1856,1860,1864,1868,1888,1892,1896,1900,1600,1604,1608,1612,1632,1636,1640,1644,1088,1092,1096,1100,1120,1124,1128,1132,1344,1348,1352,1356,1376,1380,1384,1388,832,836,840,844,864,868,872,876,576,580,584,588,608,612,616,620,64,68,72,76,96,100,104,108,320,324,328,332,352,356,360,364,16192,16196,16200,16204,16224,16228,16232,16236,15936,15940,15944,15948,15968,15972,15976,15980,15424,15428,15432,15436,15456,15460,15464,15468,15680,15684,15688,15692,15712,15716,15720,15724,15168,15172,15176,15180,15200,15204,15208,15212,14912,14916,14920,14924,14944,14948,14952,14956,14400,14404,14408,14412,14432,14436,14440,14444,14656,14660,14664,14668,14688,14692,14696,14700,14144,14148,14152,14156,14176,14180,14184,14188,13888,13892,13896,13900,13920,13924,13928,13932,13376,13380,13384,13388,13408,13412,13416,13420,13632,13636,13640,13644,13664,13668,13672,13676,13120,13124,13128,13132,13152,13156,13160,13164,12864,12868,12872,12876,12896,12900,12904,12908,12352,12356,12360,12364,12384,12388,12392,12396,12608,12612,12616,12620,12640,12644,12648,12652,12096,12100,12104,12108,12128,12132,12136,12140,11840,11844,11848,11852,11872,11876,11880,11884,11328,11332,11336,11340,11360,11364,11368,11372,11584,11588,11592,11596,11616,11620,11624,11628,11072,11076,11080,11084,11104,11108,11112,11116,10816,10820,10824,10828,10848,10852,10856,10860,10304,10308,10312,10316,10336,10340,10344,10348,10560,10564,10568,10572,10592,10596,10600,10604,10048,10052,10056,10060,10080,10084,10088,10092,9792,9796,9800,9804,9824,9828,9832,9836,9280,9284,9288,9292,9312,9316,9320,9324,9536,9540,9544,9548,9568,9572,9576,9580,9024,9028,9032,9036,9056,9060,9064,9068,8768,8772,8776,8780,8800,8804,8808,8812,8256,8260,8264,8268,8288,8292,8296,8300,8512,8516,8520,8524,8544,8548,8552,8556),
(24400,24404,24408,24412,24432,24436,24440,24444,24144,24148,24152,24156,24176,24180,24184,24188,23632,23636,23640,23644,23664,23668,23672,23676,23888,23892,23896,23900,23920,23924,23928,23932,23376,23380,23384,23388,23408,23412,23416,23420,23120,23124,23128,23132,23152,23156,23160,23164,22608,22612,22616,22620,22640,22644,22648,22652,22864,22868,22872,22876,22896,22900,22904,22908,22352,22356,22360,22364,22384,22388,22392,22396,22096,22100,22104,22108,22128,22132,22136,22140,21584,21588,21592,21596,21616,21620,21624,21628,21840,21844,21848,21852,21872,21876,21880,21884,21328,21332,21336,21340,21360,21364,21368,21372,21072,21076,21080,21084,21104,21108,21112,21116,20560,20564,20568,20572,20592,20596,20600,20604,20816,20820,20824,20828,20848,20852,20856,20860,20304,20308,20312,20316,20336,20340,20344,20348,20048,20052,20056,20060,20080,20084,20088,20092,19536,19540,19544,19548,19568,19572,19576,19580,19792,19796,19800,19804,19824,19828,19832,19836,19280,19284,19288,19292,19312,19316,19320,19324,19024,19028,19032,19036,19056,19060,19064,19068,18512,18516,18520,18524,18544,18548,18552,18556,18768,18772,18776,18780,18800,18804,18808,18812,18256,18260,18264,18268,18288,18292,18296,18300,18000,18004,18008,18012,18032,18036,18040,18044,17488,17492,17496,17500,17520,17524,17528,17532,17744,17748,17752,17756,17776,17780,17784,17788,17232,17236,17240,17244,17264,17268,17272,17276,16976,16980,16984,16988,17008,17012,17016,17020,16464,16468,16472,16476,16496,16500,16504,16508,16720,16724,16728,16732,16752,16756,16760,16764,32592,32596,32600,32604,32624,32628,32632,32636,32336,32340,32344,32348,32368,32372,32376,32380,31824,31828,31832,31836,31856,31860,31864,31868,32080,32084,32088,32092,32112,32116,32120,32124,31568,31572,31576,31580,31600,31604,31608,31612,31312,31316,31320,31324,31344,31348,31352,31356,30800,30804,30808,30812,30832,30836,30840,30844,31056,31060,31064,31068,31088,31092,31096,31100,30544,30548,30552,30556,30576,30580,30584,30588,30288,30292,30296,30300,30320,30324,30328,30332,29776,29780,29784,29788,29808,29812,29816,29820,30032,30036,30040,30044,30064,30068,30072,30076,29520,29524,29528,29532,29552,29556,29560,29564,29264,29268,29272,29276,29296,29300,29304,29308,28752,28756,28760,28764,28784,28788,28792,28796,29008,29012,29016,29020,29040,29044,29048,29052,28496,28500,28504,28508,28528,28532,28536,28540,28240,28244,28248,28252,28272,28276,28280,28284,27728,27732,27736,27740,27760,27764,27768,27772,27984,27988,27992,27996,28016,28020,28024,28028,27472,27476,27480,27484,27504,27508,27512,27516,27216,27220,27224,27228,27248,27252,27256,27260,26704,26708,26712,26716,26736,26740,26744,26748,26960,26964,26968,26972,26992,26996,27000,27004,26448,26452,26456,26460,26480,26484,26488,26492,26192,26196,26200,26204,26224,26228,26232,26236,25680,25684,25688,25692,25712,25716,25720,25724,25936,25940,25944,25948,25968,25972,25976,25980,25424,25428,25432,25436,25456,25460,25464,25468,25168,25172,25176,25180,25200,25204,25208,25212,24656,24660,24664,24668,24688,24692,24696,24700,24912,24916,24920,24924,24944,24948,24952,24956,8016,8020,8024,8028,8048,8052,8056,8060,7760,7764,7768,7772,7792,7796,7800,7804,7248,7252,7256,7260,7280,7284,7288,7292,7504,7508,7512,7516,7536,7540,7544,7548,6992,6996,7000,7004,7024,7028,7032,7036,6736,6740,6744,6748,6768,6772,6776,6780,6224,6228,6232,6236,6256,6260,6264,6268,6480,6484,6488,6492,6512,6516,6520,6524,5968,5972,5976,5980,6000,6004,6008,6012,5712,5716,5720,5724,5744,5748,5752,5756,5200,5204,5208,5212,5232,5236,5240,5244,5456,5460,5464,5468,5488,5492,5496,5500,4944,4948,4952,4956,4976,4980,4984,4988,4688,4692,4696,4700,4720,4724,4728,4732,4176,4180,4184,4188,4208,4212,4216,4220,4432,4436,4440,4444,4464,4468,4472,4476,3920,3924,3928,3932,3952,3956,3960,3964,3664,3668,3672,3676,3696,3700,3704,3708,3152,3156,3160,3164,3184,3188,3192,3196,3408,3412,3416,3420,3440,3444,3448,3452,2896,2900,2904,2908,2928,2932,2936,2940,2640,2644,2648,2652,2672,2676,2680,2684,2128,2132,2136,2140,2160,2164,2168,2172,2384,2388,2392,2396,2416,2420,2424,2428,1872,1876,1880,1884,1904,1908,1912,1916,1616,1620,1624,1628,1648,1652,1656,1660,1104,1108,1112,1116,1136,1140,1144,1148,1360,1364,1368,1372,1392,1396,1400,1404,848,852,856,860,880,884,888,892,592,596,600,604,624,628,632,636,80,84,88,92,112,116,120,124,336,340,344,348,368,372,376,380,16208,16212,16216,16220,16240,16244,16248,16252,15952,15956,15960,15964,15984,15988,15992,15996,15440,15444,15448,15452,15472,15476,15480,15484,15696,15700,15704,15708,15728,15732,15736,15740,15184,15188,15192,15196,15216,15220,15224,15228,14928,14932,14936,14940,14960,14964,14968,14972,14416,14420,14424,14428,14448,14452,14456,14460,14672,14676,14680,14684,14704,14708,14712,14716,14160,14164,14168,14172,14192,14196,14200,14204,13904,13908,13912,13916,13936,13940,13944,13948,13392,13396,13400,13404,13424,13428,13432,13436,13648,13652,13656,13660,13680,13684,13688,13692,13136,13140,13144,13148,13168,13172,13176,13180,12880,12884,12888,12892,12912,12916,12920,12924,12368,12372,12376,12380,12400,12404,12408,12412,12624,12628,12632,12636,12656,12660,12664,12668,12112,12116,12120,12124,12144,12148,12152,12156,11856,11860,11864,11868,11888,11892,11896,11900,11344,11348,11352,11356,11376,11380,11384,11388,11600,11604,11608,11612,11632,11636,11640,11644,11088,11092,11096,11100,11120,11124,11128,11132,10832,10836,10840,10844,10864,10868,10872,10876,10320,10324,10328,10332,10352,10356,10360,10364,10576,10580,10584,10588,10608,10612,10616,10620,10064,10068,10072,10076,10096,10100,10104,10108,9808,9812,9816,9820,9840,9844,9848,9852,9296,9300,9304,9308,9328,9332,9336,9340,9552,9556,9560,9564,9584,9588,9592,9596,9040,9044,9048,9052,9072,9076,9080,9084,8784,8788,8792,8796,8816,8820,8824,8828,8272,8276,8280,8284,8304,8308,8312,8316,8528,8532,8536,8540,8560,8564,8568,8572),
(24448,24452,24456,24460,24480,24484,24488,24492,24192,24196,24200,24204,24224,24228,24232,24236,23680,23684,23688,23692,23712,23716,23720,23724,23936,23940,23944,23948,23968,23972,23976,23980,23424,23428,23432,23436,23456,23460,23464,23468,23168,23172,23176,23180,23200,23204,23208,23212,22656,22660,22664,22668,22688,22692,22696,22700,22912,22916,22920,22924,22944,22948,22952,22956,22400,22404,22408,22412,22432,22436,22440,22444,22144,22148,22152,22156,22176,22180,22184,22188,21632,21636,21640,21644,21664,21668,21672,21676,21888,21892,21896,21900,21920,21924,21928,21932,21376,21380,21384,21388,21408,21412,21416,21420,21120,21124,21128,21132,21152,21156,21160,21164,20608,20612,20616,20620,20640,20644,20648,20652,20864,20868,20872,20876,20896,20900,20904,20908,20352,20356,20360,20364,20384,20388,20392,20396,20096,20100,20104,20108,20128,20132,20136,20140,19584,19588,19592,19596,19616,19620,19624,19628,19840,19844,19848,19852,19872,19876,19880,19884,19328,19332,19336,19340,19360,19364,19368,19372,19072,19076,19080,19084,19104,19108,19112,19116,18560,18564,18568,18572,18592,18596,18600,18604,18816,18820,18824,18828,18848,18852,18856,18860,18304,18308,18312,18316,18336,18340,18344,18348,18048,18052,18056,18060,18080,18084,18088,18092,17536,17540,17544,17548,17568,17572,17576,17580,17792,17796,17800,17804,17824,17828,17832,17836,17280,17284,17288,17292,17312,17316,17320,17324,17024,17028,17032,17036,17056,17060,17064,17068,16512,16516,16520,16524,16544,16548,16552,16556,16768,16772,16776,16780,16800,16804,16808,16812,32640,32644,32648,32652,32672,32676,32680,32684,32384,32388,32392,32396,32416,32420,32424,32428,31872,31876,31880,31884,31904,31908,31912,31916,32128,32132,32136,32140,32160,32164,32168,32172,31616,31620,31624,31628,31648,31652,31656,31660,31360,31364,31368,31372,31392,31396,31400,31404,30848,30852,30856,30860,30880,30884,30888,30892,31104,31108,31112,31116,31136,31140,31144,31148,30592,30596,30600,30604,30624,30628,30632,30636,30336,30340,30344,30348,30368,30372,30376,30380,29824,29828,29832,29836,29856,29860,29864,29868,30080,30084,30088,30092,30112,30116,30120,30124,29568,29572,29576,29580,29600,29604,29608,29612,29312,29316,29320,29324,29344,29348,29352,29356,28800,28804,28808,28812,28832,28836,28840,28844,29056,29060,29064,29068,29088,29092,29096,29100,28544,28548,28552,28556,28576,28580,28584,28588,28288,28292,28296,28300,28320,28324,28328,28332,27776,27780,27784,27788,27808,27812,27816,27820,28032,28036,28040,28044,28064,28068,28072,28076,27520,27524,27528,27532,27552,27556,27560,27564,27264,27268,27272,27276,27296,27300,27304,27308,26752,26756,26760,26764,26784,26788,26792,26796,27008,27012,27016,27020,27040,27044,27048,27052,26496,26500,26504,26508,26528,26532,26536,26540,26240,26244,26248,26252,26272,26276,26280,26284,25728,25732,25736,25740,25760,25764,25768,25772,25984,25988,25992,25996,26016,26020,26024,26028,25472,25476,25480,25484,25504,25508,25512,25516,25216,25220,25224,25228,25248,25252,25256,25260,24704,24708,24712,24716,24736,24740,24744,24748,24960,24964,24968,24972,24992,24996,25000,25004,8064,8068,8072,8076,8096,8100,8104,8108,7808,7812,7816,7820,7840,7844,7848,7852,7296,7300,7304,7308,7328,7332,7336,7340,7552,7556,7560,7564,7584,7588,7592,7596,7040,7044,7048,7052,7072,7076,7080,7084,6784,6788,6792,6796,6816,6820,6824,6828,6272,6276,6280,6284,6304,6308,6312,6316,6528,6532,6536,6540,6560,6564,6568,6572,6016,6020,6024,6028,6048,6052,6056,6060,5760,5764,5768,5772,5792,5796,5800,5804,5248,5252,5256,5260,5280,5284,5288,5292,5504,5508,5512,5516,5536,5540,5544,5548,4992,4996,5000,5004,5024,5028,5032,5036,4736,4740,4744,4748,4768,4772,4776,4780,4224,4228,4232,4236,4256,4260,4264,4268,4480,4484,4488,4492,4512,4516,4520,4524,3968,3972,3976,3980,4000,4004,4008,4012,3712,3716,3720,3724,3744,3748,3752,3756,3200,3204,3208,3212,3232,3236,3240,3244,3456,3460,3464,3468,3488,3492,3496,3500,2944,2948,2952,2956,2976,2980,2984,2988,2688,2692,2696,2700,2720,2724,2728,2732,2176,2180,2184,2188,2208,2212,2216,2220,2432,2436,2440,2444,2464,2468,2472,2476,1920,1924,1928,1932,1952,1956,1960,1964,1664,1668,1672,1676,1696,1700,1704,1708,1152,1156,1160,1164,1184,1188,1192,1196,1408,1412,1416,1420,1440,1444,1448,1452,896,900,904,908,928,932,936,940,640,644,648,652,672,676,680,684,128,132,136,140,160,164,168,172,384,388,392,396,416,420,424,428,16256,16260,16264,16268,16288,16292,16296,16300,16000,16004,16008,16012,16032,16036,16040,16044,15488,15492,15496,15500,15520,15524,15528,15532,15744,15748,15752,15756,15776,15780,15784,15788,15232,15236,15240,15244,15264,15268,15272,15276,14976,14980,14984,14988,15008,15012,15016,15020,14464,14468,14472,14476,14496,14500,14504,14508,14720,14724,14728,14732,14752,14756,14760,14764,14208,14212,14216,14220,14240,14244,14248,14252,13952,13956,13960,13964,13984,13988,13992,13996,13440,13444,13448,13452,13472,13476,13480,13484,13696,13700,13704,13708,13728,13732,13736,13740,13184,13188,13192,13196,13216,13220,13224,13228,12928,12932,12936,12940,12960,12964,12968,12972,12416,12420,12424,12428,12448,12452,12456,12460,12672,12676,12680,12684,12704,12708,12712,12716,12160,12164,12168,12172,12192,12196,12200,12204,11904,11908,11912,11916,11936,11940,11944,11948,11392,11396,11400,11404,11424,11428,11432,11436,11648,11652,11656,11660,11680,11684,11688,11692,11136,11140,11144,11148,11168,11172,11176,11180,10880,10884,10888,10892,10912,10916,10920,10924,10368,10372,10376,10380,10400,10404,10408,10412,10624,10628,10632,10636,10656,10660,10664,10668,10112,10116,10120,10124,10144,10148,10152,10156,9856,9860,9864,9868,9888,9892,9896,9900,9344,9348,9352,9356,9376,9380,9384,9388,9600,9604,9608,9612,9632,9636,9640,9644,9088,9092,9096,9100,9120,9124,9128,9132,8832,8836,8840,8844,8864,8868,8872,8876,8320,8324,8328,8332,8352,8356,8360,8364,8576,8580,8584,8588,8608,8612,8616,8620),
(24464,24468,24472,24476,24496,24500,24504,24508,24208,24212,24216,24220,24240,24244,24248,24252,23696,23700,23704,23708,23728,23732,23736,23740,23952,23956,23960,23964,23984,23988,23992,23996,23440,23444,23448,23452,23472,23476,23480,23484,23184,23188,23192,23196,23216,23220,23224,23228,22672,22676,22680,22684,22704,22708,22712,22716,22928,22932,22936,22940,22960,22964,22968,22972,22416,22420,22424,22428,22448,22452,22456,22460,22160,22164,22168,22172,22192,22196,22200,22204,21648,21652,21656,21660,21680,21684,21688,21692,21904,21908,21912,21916,21936,21940,21944,21948,21392,21396,21400,21404,21424,21428,21432,21436,21136,21140,21144,21148,21168,21172,21176,21180,20624,20628,20632,20636,20656,20660,20664,20668,20880,20884,20888,20892,20912,20916,20920,20924,20368,20372,20376,20380,20400,20404,20408,20412,20112,20116,20120,20124,20144,20148,20152,20156,19600,19604,19608,19612,19632,19636,19640,19644,19856,19860,19864,19868,19888,19892,19896,19900,19344,19348,19352,19356,19376,19380,19384,19388,19088,19092,19096,19100,19120,19124,19128,19132,18576,18580,18584,18588,18608,18612,18616,18620,18832,18836,18840,18844,18864,18868,18872,18876,18320,18324,18328,18332,18352,18356,18360,18364,18064,18068,18072,18076,18096,18100,18104,18108,17552,17556,17560,17564,17584,17588,17592,17596,17808,17812,17816,17820,17840,17844,17848,17852,17296,17300,17304,17308,17328,17332,17336,17340,17040,17044,17048,17052,17072,17076,17080,17084,16528,16532,16536,16540,16560,16564,16568,16572,16784,16788,16792,16796,16816,16820,16824,16828,32656,32660,32664,32668,32688,32692,32696,32700,32400,32404,32408,32412,32432,32436,32440,32444,31888,31892,31896,31900,31920,31924,31928,31932,32144,32148,32152,32156,32176,32180,32184,32188,31632,31636,31640,31644,31664,31668,31672,31676,31376,31380,31384,31388,31408,31412,31416,31420,30864,30868,30872,30876,30896,30900,30904,30908,31120,31124,31128,31132,31152,31156,31160,31164,30608,30612,30616,30620,30640,30644,30648,30652,30352,30356,30360,30364,30384,30388,30392,30396,29840,29844,29848,29852,29872,29876,29880,29884,30096,30100,30104,30108,30128,30132,30136,30140,29584,29588,29592,29596,29616,29620,29624,29628,29328,29332,29336,29340,29360,29364,29368,29372,28816,28820,28824,28828,28848,28852,28856,28860,29072,29076,29080,29084,29104,29108,29112,29116,28560,28564,28568,28572,28592,28596,28600,28604,28304,28308,28312,28316,28336,28340,28344,28348,27792,27796,27800,27804,27824,27828,27832,27836,28048,28052,28056,28060,28080,28084,28088,28092,27536,27540,27544,27548,27568,27572,27576,27580,27280,27284,27288,27292,27312,27316,27320,27324,26768,26772,26776,26780,26800,26804,26808,26812,27024,27028,27032,27036,27056,27060,27064,27068,26512,26516,26520,26524,26544,26548,26552,26556,26256,26260,26264,26268,26288,26292,26296,26300,25744,25748,25752,25756,25776,25780,25784,25788,26000,26004,26008,26012,26032,26036,26040,26044,25488,25492,25496,25500,25520,25524,25528,25532,25232,25236,25240,25244,25264,25268,25272,25276,24720,24724,24728,24732,24752,24756,24760,24764,24976,24980,24984,24988,25008,25012,25016,25020,8080,8084,8088,8092,8112,8116,8120,8124,7824,7828,7832,7836,7856,7860,7864,7868,7312,7316,7320,7324,7344,7348,7352,7356,7568,7572,7576,7580,7600,7604,7608,7612,7056,7060,7064,7068,7088,7092,7096,7100,6800,6804,6808,6812,6832,6836,6840,6844,6288,6292,6296,6300,6320,6324,6328,6332,6544,6548,6552,6556,6576,6580,6584,6588,6032,6036,6040,6044,6064,6068,6072,6076,5776,5780,5784,5788,5808,5812,5816,5820,5264,5268,5272,5276,5296,5300,5304,5308,5520,5524,5528,5532,5552,5556,5560,5564,5008,5012,5016,5020,5040,5044,5048,5052,4752,4756,4760,4764,4784,4788,4792,4796,4240,4244,4248,4252,4272,4276,4280,4284,4496,4500,4504,4508,4528,4532,4536,4540,3984,3988,3992,3996,4016,4020,4024,4028,3728,3732,3736,3740,3760,3764,3768,3772,3216,3220,3224,3228,3248,3252,3256,3260,3472,3476,3480,3484,3504,3508,3512,3516,2960,2964,2968,2972,2992,2996,3000,3004,2704,2708,2712,2716,2736,2740,2744,2748,2192,2196,2200,2204,2224,2228,2232,2236,2448,2452,2456,2460,2480,2484,2488,2492,1936,1940,1944,1948,1968,1972,1976,1980,1680,1684,1688,1692,1712,1716,1720,1724,1168,1172,1176,1180,1200,1204,1208,1212,1424,1428,1432,1436,1456,1460,1464,1468,912,916,920,924,944,948,952,956,656,660,664,668,688,692,696,700,144,148,152,156,176,180,184,188,400,404,408,412,432,436,440,444,16272,16276,16280,16284,16304,16308,16312,16316,16016,16020,16024,16028,16048,16052,16056,16060,15504,15508,15512,15516,15536,15540,15544,15548,15760,15764,15768,15772,15792,15796,15800,15804,15248,15252,15256,15260,15280,15284,15288,15292,14992,14996,15000,15004,15024,15028,15032,15036,14480,14484,14488,14492,14512,14516,14520,14524,14736,14740,14744,14748,14768,14772,14776,14780,14224,14228,14232,14236,14256,14260,14264,14268,13968,13972,13976,13980,14000,14004,14008,14012,13456,13460,13464,13468,13488,13492,13496,13500,13712,13716,13720,13724,13744,13748,13752,13756,13200,13204,13208,13212,13232,13236,13240,13244,12944,12948,12952,12956,12976,12980,12984,12988,12432,12436,12440,12444,12464,12468,12472,12476,12688,12692,12696,12700,12720,12724,12728,12732,12176,12180,12184,12188,12208,12212,12216,12220,11920,11924,11928,11932,11952,11956,11960,11964,11408,11412,11416,11420,11440,11444,11448,11452,11664,11668,11672,11676,11696,11700,11704,11708,11152,11156,11160,11164,11184,11188,11192,11196,10896,10900,10904,10908,10928,10932,10936,10940,10384,10388,10392,10396,10416,10420,10424,10428,10640,10644,10648,10652,10672,10676,10680,10684,10128,10132,10136,10140,10160,10164,10168,10172,9872,9876,9880,9884,9904,9908,9912,9916,9360,9364,9368,9372,9392,9396,9400,9404,9616,9620,9624,9628,9648,9652,9656,9660,9104,9108,9112,9116,9136,9140,9144,9148,8848,8852,8856,8860,8880,8884,8888,8892,8336,8340,8344,8348,8368,8372,8376,8380,8592,8596,8600,8604,8624,8628,8632,8636),
(24512,24516,24520,24524,24544,24548,24552,24556,24256,24260,24264,24268,24288,24292,24296,24300,23744,23748,23752,23756,23776,23780,23784,23788,24000,24004,24008,24012,24032,24036,24040,24044,23488,23492,23496,23500,23520,23524,23528,23532,23232,23236,23240,23244,23264,23268,23272,23276,22720,22724,22728,22732,22752,22756,22760,22764,22976,22980,22984,22988,23008,23012,23016,23020,22464,22468,22472,22476,22496,22500,22504,22508,22208,22212,22216,22220,22240,22244,22248,22252,21696,21700,21704,21708,21728,21732,21736,21740,21952,21956,21960,21964,21984,21988,21992,21996,21440,21444,21448,21452,21472,21476,21480,21484,21184,21188,21192,21196,21216,21220,21224,21228,20672,20676,20680,20684,20704,20708,20712,20716,20928,20932,20936,20940,20960,20964,20968,20972,20416,20420,20424,20428,20448,20452,20456,20460,20160,20164,20168,20172,20192,20196,20200,20204,19648,19652,19656,19660,19680,19684,19688,19692,19904,19908,19912,19916,19936,19940,19944,19948,19392,19396,19400,19404,19424,19428,19432,19436,19136,19140,19144,19148,19168,19172,19176,19180,18624,18628,18632,18636,18656,18660,18664,18668,18880,18884,18888,18892,18912,18916,18920,18924,18368,18372,18376,18380,18400,18404,18408,18412,18112,18116,18120,18124,18144,18148,18152,18156,17600,17604,17608,17612,17632,17636,17640,17644,17856,17860,17864,17868,17888,17892,17896,17900,17344,17348,17352,17356,17376,17380,17384,17388,17088,17092,17096,17100,17120,17124,17128,17132,16576,16580,16584,16588,16608,16612,16616,16620,16832,16836,16840,16844,16864,16868,16872,16876,32704,32708,32712,32716,32736,32740,32744,32748,32448,32452,32456,32460,32480,32484,32488,32492,31936,31940,31944,31948,31968,31972,31976,31980,32192,32196,32200,32204,32224,32228,32232,32236,31680,31684,31688,31692,31712,31716,31720,31724,31424,31428,31432,31436,31456,31460,31464,31468,30912,30916,30920,30924,30944,30948,30952,30956,31168,31172,31176,31180,31200,31204,31208,31212,30656,30660,30664,30668,30688,30692,30696,30700,30400,30404,30408,30412,30432,30436,30440,30444,29888,29892,29896,29900,29920,29924,29928,29932,30144,30148,30152,30156,30176,30180,30184,30188,29632,29636,29640,29644,29664,29668,29672,29676,29376,29380,29384,29388,29408,29412,29416,29420,28864,28868,28872,28876,28896,28900,28904,28908,29120,29124,29128,29132,29152,29156,29160,29164,28608,28612,28616,28620,28640,28644,28648,28652,28352,28356,28360,28364,28384,28388,28392,28396,27840,27844,27848,27852,27872,27876,27880,27884,28096,28100,28104,28108,28128,28132,28136,28140,27584,27588,27592,27596,27616,27620,27624,27628,27328,27332,27336,27340,27360,27364,27368,27372,26816,26820,26824,26828,26848,26852,26856,26860,27072,27076,27080,27084,27104,27108,27112,27116,26560,26564,26568,26572,26592,26596,26600,26604,26304,26308,26312,26316,26336,26340,26344,26348,25792,25796,25800,25804,25824,25828,25832,25836,26048,26052,26056,26060,26080,26084,26088,26092,25536,25540,25544,25548,25568,25572,25576,25580,25280,25284,25288,25292,25312,25316,25320,25324,24768,24772,24776,24780,24800,24804,24808,24812,25024,25028,25032,25036,25056,25060,25064,25068,8128,8132,8136,8140,8160,8164,8168,8172,7872,7876,7880,7884,7904,7908,7912,7916,7360,7364,7368,7372,7392,7396,7400,7404,7616,7620,7624,7628,7648,7652,7656,7660,7104,7108,7112,7116,7136,7140,7144,7148,6848,6852,6856,6860,6880,6884,6888,6892,6336,6340,6344,6348,6368,6372,6376,6380,6592,6596,6600,6604,6624,6628,6632,6636,6080,6084,6088,6092,6112,6116,6120,6124,5824,5828,5832,5836,5856,5860,5864,5868,5312,5316,5320,5324,5344,5348,5352,5356,5568,5572,5576,5580,5600,5604,5608,5612,5056,5060,5064,5068,5088,5092,5096,5100,4800,4804,4808,4812,4832,4836,4840,4844,4288,4292,4296,4300,4320,4324,4328,4332,4544,4548,4552,4556,4576,4580,4584,4588,4032,4036,4040,4044,4064,4068,4072,4076,3776,3780,3784,3788,3808,3812,3816,3820,3264,3268,3272,3276,3296,3300,3304,3308,3520,3524,3528,3532,3552,3556,3560,3564,3008,3012,3016,3020,3040,3044,3048,3052,2752,2756,2760,2764,2784,2788,2792,2796,2240,2244,2248,2252,2272,2276,2280,2284,2496,2500,2504,2508,2528,2532,2536,2540,1984,1988,1992,1996,2016,2020,2024,2028,1728,1732,1736,1740,1760,1764,1768,1772,1216,1220,1224,1228,1248,1252,1256,1260,1472,1476,1480,1484,1504,1508,1512,1516,960,964,968,972,992,996,1000,1004,704,708,712,716,736,740,744,748,192,196,200,204,224,228,232,236,448,452,456,460,480,484,488,492,16320,16324,16328,16332,16352,16356,16360,16364,16064,16068,16072,16076,16096,16100,16104,16108,15552,15556,15560,15564,15584,15588,15592,15596,15808,15812,15816,15820,15840,15844,15848,15852,15296,15300,15304,15308,15328,15332,15336,15340,15040,15044,15048,15052,15072,15076,15080,15084,14528,14532,14536,14540,14560,14564,14568,14572,14784,14788,14792,14796,14816,14820,14824,14828,14272,14276,14280,14284,14304,14308,14312,14316,14016,14020,14024,14028,14048,14052,14056,14060,13504,13508,13512,13516,13536,13540,13544,13548,13760,13764,13768,13772,13792,13796,13800,13804,13248,13252,13256,13260,13280,13284,13288,13292,12992,12996,13000,13004,13024,13028,13032,13036,12480,12484,12488,12492,12512,12516,12520,12524,12736,12740,12744,12748,12768,12772,12776,12780,12224,12228,12232,12236,12256,12260,12264,12268,11968,11972,11976,11980,12000,12004,12008,12012,11456,11460,11464,11468,11488,11492,11496,11500,11712,11716,11720,11724,11744,11748,11752,11756,11200,11204,11208,11212,11232,11236,11240,11244,10944,10948,10952,10956,10976,10980,10984,10988,10432,10436,10440,10444,10464,10468,10472,10476,10688,10692,10696,10700,10720,10724,10728,10732,10176,10180,10184,10188,10208,10212,10216,10220,9920,9924,9928,9932,9952,9956,9960,9964,9408,9412,9416,9420,9440,9444,9448,9452,9664,9668,9672,9676,9696,9700,9704,9708,9152,9156,9160,9164,9184,9188,9192,9196,8896,8900,8904,8908,8928,8932,8936,8940,8384,8388,8392,8396,8416,8420,8424,8428,8640,8644,8648,8652,8672,8676,8680,8684),
(24528,24532,24536,24540,24560,24564,24568,24572,24272,24276,24280,24284,24304,24308,24312,24316,23760,23764,23768,23772,23792,23796,23800,23804,24016,24020,24024,24028,24048,24052,24056,24060,23504,23508,23512,23516,23536,23540,23544,23548,23248,23252,23256,23260,23280,23284,23288,23292,22736,22740,22744,22748,22768,22772,22776,22780,22992,22996,23000,23004,23024,23028,23032,23036,22480,22484,22488,22492,22512,22516,22520,22524,22224,22228,22232,22236,22256,22260,22264,22268,21712,21716,21720,21724,21744,21748,21752,21756,21968,21972,21976,21980,22000,22004,22008,22012,21456,21460,21464,21468,21488,21492,21496,21500,21200,21204,21208,21212,21232,21236,21240,21244,20688,20692,20696,20700,20720,20724,20728,20732,20944,20948,20952,20956,20976,20980,20984,20988,20432,20436,20440,20444,20464,20468,20472,20476,20176,20180,20184,20188,20208,20212,20216,20220,19664,19668,19672,19676,19696,19700,19704,19708,19920,19924,19928,19932,19952,19956,19960,19964,19408,19412,19416,19420,19440,19444,19448,19452,19152,19156,19160,19164,19184,19188,19192,19196,18640,18644,18648,18652,18672,18676,18680,18684,18896,18900,18904,18908,18928,18932,18936,18940,18384,18388,18392,18396,18416,18420,18424,18428,18128,18132,18136,18140,18160,18164,18168,18172,17616,17620,17624,17628,17648,17652,17656,17660,17872,17876,17880,17884,17904,17908,17912,17916,17360,17364,17368,17372,17392,17396,17400,17404,17104,17108,17112,17116,17136,17140,17144,17148,16592,16596,16600,16604,16624,16628,16632,16636,16848,16852,16856,16860,16880,16884,16888,16892,32720,32724,32728,32732,32752,32756,32760,32764,32464,32468,32472,32476,32496,32500,32504,32508,31952,31956,31960,31964,31984,31988,31992,31996,32208,32212,32216,32220,32240,32244,32248,32252,31696,31700,31704,31708,31728,31732,31736,31740,31440,31444,31448,31452,31472,31476,31480,31484,30928,30932,30936,30940,30960,30964,30968,30972,31184,31188,31192,31196,31216,31220,31224,31228,30672,30676,30680,30684,30704,30708,30712,30716,30416,30420,30424,30428,30448,30452,30456,30460,29904,29908,29912,29916,29936,29940,29944,29948,30160,30164,30168,30172,30192,30196,30200,30204,29648,29652,29656,29660,29680,29684,29688,29692,29392,29396,29400,29404,29424,29428,29432,29436,28880,28884,28888,28892,28912,28916,28920,28924,29136,29140,29144,29148,29168,29172,29176,29180,28624,28628,28632,28636,28656,28660,28664,28668,28368,28372,28376,28380,28400,28404,28408,28412,27856,27860,27864,27868,27888,27892,27896,27900,28112,28116,28120,28124,28144,28148,28152,28156,27600,27604,27608,27612,27632,27636,27640,27644,27344,27348,27352,27356,27376,27380,27384,27388,26832,26836,26840,26844,26864,26868,26872,26876,27088,27092,27096,27100,27120,27124,27128,27132,26576,26580,26584,26588,26608,26612,26616,26620,26320,26324,26328,26332,26352,26356,26360,26364,25808,25812,25816,25820,25840,25844,25848,25852,26064,26068,26072,26076,26096,26100,26104,26108,25552,25556,25560,25564,25584,25588,25592,25596,25296,25300,25304,25308,25328,25332,25336,25340,24784,24788,24792,24796,24816,24820,24824,24828,25040,25044,25048,25052,25072,25076,25080,25084,8144,8148,8152,8156,8176,8180,8184,8188,7888,7892,7896,7900,7920,7924,7928,7932,7376,7380,7384,7388,7408,7412,7416,7420,7632,7636,7640,7644,7664,7668,7672,7676,7120,7124,7128,7132,7152,7156,7160,7164,6864,6868,6872,6876,6896,6900,6904,6908,6352,6356,6360,6364,6384,6388,6392,6396,6608,6612,6616,6620,6640,6644,6648,6652,6096,6100,6104,6108,6128,6132,6136,6140,5840,5844,5848,5852,5872,5876,5880,5884,5328,5332,5336,5340,5360,5364,5368,5372,5584,5588,5592,5596,5616,5620,5624,5628,5072,5076,5080,5084,5104,5108,5112,5116,4816,4820,4824,4828,4848,4852,4856,4860,4304,4308,4312,4316,4336,4340,4344,4348,4560,4564,4568,4572,4592,4596,4600,4604,4048,4052,4056,4060,4080,4084,4088,4092,3792,3796,3800,3804,3824,3828,3832,3836,3280,3284,3288,3292,3312,3316,3320,3324,3536,3540,3544,3548,3568,3572,3576,3580,3024,3028,3032,3036,3056,3060,3064,3068,2768,2772,2776,2780,2800,2804,2808,2812,2256,2260,2264,2268,2288,2292,2296,2300,2512,2516,2520,2524,2544,2548,2552,2556,2000,2004,2008,2012,2032,2036,2040,2044,1744,1748,1752,1756,1776,1780,1784,1788,1232,1236,1240,1244,1264,1268,1272,1276,1488,1492,1496,1500,1520,1524,1528,1532,976,980,984,988,1008,1012,1016,1020,720,724,728,732,752,756,760,764,208,212,216,220,240,244,248,252,464,468,472,476,496,500,504,508,16336,16340,16344,16348,16368,16372,16376,16380,16080,16084,16088,16092,16112,16116,16120,16124,15568,15572,15576,15580,15600,15604,15608,15612,15824,15828,15832,15836,15856,15860,15864,15868,15312,15316,15320,15324,15344,15348,15352,15356,15056,15060,15064,15068,15088,15092,15096,15100,14544,14548,14552,14556,14576,14580,14584,14588,14800,14804,14808,14812,14832,14836,14840,14844,14288,14292,14296,14300,14320,14324,14328,14332,14032,14036,14040,14044,14064,14068,14072,14076,13520,13524,13528,13532,13552,13556,13560,13564,13776,13780,13784,13788,13808,13812,13816,13820,13264,13268,13272,13276,13296,13300,13304,13308,13008,13012,13016,13020,13040,13044,13048,13052,12496,12500,12504,12508,12528,12532,12536,12540,12752,12756,12760,12764,12784,12788,12792,12796,12240,12244,12248,12252,12272,12276,12280,12284,11984,11988,11992,11996,12016,12020,12024,12028,11472,11476,11480,11484,11504,11508,11512,11516,11728,11732,11736,11740,11760,11764,11768,11772,11216,11220,11224,11228,11248,11252,11256,11260,10960,10964,10968,10972,10992,10996,11000,11004,10448,10452,10456,10460,10480,10484,10488,10492,10704,10708,10712,10716,10736,10740,10744,10748,10192,10196,10200,10204,10224,10228,10232,10236,9936,9940,9944,9948,9968,9972,9976,9980,9424,9428,9432,9436,9456,9460,9464,9468,9680,9684,9688,9692,9712,9716,9720,9724,9168,9172,9176,9180,9200,9204,9208,9212,8912,8916,8920,8924,8944,8948,8952,8956,8400,8404,8408,8412,8432,8436,8440,8444,8656,8660,8664,8668,8688,8692,8696,8700)
);
function getTiledElementByteOffset_32(PITCH,x,y:DWORD):QWORD;
var
element_index:DWORD;
//pipe,bank:QWORD;
total_offset:QWORD;
begin
//getElementIndex [0..5]
//element_index:= ( (x ) and 1) shl 2;
//element_index:=element_index or ( (x shr 1) and 1) shl 3;
//element_index:=element_index or ( (y ) and 1) shl 4;
//element_index:=element_index or ( (x shr 2) and 1) shl 5;
//element_index:=element_index or ( (y shr 1) and 1) shl 6;
//element_index:=element_index or ( (y shr 2) and 1) shl 7;
//getPipeIndex [6..8]
//pipe:= ( ((x shr 3) xor (y shr 3) xor (x shr 4)) and 1) shl 8;
//pipe:=pipe or ( ((x shr 4) xor (y shr 4)) and 1) shl 9;
//pipe:=pipe or ( ((x shr 5) xor (y shr 5)) and 1) shl 10;
//getBankIndex [9..12]
//bank:= ( ((x shr 6) xor (y shr 6)) and 1) shl 11;
//bank:=bank or ( ((x shr 7) xor (y shr 5) xor (y shr 6)) and 1) shl 12;
//bank:=bank or ( ((x shr 8) xor (y shr 4)) and 1) shl 13;
//bank:=bank or ( ((x shr 9) xor (y shr 3)) and 1) shl 14;
element_index:=index_pipe_bank_32[y and 127,x and 1023];
total_offset:=((y shr 6)*PITCH + (x shr 7));
Result := element_index {or pipe or bank} or (total_offset shl 15)
end;
function getTiledElementByteOffset_32_NEO(PITCH,x,y:DWORD):QWORD;
var
element_index:DWORD;
//pipe,bank:QWORD;
total_offset:QWORD;
begin
//getElementIndex [0..5]
//element_index:= ( (x ) and 1) shl 2;
//element_index:=element_index or ( (x shr 1) and 1) shl 3;
//element_index:=element_index or ( (y ) and 1) shl 4;
//element_index:=element_index or ( (x shr 2) and 1) shl 5;
//element_index:=element_index or ( (y shr 1) and 1) shl 6;
//element_index:=element_index or ( (y shr 2) and 1) shl 7;
//getPipeIndex [6..9]
//pipe:= ( ((x shr 3) xor (y shr 3) xor (x shr 4)) and 1) shl 8;
//pipe:=pipe or ( ((x shr 4) xor (y shr 4)) and 1) shl 9;
//pipe:=pipe or ( ((x shr 5) xor (y shr 5)) and 1) shl 10;
//pipe:=pipe or ( ((x shr 6) xor (y shr 5)) and 1) shl 11;
//getBankIndex [10..12]
//bank:= ( ((x shr 7) xor (y shr 6)) and 1) shl 12;
//bank:=bank or ( ((x shr 8) xor (y shr 5) xor (y shr 6)) and 1) shl 13;
//bank:=bank or ( ((x shr 9) xor (y shr 4)) and 1) shl 14;
element_index:=index_pipe_bank_neo_32[y and 127,x and 1023];
total_offset:=
( (x shr 7) shl 1)+
(((y shr 7)*PITCH) shl 1)+
( (y shr 3) and 1);
Result := element_index {or pipe or bank} or (total_offset shl 15);
end;
type
t_tile_offset_cb=function(PITCH,x,y:DWORD):QWORD;
procedure detile32bppBuf_slow(attr:p_attr;l_w:Ptrint;src,dst:Pointer);
var
x,y:Ptrint;
tiled_offset,linear_offset:Ptrint;
linear_pitch:Ptrint;
get_tile_offset:t_tile_offset_cb;
PITCH:Ptrint;
begin
if (p_neomode<>0) then
begin
get_tile_offset:=@getTiledElementByteOffset_32_NEO;
end else
begin
get_tile_offset:=@getTiledElementByteOffset_32;
end;
PITCH:=(attr^.attr.pitchPixel+127) div 128;
y:=0;
While (y<attr^.attr.height) do
begin
linear_pitch:=y*l_w;
x:=0;
While (x<attr^.attr.width) do
begin
tiled_offset:=get_tile_offset(PITCH,x,y);
linear_offset:=(x+linear_pitch)*4;
PDWORD(dst+linear_offset)^:=PDWORD(src+tiled_offset)^;
x:=x+1;
end;
y:=y+1;
end;
end;
const
kMicroTileWidth = 8;
kMicroTileHeight = 8;
//RCX RDX R8 R9
procedure detile32bppDisplay_AVX(dst:Pointer;destPitch:DWORD); assembler; nostackframe; MS_ABI_CDecl;
asm
leal (%rdx,%rdx,2), %eax
leal ( ,%rdx,8), %r8d
leal ( ,%rdx,4), %r9d
sall $2, %eax
sall $4, %edx
vmovups %xmm3, (%rcx)
vmovups %xmm2, 16(%rcx)
vextractf128 $1, %ymm3, (%rcx,%r9)
vextractf128 $1, %ymm2, 16(%rcx,%r9)
vmovups %xmm1, (%rcx,%r8)
vmovups %xmm0, 16(%rcx,%r8)
vextractf128 $1, %ymm1, (%rcx,%rax)
vextractf128 $1, %ymm0, 16(%rcx,%rax)
leal (%rdx, %rcx), %rcx
vmovups %xmm7, (%rcx)
vmovups %xmm6, 16(%rcx)
vextractf128 $1, %ymm7, (%rcx,%r9)
vextractf128 $1, %ymm6, 16(%rcx,%r9)
vmovups %xmm5, (%rcx,%r8)
vmovups %xmm4, 16(%rcx,%r8)
vextractf128 $1, %ymm5, (%rcx,%rax)
vextractf128 $1, %ymm4, 16(%rcx,%rax)
end;
procedure detile32bppBuf_AVX(attr:p_attr;l_w:Ptrint;src,dst:Pointer);
var
x,y:Ptrint;
tiled_offset,linear_offset:Ptrint;
linear_pitch:Ptrint;
get_tile_offset:t_tile_offset_cb;
PITCH:Ptrint;
ptr:Pointer;
begin
if (p_neomode<>0) then
begin
get_tile_offset:=@getTiledElementByteOffset_32_NEO;
end else
begin
get_tile_offset:=@getTiledElementByteOffset_32;
end;
PITCH:=(attr^.attr.pitchPixel+127) div 128;
y:=0;
While (y<attr^.attr.height) do
begin
linear_pitch:=y*l_w;
x:=0;
While (x<attr^.attr.width) do
begin
//cacheLine=0
ptr:=(src+get_tile_offset(PITCH,x+0,y+0));
asm
movq ptr , %rax
vmovdqa 0(%rax), %ymm3
vmovdqa 32(%rax), %ymm2
end ['rax'];
//cacheLine=1
ptr:=(src+get_tile_offset(PITCH,x+0,y+2));
asm
movq ptr , %rax
vmovdqa 0(%rax), %ymm1
vmovdqa 32(%rax), %ymm0
end ['rax'];
//cacheLine=2
ptr:=(src+get_tile_offset(PITCH,x+0,y+4));
asm
movq ptr , %rax
vmovdqa 0(%rax), %ymm7
vmovdqa 32(%rax), %ymm6
end ['rax'];
//cacheLine=3
ptr:=(src+get_tile_offset(PITCH,x+0,y+6));
asm
movq ptr , %rax
vmovdqa 0(%rax), %ymm5
vmovdqa 32(%rax), %ymm4
end ['rax'];
linear_offset:=(x+linear_pitch)*4;
detile32bppDisplay_AVX(dst + linear_offset, l_w);
x:=x+kMicroTileWidth;
end;
y:=y+kMicroTileHeight;
end;
end;
procedure BGRAFlip(buf:Pointer;count8dwords:QWORD);
const
CSHIFT:array[0..3] of QWORD=(
//A R G B A R G B
$0704050603000102,
$0F0C0D0E0B08090A,
$1714151613101112,
$1F1C1D1E1B18191A
);
begin
asm
vmovdqu CSHIFT(%rip), %ymm0
end;
while (count8dwords<>0) do
begin
asm
mov buf, %rax
vmovdqa (%rax), %ymm1
vpshufb %ymm0, %ymm1, %ymm1
vmovdqa %ymm1, (%rax)
end ['rax'];
//
Inc(buf,32);
Dec(count8dwords);
end;
end;
procedure SoftFlip(hWindow:THandle;buf:p_buffer;attr:p_attr;p_dst:PPointer);
var
hdc:THandle;
bi:BITMAPINFO;
yofs:Integer;
rect:TRect;
len:Ptrint;
dst:Pointer;
begin
hdc:=GetDC(hWindow);
rect:=Default(TRect);
GetClientRect(hWindow,rect);
bi:=Default(BITMAPINFO);
bi.bmiHeader.biSize :=sizeof(bi.bmiHeader);
bi.bmiHeader.biWidth :=attr^.attr.pitchPixel;
bi.bmiHeader.biHeight :=attr^.attr.height;
bi.bmiHeader.biPlanes :=1;
bi.bmiHeader.biBitCount :=32;
bi.bmiHeader.biCompression:=BI_RGB;
if {(attr^.attr.tilingMode<>0)} false then
begin
//alloc aligned 128x128
bi.bmiHeader.biWidth :=(attr^.attr.pitchPixel+127) and (not 127);
bi.bmiHeader.biHeight:=(attr^.attr.height +127) and (not 127);
len:=bi.bmiHeader.biWidth*bi.bmiHeader.biHeight*4;
if (p_dst^=nil) then
begin
p_dst^:=AllocMem(len);
end else
if (MemSize(p_dst^)<len) then
begin
p_dst^:=ReAllocMem(p_dst^,len);
end;
dst:=p_dst^;
//detile32bppBuf_slow(attr,bi.bmiHeader.biWidth,buf^.left_dmem,dst);
detile32bppBuf_AVX(attr,bi.bmiHeader.biWidth,buf^.left.mirr,dst);
end else
begin
bi.bmiHeader.biWidth:=(bi.bmiHeader.biWidth+63) and (not 63);
dst:=buf^.left.mirr;
end;
if (attr^.attr.pixelFormat=SCE_VIDEO_OUT_PIXEL_FORMAT_A8B8G8R8_SRGB) then
begin
BGRAFlip(dst,bi.bmiHeader.biWidth*bi.bmiHeader.biHeight div 8);
end;
//flip
yofs:=bi.bmiHeader.biHeight-attr^.attr.height;
bi.bmiHeader.biHeight:=-bi.bmiHeader.biHeight;
SetStretchBltMode(hdc, HALFTONE);
StretchDIBits(hdc,
0,0,
rect.Width, rect.Height,
0,yofs,
attr^.attr.width,
attr^.attr.height,
dst,
bi,
DIB_RGB_COLORS,
SRCCOPY
);
{
SetDIBitsToDevice(hdc,
0, 0,
attr^.attr.width, attr^.attr.height,
0, 0,
0, attr^.attr.height,
buf^.left_dmem, bi, DIB_RGB_COLORS);
}
ReleaseDC(hWindow, hdc);
end;
procedure TDisplayHandleSoft.SubmitNode(Node:PQNodeSubmit);
begin
Node^.tsc:=rdtsc();
FSubmitQueue.Push(Node);
if (Node^.submit.flipMode=SCE_VIDEO_OUT_FLIP_MODE_HSYNC) then
begin
RTLEventSetEvent(FHEvent);
end;
end;
procedure gc_wakeup_internal_ptr(ptr:Pointer); register; external;
procedure TDisplayHandleSoft.BufferChangeState(state:TBufStateChange;bufferIndex:Integer);
begin
case state of
bSubmitFlip:
begin
if (bufferIndex<>-1) then
begin
//set buf label
labels[bufferIndex]:=1;
gc_wakeup_internal_ptr(@labels[bufferIndex]);
//inc flip counter
System.InterlockedIncrement(Fflip_count[bufferIndex]);
end;
//inc pending frame
System.InterlockedIncrement(last_status.flipPendingNum0);
end;
bSubmitFlipEop:
begin
if (bufferIndex<>-1) then
begin
//inc flip counter
System.InterlockedIncrement(Fflip_count[bufferIndex]);
end;
//inc GPU pending frame
System.InterlockedIncrement(last_status.gcQueueNum);
end;
bTriggerFlipEop:
begin
//dec GPU pending mark
System.InterlockedDecrement(last_status.gcQueueNum);
//inc pending frame
System.InterlockedIncrement(last_status.flipPendingNum0);
if (bufferIndex<>-1) then
begin
//set buf label
labels[bufferIndex]:=1;
gc_wakeup_internal_ptr(@labels[bufferIndex]);
end;
end;
bFinishFlip:
begin
//dec pending frame
System.InterlockedDecrement(last_status.flipPendingNum0);
//dec flip counter
if (bufferIndex<>-1) then
begin
System.InterlockedDecrement(Fflip_count[bufferIndex]);
end;
//reset prev label
if (FPrevBufIndex<>-1) then
begin
labels[FPrevBufIndex]:=0;
gc_wakeup_internal_ptr(@labels[FPrevBufIndex]);
end;
labels[16]:=0; //bufferIndex = -1 ???
//save buffer index to next reset
FPrevBufIndex:=bufferIndex;
end;
end;
end;
{
This hack explicitly prohibits putting the same buffer in a queue,
thus preventing the evil behavior of some games that only
look at the vblank period (or just wait for a timer)
that will eventually overflow the flip buffer.
}
procedure TDisplayHandleSoft.HackPreWait(submit:p_submit_flip);
begin
if (submit^.bufferIndex<>-1) then
begin
mtx_unlock(dce_mtx^);
RTLEventWaitFor(Fsubmit_count[submit^.bufferIndex]);
mtx_lock(dce_mtx^);
end;
end;
function TDisplayHandleSoft.SubmitFlip(submit:p_submit_flip):Integer;
var
buf :p_buffer;
attr:p_attr;
Node:PQNodeSubmit;
begin
if (submit^.bufferIndex<>-1) then
begin
buf:=@m_bufs[submit^.bufferIndex];
if (buf^.init=0) then Exit(EINVAL);
attr:=@m_attr[buf^.attr];
if (attr^.init=0) then Exit(EINVAL);
end;
Node:=FSubmitAlloc.Alloc;
if (Node=nil) then
begin
Writeln('SubmitQueue is busy!');
Exit(EBUSY);
end;
Node^.submit:=submit^;
HackPreWait(submit);
BufferChangeState(bSubmitFlip,submit^.bufferIndex);
SubmitNode(Node);
Result:=0;
end;
function TDisplayHandleSoft.SubmitFlipEop(submit:p_submit_flip;submit_id:QWORD):Integer;
var
buf :p_buffer;
attr:p_attr;
Node:PQNodeSubmit;
Flip:PQNodeFlip;
begin
if (submit^.bufferIndex<>-1) then
begin
buf:=@m_bufs[submit^.bufferIndex];
if (buf^.init=0) then Exit(EINVAL);
attr:=@m_attr[buf^.attr];
if (attr^.init=0) then Exit(EINVAL);
end;
Node:=FSubmitAlloc.Alloc;
if (Node=nil) then
begin
Writeln('SubmitQueue is busy!');
Exit(EBUSY);
end;
Flip:=FFlipAlloc.Alloc;
if (Flip=nil) then
begin
FSubmitAlloc.Free(Node);
Writeln('FlipQueue is busy!');
Exit(EBUSY);
end;
Node^.submit:=submit^;
HackPreWait(submit);
Flip^.next_ :=nil;
Flip^.submit :=Node;
Flip^.submit_id:=submit_id;
BufferChangeState(bSubmitFlipEop,submit^.bufferIndex);
STAILQ_INSERT_TAIL(@FFlipQueue,Flip,@Flip^.entry);
Result:=0;
end;
function TDisplayHandleSoft.TriggerFlipEop(submit_id:QWORD):Integer;
var
Node:PQNodeSubmit;
Flip:PQNodeFlip;
begin
Result:=0;
//
mtx_lock(dce_mtx^);
Flip:=STAILQ_FIRST(@FFlipQueue);
while (Flip<>nil) do
begin
if (Flip^.submit_id=submit_id) then
begin
STAILQ_REMOVE(@FFlipQueue,Flip,@Flip^.entry);
Node:=Flip^.submit;
Flip^.submit:=nil;
FFlipAlloc.Free(Flip);
BufferChangeState(bTriggerFlipEop,Node^.submit.bufferIndex);
mtx_unlock(dce_mtx^);
if (Node<>nil) then
begin
SubmitNode(Node);
end;
Exit;
end;
//
Flip:=STAILQ_NEXT(Flip,@Flip^.entry);
end;
mtx_unlock(dce_mtx^);
//
Result:=1;
end;
function TDisplayHandleSoft.Vblank():Boolean;
begin
vblank_count:=vblank_count+1;
if (vblank_count>flip_rate) then
begin
vblank_count:=0;
RTLEventSetEvent(FHEvent);
RTLEventSetEvent(FVEvent);
end;
{
Delay vblank update when GPU rendering is in progress,
so that games that only rely on vblank will wait
for the actual rendering to complete!
}
Result:=(last_status.gcQueueNum=0);
end;
procedure TDisplayHandleSoft.OnFlip(Node:PQNodeSubmit);
var
i:Integer;
submit:p_submit_flip;
buf :p_buffer;
attr:p_attr;
begin
//submit attr
if (m_sbat.init<>0) then
begin
i:=m_sbat.index;
//
mtx_lock(dce_mtx^);
m_attr[i].attr:=m_sbat.attr;
m_attr[i].size:=get_buf_size(@m_sbat.attr);
mtx_unlock(dce_mtx^);
//
m_sbat.init:=0;
end;
submit:=@Node^.submit;
if (submit^.bufferIndex<>-1) then
begin
buf:=@m_bufs[submit^.bufferIndex];
if (buf^.init=0) then Exit;
attr:=@m_attr[buf^.attr];
if (attr^.init=0) then Exit;
SoftFlip(hWindow,buf,attr,@dst_cache);
end;
if (submit^.bufferIndex<>-1) then
begin
RTLEventSetEvent(Fsubmit_count[submit^.bufferIndex]);
end;
mtx_lock(dce_mtx^);
BufferChangeState(bFinishFlip,submit^.bufferIndex);
last_status.flipArg :=submit^.flipArg;
last_status.flipArg2 :=submit^.flipArg2;
last_status.count :=last_status.count+1;
last_status.submitTsc :=Node^.tsc;
last_status.currentBuffer :=submit^.bufferIndex;
last_status.processTime :=GetProcessTime;
last_status.tsc :=rdtsc();
mtx_unlock(dce_mtx^);
knote_eventid(EVENTID_FLIP, submit^.flipArg);
if (p_fps_cnt<>nil) then
begin
System.InterlockedIncrement64(p_fps_cnt^);
end;
end;
procedure dce_thread(parameter:pointer); SysV_ABI_CDecl;
var
dce:TDisplayHandleSoft;
Node:PQNodeSubmit;
begin
sched_prio(curkthread,64);
dce:=TDisplayHandleSoft(parameter);
repeat
Node:=nil;
if dce.FSubmitQueue.Pop(Node) then
begin
//
if (Node^.submit.flipMode<>SCE_VIDEO_OUT_FLIP_MODE_HSYNC) then
begin
RTLEventWaitFor(dce.FVEvent);
end else
begin
RTLEventResetEvent(dce.FVEvent);
end;
//
dce.OnFlip(Node);
dce.FSubmitAlloc.Free(Node);
//
end else
begin
RTLEventWaitFor(dce.FHEvent);
end;
until dce.FTerminate;
end;
end.