Preprocessing

Preprocessing

Topics relate to geometry, meshing, and CAD

new mesh has not been created. continue to solve with old mesh

    • Yunpeng Wu
      Subscriber

      When I trying to do 

      NLADAPTIVE,ALL,ADD,MESH,SHAPE,90
      NLMESH,NLAY,10

      It shows 'new mesh has not been created. continue to solve with old mesh'

      How can I solve this problem? Thank you.

    • mjmiddle
      Ansys Employee

      You have specified to remesh with a mesh quality metric allowing a maximum element angle of 90 degrees. The remesh resulted in a worst element angle of 158.4374 degrees which is not an improvement over the worst angle of 90.0778 before the remesh, so it rejected the remesh, and used the mesh before this.

      The strategy is to remesh early and often, before the body gets too deformed, or else it may not remesh with an acceptable quality. So you may need to increase the rate at which is checks so that it checks earlier. Allowing a max angle of 90 seems a bit stringent considering the default to check is 155 degrees for volume elements. But if you increase the metric it's going to mesh later in the process. Maybe you need to view how distorted the mesh is right at that substep where it starts to remesh.

      You need a body with enough bulk volume to use nonlinear adaptive region.  Thin bodies may not allow enough room to refine mesh especially if connected to another body in a multibody part (mesh connected).

      • Yunpeng Wu
        Subscriber
        1. When I tried to do a max angle of 155 degrees, the command didn't drive the remesh, even 100 degrees, the remesh can't happens, and the maxium to start the remesh is 90 degree.
        2. This structure is a plane, 100*100 elements, and each element is a 1*1 square, when I use the same material for all the elements, it can converge without remesh, but if I choose to use 2 different materials, the non-linear process can't converge.

        Do you have any idea about why this problem happens?

        The code is shown below:

        FINISH
        /CLEAR

        *do,fid,1,1

        /PREP7  

        !=== Define material 1
        ET,1,PLANE182   

         

        MP,EX,1,2000
        MP,PRXY,1,0.3

        !==== Define material 2
        ET,2,PLANE182
        MP,EX,2,1000
        MP,PRXY,2,0.3

        /PREP7  

        NDELE,ALL
        EDELE,ALL
        DDELE,ALL,ALL 
        NUMCMP,ALL

        !NLADAPTIVE,ALL,ADD,MESH,SKEWNESS,0.9

        *set,ntb
        *set,etb

        filename=strcat('nodes',chrval(fid))
        fext='dat'

        /INQUIRE,rows1,LINES,%filename%,%fext%
        *DIM,ntb,ARRAY,rows1,4
        *VREAD,ntb,%filename%,%fext%,,JIK,4,rows1
        (4F6.0)    !* read 4 real numbers with maximum 6 digits, use 6 if number is 10000

        filename=strcat('elements',chrval(fid))

        /INQUIRE,rows2,LINES,%filename%,%fext%
        *DIM,etb,ARRAY,rows2,5
        *VREAD,etb,%filename%,%fext%,,JIK,5,rows2
        (5F6.0)

        *do,i,1,rows1
            n,ntb(i,1),ntb(i,2),ntb(i,3),ntb(i,4)
        *enddo


        *do,i,1,rows2
            e,etb(i,1),etb(i,2),etb(i,3),etb(i,4)
        *enddo

        !=== Define element group 1
        k=0
        nElements=1
        *do,i,1,rows2
            nElements=nElements+1
               *if,etb(i,5),eq,1,then
                      k=k+1
               *endif
        *enddo

        *status,k
        *status,nElements

        ESEL,S,elem,,1,k
        MPCHG,1,ALL
        CM,MATRIX,ELEM

        ESEL,S,ELEM,,k+1,nElements
        MPCHG,2,ALL
        CM,FILLER,ELEM

         

        /SOL
        ANTYPE,0,NEW
        NLGEOM,1
        NSUBST,1000,2000,10  
        AUTOTS,-1.0  

        ALLSEL,ALL

        NSEL,S,LOC,X,0
        D,ALL,UX,0

        NSEL,S,LOC,Y,0
        D,ALL,UY,0

        NSEL,S,LOC,Y,100
        CP,NEXT,UY,ALL
        ALLSEL,ALL

        filename=strcat('nlist',chrval(fid))
        /INQUIRE,rows3,LINES,%filename%,%fext%
        *DIM,ctb,ARRAY,rows3,3
        *VREAD,ctb,%filename%,%fext%,,JIK,3,rows3
        (3F6.0)

        !=== couple top and bottom nodes for UX
        *do,i,1,rows3
            CP,NEXT,UX,ctb(i,2),ctb(i,3)
        *enddo


        *do,i,1,1     !* loop over three displacements


        /SOL
        u=100*i

        NSEL,S,LOC,X,100
        D,ALL,UX,u


        ANTYPE,0
        NLGEOM,1
        !AUTOTS,ON
        !DTIME,0.01,0.00001,0.1
        !ARCLEN,ON
        NSUBST,1000,2000,10  

        NLADAPTIVE,ALL,ADD,MESH,SHAPE,155
        NLMESH,BDRA,50

        !CUTCONTROL,DSPLIMIT,10e7


        ALLSEL,ALL
        SOLVE   
        FINISH  

        /POST1  
        PLDISP,1

        NSEL,S,LOC,X,0
        set,LAST
        fsum
        *get,fsum,FSUM,0,ITEM,Fx
        force=fsum

        filename=strcat('res',chrval(fid))

        *if,i,eq,1,then
            *cfopen,%filename%,txt,,
        *else
            *cfopen,%filename%,txt,,APPEND
        *endif

        *vwrite,u,force
        (G16.8,G16.8)
        *cfclose
        tempname=strcat(chrval(fid),'-')
        tempname=strcat(tempname,chrval(i))
        filename=strcat('nodal_stress_x',tempname)
        *cfopen,%filename%,txt,,
        *do,xid,1,rows1
        *set,strx
        *GET,strx, node,xid,s,X
        *vwrite,strx
        (G16.8)
        *enddo
        *cfclose

        filename=strcat('nodal_stress_y',tempname)
        *cfopen,%filename%,txt,,
        *do,xid,1,rows1
        *set,stry
        *GET,stry, node,xid,s,Y
        *vwrite,stry
        (G16.8)
        *enddo
        *cfclose

        filename=strcat('nodal_stress_xy',tempname)
        *cfopen,%filename%,txt,,
        *do,xid,1,rows1
        *set,strxy
        *GET,strxy, node,xid,s,XY
        *vwrite,strxy
        (G16.8)
        *enddo
        *cfclose


        FINISH 
        *enddo
        /CLEAR


        *enddo   !* end of outer loop

    • Bill Bulat
      Ansys Employee

      Hi Yunpeng,

      Your input does not run without "nodes1.dat" file. If it helps, I once created the 3D test case below that works (it solves in less than a minute). It does not use element mesh metrics as a criterion for remeshing. Instead, it uses element energy.

       

       

      fini
      /cle
       
      /sys,del file*.png
       
      /vup,1,z
      /vie,1,3,2,1
       
       
      C***************************************************
      C*** PARAMETERS
      C***************************************************
      k_nlad=1
       
      l=0.100
      w=0.040
      t=0.010
      r=0.015
       
      x_cut=1.5*r
       
      E=2e11
      Sy=E/100
      E2=E/25
      nu=0.3
       
      theta_pilot=15*(acos(-1)/180)
       
       
      C***************************************************
      C*** MODEL
      C***************************************************
      /prep7
      n,1,l/2 ! PILOT NODE
      bloc,-l/2,l/2,-w/2,w/2,-t/2,t/2 ! GEOMETRY
      cyli,,r,-t/2,t/2
      vsbv,1,2
       
      wpcs,-1,0
      wpro,,,90
      wpof,,,x_cut
      vsbw,all
      wpof,,,-2*x_cut
      vsbw,all
       
       
      vplo
       
      et,1,185 ! ATTRIBUTES, MESH
      mp,ex,1,E
      tb,plastic,1,,,biso
      tbdata,,Sy,E2
      mp,nuxy,1,nu
      vswe,all
       
       
      C*******************************************************************
      C*** CREATE MPC CONTACT w/PILOT NODE
      C*******************************************************************
       
      *get,etmax,etype,,num,max
      *get,mpmax,mat,,num,max
      *get,rmax,real,,num,max
      *get,secmax,secp,,num,max
      attrmax=max(etmax,max(mpmax,max(secmax,rmax)))
       
       
      C*******************************************************************
      C*** DEFINE CONTACT ATTRIBUTES
      C*******************************************************************
       
      et,attrmax+1,174 ! CONTACT ELEMENT TYPE (ON BEAM TIP)
      keyo,attrmax+1,4,1 ! FORCE DISTRIBUTED
      keyo,attrmax+1,2,2 ! MPC
      keyo,attrmax+1,12,5 ! BONDED
       
      et,attrmax+2,170 ! TARGET ELEMENT TYPE (PILOT NODE)
      keyo,attrmax+2,2,1 ! USER SPECIFIED PILOT NODE CONSTRAINT
      keyo,attrmax+2,5,3 ! SHELL-SOLID
       
      tshap,pilot ! TARGET SHAPE (PILOT NODE)
       
       
      C*******************************************************************
      C*** DEFINE REMOTE POINT
      C*******************************************************************
      real,attrmax+1
      type,attrmax+2 ! DEFINE TARGET PILOT ELEMENT (REMOTE POINT)
       
      nsel,s,node,,1
      cm,pilot_n,node
      nd1=1
      e,1
       
       
      C*******************************************************************
      C*** PROMPT USER TO SELECT AREA(S) TO BOND TO PILOT NODE
      C*******************************************************************
      nsel,s,loc,x,l/2
      nsel,u,node,,1
      cm,contact_n,node
      esln
       
      type,attrmax+1 ! OVERLAY BEAM TIP WITH CONTACT ELEMENTS
      esurf
       
       
      C*******************************************************************
      C*** DETERMINE PINBALL
      C*******************************************************************
       
      cmse,s,contact_n
      *get,nnds,node,,count
       
      nd=0
      pinball=0
      *do,i,1,nnds
       cmse,s,contact_n
       nd2=ndnext(nd)
       cmse,a,pilot_n
       pinball=max(pinball,distnd(nd1,nd2))
      *enddo
       
      r,attrmax+1,,,,,,2*pinball ! PINBALL
       
      alls
       
       
      C*******************************************************************
      C*** APPLIED DISPLACEMENTS
      C*******************************************************************
      d,1,roty,theta_pilot
      nsel,s,loc,x,-l/2
      d,all,all
       
       
      C*******************************************************************
      C*** SOLVE
      C*******************************************************************
       
      et,11,187 ! TETRAHEDRAL ELEMENT TYPE FOR NLAD-ETCHG
       
      *if,k_nlad,eq,1,then
       esel,s,type,,1
       cm,nlad_e,elem
      *elseif,k_nlad,eq,2,then
       esel,s,cent,x,-x_cut,x_cut
       cm,nlad_e,elem
      *endif
       
      fini
       
      /solu
       
      nladaptive,nlad_e,add,energy,mean,10
      nladaptive,nlad_e,on,,,-2,,,11
       
      nlge,on
       
      alls
      save
       
      eplo
      /sho,png $eplo $/sho,close $/wait,2
       
      solve
      fini
       
       
      C*******************************************************************
      C*** POST PROCESS
      C*******************************************************************
      /post1
      /edge,1,1
      plns,eppl,x,2
      /sho,png $plns,eppl,x,2 $/sho,close $/wait,2
       
      --Bill
      • Yunpeng Wu
        Subscriber

        Hello Bill

        I appreciate your help. I will try the energy method.

        I'm wondering if can you download the Google Drive link for the "nodes1.dat", "element1.dat" and "nlist1.dat" for running the code.

        Here is the link:

        https://drive.google.com/drive/folders/1jy9AVwywknckaawVl_8z1B_ofg_1Lfk-?usp=sharing

      • Yunpeng Wu
        Subscriber

        The energy method still can't converge.

        If you are unable to download, here is a 50*50 case, you can copy and create the files and run.

        Really thank you again for the help.

         

        APDL code for 50*50

        FINISH
        /CLEAR

        *do,fid,1,1

        /PREP7  

        !=== Define material 1
        ET,1,PLANE182   

         

        MP,EX,1,6e11
        MP,PRXY,1,0.3

        !==== Define material 2
        ET,2,PLANE182
        MP,EX,2,1000
        MP,PRXY,2,0.3

        /PREP7  

        NDELE,ALL
        EDELE,ALL
        DDELE,ALL,ALL 
        NUMCMP,ALL

        !NLADAPTIVE,ALL,ADD,MESH,SKEWNESS,0.9

        *set,ntb
        *set,etb

        filename=strcat('nodes',chrval(fid))
        fext='dat'

        /INQUIRE,rows1,LINES,%filename%,%fext%
        *DIM,ntb,ARRAY,rows1,4
        *VREAD,ntb,%filename%,%fext%,,JIK,4,rows1
        (4F6.0)    !* read 4 real numbers with maximum 6 digits, use 6 if number is 10000

        filename=strcat('elements',chrval(fid))

        /INQUIRE,rows2,LINES,%filename%,%fext%
        *DIM,etb,ARRAY,rows2,5
        *VREAD,etb,%filename%,%fext%,,JIK,5,rows2
        (5F6.0)

        *do,i,1,rows1
            n,ntb(i,1),ntb(i,2),ntb(i,3),ntb(i,4)
        *enddo


        *do,i,1,rows2
            e,etb(i,1),etb(i,2),etb(i,3),etb(i,4)
        *enddo

        !=== Define element group 1
        k=0
        nElements=1
        *do,i,1,rows2
            nElements=nElements+1
               *if,etb(i,5),eq,1,then
                      k=k+1
               *endif
        *enddo

        *status,k
        *status,nElements

        ESEL,S,elem,,1,k
        MPCHG,1,ALL
        CM,MATRIX,ELEM

        ESEL,S,ELEM,,k+1,nElements
        MPCHG,2,ALL
        CM,FILLER,ELEM

         

        /SOL
        ANTYPE,0,NEW
        NLGEOM,1
        NSUBST,1000,2000,10  
        AUTOTS,-1.0  

        ALLSEL,ALL

        NSEL,S,LOC,X,0
        D,ALL,UX,0

        NSEL,S,LOC,Y,0
        D,ALL,UY,0

        NSEL,S,LOC,Y,50
        CP,NEXT,UY,ALL
        ALLSEL,ALL

        filename=strcat('nlist',chrval(fid))
        /INQUIRE,rows3,LINES,%filename%,%fext%
        *DIM,ctb,ARRAY,rows3,3
        *VREAD,ctb,%filename%,%fext%,,JIK,3,rows3
        (3F6.0)

        !=== couple top and bottom nodes for UX
        *do,i,1,rows3
            CP,NEXT,UX,ctb(i,2),ctb(i,3)
        *enddo


        *do,i,1,1     !* loop over three displacements


        /SOL
        u=200*i

        NSEL,S,LOC,X,50
        D,ALL,UX,u


        ANTYPE,0
        NLGEOM,1
        !AUTOTS,ON
        !DTIME,0.01,0.00001,0.1
        !ARCLEN,ON
        NSUBST,1000,2000,10  

        !NLADAPTIVE,ALL,ADD,MESH,SHAPE,155
        !NLMESH,BDRA,50

        !CUTCONTROL,DSPLIMIT,10e7


        /solu
         
        nladaptive,nlad_e,add,energy,mean,10
        nladaptive,nlad_e,on,,,-2,,,11


        ALLSEL,ALL
        SOLVE   
        FINISH  

        /POST1  
        PLDISP,1

        NSEL,S,LOC,X,0
        set,LAST
        fsum
        *get,fsum,FSUM,0,ITEM,Fx
        force=fsum

        filename=strcat('res',chrval(fid))

        *if,i,eq,1,then
            *cfopen,%filename%,txt,,
        *else
            *cfopen,%filename%,txt,,APPEND
        *endif

        *vwrite,u,force
        (G16.8,G16.8)
        *cfclose
        tempname=strcat(chrval(fid),'-')
        tempname=strcat(tempname,chrval(i))
        filename=strcat('nodal_stress_x',tempname)
        *cfopen,%filename%,txt,,
        *do,xid,1,rows1
        *set,strx
        *GET,strx, node,xid,s,X
        *vwrite,strx
        (G16.8)
        *enddo
        *cfclose

        filename=strcat('nodal_stress_y',tempname)
        *cfopen,%filename%,txt,,
        *do,xid,1,rows1
        *set,stry
        *GET,stry, node,xid,s,Y
        *vwrite,stry
        (G16.8)
        *enddo
        *cfclose

        filename=strcat('nodal_stress_xy',tempname)
        *cfopen,%filename%,txt,,
        *do,xid,1,rows1
        *set,strxy
        *GET,strxy, node,xid,s,XY
        *vwrite,strxy
        (G16.8)
        *enddo
        *cfclose


        FINISH 
        *enddo
        !/CLEAR


        *enddo   !* end of outer loop

         

        Here is the "nodes1.dat":

         

        1,0,0,0
        2,1,0,0
        3,2,0,0
        4,3,0,0
        5,4,0,0
        6,5,0,0
        7,6,0,0
        8,7,0,0
        9,8,0,0
        10,9,0,0
        11,10,0,0
        12,11,0,0
        13,12,0,0
        14,13,0,0
        15,14,0,0
        16,15,0,0
        17,16,0,0
        18,17,0,0
        19,18,0,0
        20,19,0,0
        21,20,0,0
        22,21,0,0
        23,22,0,0
        24,23,0,0
        25,24,0,0
        26,25,0,0
        27,26,0,0
        28,27,0,0
        29,28,0,0
        30,29,0,0
        31,30,0,0
        32,31,0,0
        33,32,0,0
        34,33,0,0
        35,34,0,0
        36,35,0,0
        37,36,0,0
        38,37,0,0
        39,38,0,0
        40,39,0,0
        41,40,0,0
        42,41,0,0
        43,42,0,0
        44,43,0,0
        45,44,0,0
        46,45,0,0
        47,46,0,0
        48,47,0,0
        49,48,0,0
        50,49,0,0
        51,50,0,0
        52,0,1,0
        53,1,1,0
        54,2,1,0
        55,3,1,0
        56,4,1,0
        57,5,1,0
        58,6,1,0
        59,7,1,0
        60,8,1,0
        61,9,1,0
        62,10,1,0
        63,11,1,0
        64,12,1,0
        65,13,1,0
        66,14,1,0
        67,15,1,0
        68,16,1,0
        69,17,1,0
        70,18,1,0
        71,19,1,0
        72,20,1,0
        73,21,1,0
        74,22,1,0
        75,23,1,0
        76,24,1,0
        77,25,1,0
        78,26,1,0
        79,27,1,0
        80,28,1,0
        81,29,1,0
        82,30,1,0
        83,31,1,0
        84,32,1,0
        85,33,1,0
        86,34,1,0
        87,35,1,0
        88,36,1,0
        89,37,1,0
        90,38,1,0
        91,39,1,0
        92,40,1,0
        93,41,1,0
        94,42,1,0
        95,43,1,0
        96,44,1,0
        97,45,1,0
        98,46,1,0
        99,47,1,0
        100,48,1,0
        101,49,1,0
        102,50,1,0
        103,0,2,0
        104,1,2,0
        105,2,2,0
        106,3,2,0
        107,4,2,0
        108,5,2,0
        109,6,2,0
        110,7,2,0
        111,8,2,0
        112,9,2,0
        113,10,2,0
        114,11,2,0
        115,12,2,0
        116,13,2,0
        117,14,2,0
        118,15,2,0
        119,16,2,0
        120,17,2,0
        121,18,2,0
        122,19,2,0
        123,20,2,0
        124,21,2,0
        125,22,2,0
        126,23,2,0
        127,24,2,0
        128,25,2,0
        129,26,2,0
        130,27,2,0
        131,28,2,0
        132,29,2,0
        133,30,2,0
        134,31,2,0
        135,32,2,0
        136,33,2,0
        137,34,2,0
        138,35,2,0
        139,36,2,0
        140,37,2,0
        141,38,2,0
        142,39,2,0
        143,40,2,0
        144,41,2,0
        145,42,2,0
        146,43,2,0
        147,44,2,0
        148,45,2,0
        149,46,2,0
        150,47,2,0
        151,48,2,0
        152,49,2,0
        153,50,2,0
        154,0,3,0
        155,1,3,0
        156,2,3,0
        157,3,3,0
        158,4,3,0
        159,5,3,0
        160,6,3,0
        161,7,3,0
        162,8,3,0
        163,9,3,0
        164,10,3,0
        165,11,3,0
        166,12,3,0
        167,13,3,0
        168,14,3,0
        169,15,3,0
        170,16,3,0
        171,17,3,0
        172,18,3,0
        173,19,3,0
        174,20,3,0
        175,21,3,0
        176,22,3,0
        177,23,3,0
        178,24,3,0
        179,25,3,0
        180,26,3,0
        181,27,3,0
        182,28,3,0
        183,29,3,0
        184,30,3,0
        185,31,3,0
        186,32,3,0
        187,33,3,0
        188,34,3,0
        189,35,3,0
        190,36,3,0
        191,37,3,0
        192,38,3,0
        193,39,3,0
        194,40,3,0
        195,41,3,0
        196,42,3,0
        197,43,3,0
        198,44,3,0
        199,45,3,0
        200,46,3,0
        201,47,3,0
        202,48,3,0
        203,49,3,0
        204,50,3,0
        205,0,4,0
        206,1,4,0
        207,2,4,0
        208,3,4,0
        209,4,4,0
        210,5,4,0
        211,6,4,0
        212,7,4,0
        213,8,4,0
        214,9,4,0
        215,10,4,0
        216,11,4,0
        217,12,4,0
        218,13,4,0
        219,14,4,0
        220,15,4,0
        221,16,4,0
        222,17,4,0
        223,18,4,0
        224,19,4,0
        225,20,4,0
        226,21,4,0
        227,22,4,0
        228,23,4,0
        229,24,4,0
        230,25,4,0
        231,26,4,0
        232,27,4,0
        233,28,4,0
        234,29,4,0
        235,30,4,0
        236,31,4,0
        237,32,4,0
        238,33,4,0
        239,34,4,0
        240,35,4,0
        241,36,4,0
        242,37,4,0
        243,38,4,0
        244,39,4,0
        245,40,4,0
        246,41,4,0
        247,42,4,0
        248,43,4,0
        249,44,4,0
        250,45,4,0
        251,46,4,0
        252,47,4,0
        253,48,4,0
        254,49,4,0
        255,50,4,0
        256,0,5,0
        257,1,5,0
        258,2,5,0
        259,3,5,0
        260,4,5,0
        261,5,5,0
        262,6,5,0
        263,7,5,0
        264,8,5,0
        265,9,5,0
        266,10,5,0
        267,11,5,0
        268,12,5,0
        269,13,5,0
        270,14,5,0
        271,15,5,0
        272,16,5,0
        273,17,5,0
        274,18,5,0
        275,19,5,0
        276,20,5,0
        277,21,5,0
        278,22,5,0
        279,23,5,0
        280,24,5,0
        281,25,5,0
        282,26,5,0
        283,27,5,0
        284,28,5,0
        285,29,5,0
        286,30,5,0
        287,31,5,0
        288,32,5,0
        289,33,5,0
        290,34,5,0
        291,35,5,0
        292,36,5,0
        293,37,5,0
        294,38,5,0
        295,39,5,0
        296,40,5,0
        297,41,5,0
        298,42,5,0
        299,43,5,0
        300,44,5,0
        301,45,5,0
        302,46,5,0
        303,47,5,0
        304,48,5,0
        305,49,5,0
        306,50,5,0
        307,0,6,0
        308,1,6,0
        309,2,6,0
        310,3,6,0
        311,4,6,0
        312,5,6,0
        313,6,6,0
        314,7,6,0
        315,8,6,0
        316,9,6,0
        317,10,6,0
        318,11,6,0
        319,12,6,0
        320,13,6,0
        321,14,6,0
        322,15,6,0
        323,16,6,0
        324,17,6,0
        325,18,6,0
        326,19,6,0
        327,20,6,0
        328,21,6,0
        329,22,6,0
        330,23,6,0
        331,24,6,0
        332,25,6,0
        333,26,6,0
        334,27,6,0
        335,28,6,0
        336,29,6,0
        337,30,6,0
        338,31,6,0
        339,32,6,0
        340,33,6,0
        341,34,6,0
        342,35,6,0
        343,36,6,0
        344,37,6,0
        345,38,6,0
        346,39,6,0
        347,40,6,0
        348,41,6,0
        349,42,6,0
        350,43,6,0
        351,44,6,0
        352,45,6,0
        353,46,6,0
        354,47,6,0
        355,48,6,0
        356,49,6,0
        357,50,6,0
        358,0,7,0
        359,1,7,0
        360,2,7,0
        361,3,7,0
        362,4,7,0
        363,5,7,0
        364,6,7,0
        365,7,7,0
        366,8,7,0
        367,9,7,0
        368,10,7,0
        369,11,7,0
        370,12,7,0
        371,13,7,0
        372,14,7,0
        373,15,7,0
        374,16,7,0
        375,17,7,0
        376,18,7,0
        377,19,7,0
        378,20,7,0
        379,21,7,0
        380,22,7,0
        381,23,7,0
        382,24,7,0
        383,25,7,0
        384,26,7,0
        385,27,7,0
        386,28,7,0
        387,29,7,0
        388,30,7,0
        389,31,7,0
        390,32,7,0
        391,33,7,0
        392,34,7,0
        393,35,7,0
        394,36,7,0
        395,37,7,0
        396,38,7,0
        397,39,7,0
        398,40,7,0
        399,41,7,0
        400,42,7,0
        401,43,7,0
        402,44,7,0
        403,45,7,0
        404,46,7,0
        405,47,7,0
        406,48,7,0
        407,49,7,0
        408,50,7,0
        409,0,8,0
        410,1,8,0
        411,2,8,0
        412,3,8,0
        413,4,8,0
        414,5,8,0
        415,6,8,0
        416,7,8,0
        417,8,8,0
        418,9,8,0
        419,10,8,0
        420,11,8,0
        421,12,8,0
        422,13,8,0
        423,14,8,0
        424,15,8,0
        425,16,8,0
        426,17,8,0
        427,18,8,0
        428,19,8,0
        429,20,8,0
        430,21,8,0
        431,22,8,0
        432,23,8,0
        433,24,8,0
        434,25,8,0
        435,26,8,0
        436,27,8,0
        437,28,8,0
        438,29,8,0
        439,30,8,0
        440,31,8,0
        441,32,8,0
        442,33,8,0
        443,34,8,0
        444,35,8,0
        445,36,8,0
        446,37,8,0
        447,38,8,0
        448,39,8,0
        449,40,8,0
        450,41,8,0
        451,42,8,0
        452,43,8,0
        453,44,8,0
        454,45,8,0
        455,46,8,0
        456,47,8,0
        457,48,8,0
        458,49,8,0
        459,50,8,0
        460,0,9,0
        461,1,9,0
        462,2,9,0
        463,3,9,0
        464,4,9,0
        465,5,9,0
        466,6,9,0
        467,7,9,0
        468,8,9,0
        469,9,9,0
        470,10,9,0
        471,11,9,0
        472,12,9,0
        473,13,9,0
        474,14,9,0
        475,15,9,0
        476,16,9,0
        477,17,9,0
        478,18,9,0
        479,19,9,0
        480,20,9,0
        481,21,9,0
        482,22,9,0
        483,23,9,0
        484,24,9,0
        485,25,9,0
        486,26,9,0
        487,27,9,0
        488,28,9,0
        489,29,9,0
        490,30,9,0
        491,31,9,0
        492,32,9,0
        493,33,9,0
        494,34,9,0
        495,35,9,0
        496,36,9,0
        497,37,9,0
        498,38,9,0
        499,39,9,0
        500,40,9,0
        501,41,9,0
        502,42,9,0
        503,43,9,0
        504,44,9,0
        505,45,9,0
        506,46,9,0
        507,47,9,0
        508,48,9,0
        509,49,9,0
        510,50,9,0
        511,0,10,0
        512,1,10,0
        513,2,10,0
        514,3,10,0
        515,4,10,0
        516,5,10,0
        517,6,10,0
        518,7,10,0
        519,8,10,0
        520,9,10,0
        521,10,10,0
        522,11,10,0
        523,12,10,0
        524,13,10,0
        525,14,10,0
        526,15,10,0
        527,16,10,0
        528,17,10,0
        529,18,10,0
        530,19,10,0
        531,20,10,0
        532,21,10,0
        533,22,10,0
        534,23,10,0
        535,24,10,0
        536,25,10,0
        537,26,10,0
        538,27,10,0
        539,28,10,0
        540,29,10,0
        541,30,10,0
        542,31,10,0
        543,32,10,0
        544,33,10,0
        545,34,10,0
        546,35,10,0
        547,36,10,0
        548,37,10,0
        549,38,10,0
        550,39,10,0
        551,40,10,0
        552,41,10,0
        553,42,10,0
        554,43,10,0
        555,44,10,0
        556,45,10,0
        557,46,10,0
        558,47,10,0
        559,48,10,0
        560,49,10,0
        561,50,10,0
        562,0,11,0
        563,1,11,0
        564,2,11,0
        565,3,11,0
        566,4,11,0
        567,5,11,0
        568,6,11,0
        569,7,11,0
        570,8,11,0
        571,9,11,0
        572,10,11,0
        573,11,11,0
        574,12,11,0
        575,13,11,0
        576,14,11,0
        577,15,11,0
        578,16,11,0
        579,17,11,0
        580,18,11,0
        581,19,11,0
        582,20,11,0
        583,21,11,0
        584,22,11,0
        585,23,11,0
        586,24,11,0
        587,25,11,0
        588,26,11,0
        589,27,11,0
        590,28,11,0
        591,29,11,0
        592,30,11,0
        593,31,11,0
        594,32,11,0
        595,33,11,0
        596,34,11,0
        597,35,11,0
        598,36,11,0
        599,37,11,0
        600,38,11,0
        601,39,11,0
        602,40,11,0
        603,41,11,0
        604,42,11,0
        605,43,11,0
        606,44,11,0
        607,45,11,0
        608,46,11,0
        609,47,11,0
        610,48,11,0
        611,49,11,0
        612,50,11,0
        613,0,12,0
        614,1,12,0
        615,2,12,0
        616,3,12,0
        617,4,12,0
        618,5,12,0
        619,6,12,0
        620,7,12,0
        621,8,12,0
        622,9,12,0
        623,10,12,0
        624,11,12,0
        625,12,12,0
        626,13,12,0
        627,14,12,0
        628,15,12,0
        629,16,12,0
        630,17,12,0
        631,18,12,0
        632,19,12,0
        633,20,12,0
        634,21,12,0
        635,22,12,0
        636,23,12,0
        637,24,12,0
        638,25,12,0
        639,26,12,0
        640,27,12,0
        641,28,12,0
        642,29,12,0
        643,30,12,0
        644,31,12,0
        645,32,12,0
        646,33,12,0
        647,34,12,0
        648,35,12,0
        649,36,12,0
        650,37,12,0
        651,38,12,0
        652,39,12,0
        653,40,12,0
        654,41,12,0
        655,42,12,0
        656,43,12,0
        657,44,12,0
        658,45,12,0
        659,46,12,0
        660,47,12,0
        661,48,12,0
        662,49,12,0
        663,50,12,0
        664,0,13,0
        665,1,13,0
        666,2,13,0
        667,3,13,0
        668,4,13,0
        669,5,13,0
        670,6,13,0
        671,7,13,0
        672,8,13,0
        673,9,13,0
        674,10,13,0
        675,11,13,0
        676,12,13,0
        677,13,13,0
        678,14,13,0
        679,15,13,0
        680,16,13,0
        681,17,13,0
        682,18,13,0
        683,19,13,0
        684,20,13,0
        685,21,13,0
        686,22,13,0
        687,23,13,0
        688,24,13,0
        689,25,13,0
        690,26,13,0
        691,27,13,0
        692,28,13,0
        693,29,13,0
        694,30,13,0
        695,31,13,0
        696,32,13,0
        697,33,13,0
        698,34,13,0
        699,35,13,0
        700,36,13,0
        701,37,13,0
        702,38,13,0
        703,39,13,0
        704,40,13,0
        705,41,13,0
        706,42,13,0
        707,43,13,0
        708,44,13,0
        709,45,13,0
        710,46,13,0
        711,47,13,0
        712,48,13,0
        713,49,13,0
        714,50,13,0
        715,0,14,0
        716,1,14,0
        717,2,14,0
        718,3,14,0
        719,4,14,0
        720,5,14,0
        721,6,14,0
        722,7,14,0
        723,8,14,0
        724,9,14,0
        725,10,14,0
        726,11,14,0
        727,12,14,0
        728,13,14,0
        729,14,14,0
        730,15,14,0
        731,16,14,0
        732,17,14,0
        733,18,14,0
        734,19,14,0
        735,20,14,0
        736,21,14,0
        737,22,14,0
        738,23,14,0
        739,24,14,0
        740,25,14,0
        741,26,14,0
        742,27,14,0
        743,28,14,0
        744,29,14,0
        745,30,14,0
        746,31,14,0
        747,32,14,0
        748,33,14,0
        749,34,14,0
        750,35,14,0
        751,36,14,0
        752,37,14,0
        753,38,14,0
        754,39,14,0
        755,40,14,0
        756,41,14,0
        757,42,14,0
        758,43,14,0
        759,44,14,0
        760,45,14,0
        761,46,14,0
        762,47,14,0
        763,48,14,0
        764,49,14,0
        765,50,14,0
        766,0,15,0
        767,1,15,0
        768,2,15,0
        769,3,15,0
        770,4,15,0
        771,5,15,0
        772,6,15,0
        773,7,15,0
        774,8,15,0
        775,9,15,0
        776,10,15,0
        777,11,15,0
        778,12,15,0
        779,13,15,0
        780,14,15,0
        781,15,15,0
        782,16,15,0
        783,17,15,0
        784,18,15,0
        785,19,15,0
        786,20,15,0
        787,21,15,0
        788,22,15,0
        789,23,15,0
        790,24,15,0
        791,25,15,0
        792,26,15,0
        793,27,15,0
        794,28,15,0
        795,29,15,0
        796,30,15,0
        797,31,15,0
        798,32,15,0
        799,33,15,0
        800,34,15,0
        801,35,15,0
        802,36,15,0
        803,37,15,0
        804,38,15,0
        805,39,15,0
        806,40,15,0
        807,41,15,0
        808,42,15,0
        809,43,15,0
        810,44,15,0
        811,45,15,0
        812,46,15,0
        813,47,15,0
        814,48,15,0
        815,49,15,0
        816,50,15,0
        817,0,16,0
        818,1,16,0
        819,2,16,0
        820,3,16,0
        821,4,16,0
        822,5,16,0
        823,6,16,0
        824,7,16,0
        825,8,16,0
        826,9,16,0
        827,10,16,0
        828,11,16,0
        829,12,16,0
        830,13,16,0
        831,14,16,0
        832,15,16,0
        833,16,16,0
        834,17,16,0
        835,18,16,0
        836,19,16,0
        837,20,16,0
        838,21,16,0
        839,22,16,0
        840,23,16,0
        841,24,16,0
        842,25,16,0
        843,26,16,0
        844,27,16,0
        845,28,16,0
        846,29,16,0
        847,30,16,0
        848,31,16,0
        849,32,16,0
        850,33,16,0
        851,34,16,0
        852,35,16,0
        853,36,16,0
        854,37,16,0
        855,38,16,0
        856,39,16,0
        857,40,16,0
        858,41,16,0
        859,42,16,0
        860,43,16,0
        861,44,16,0
        862,45,16,0
        863,46,16,0
        864,47,16,0
        865,48,16,0
        866,49,16,0
        867,50,16,0
        868,0,17,0
        869,1,17,0
        870,2,17,0
        871,3,17,0
        872,4,17,0
        873,5,17,0
        874,6,17,0
        875,7,17,0
        876,8,17,0
        877,9,17,0
        878,10,17,0
        879,11,17,0
        880,12,17,0
        881,13,17,0
        882,14,17,0
        883,15,17,0
        884,16,17,0
        885,17,17,0
        886,18,17,0
        887,19,17,0
        888,20,17,0
        889,21,17,0
        890,22,17,0
        891,23,17,0
        892,24,17,0
        893,25,17,0
        894,26,17,0
        895,27,17,0
        896,28,17,0
        897,29,17,0
        898,30,17,0
        899,31,17,0
        900,32,17,0
        901,33,17,0
        902,34,17,0
        903,35,17,0
        904,36,17,0
        905,37,17,0
        906,38,17,0
        907,39,17,0
        908,40,17,0
        909,41,17,0
        910,42,17,0
        911,43,17,0
        912,44,17,0
        913,45,17,0
        914,46,17,0
        915,47,17,0
        916,48,17,0
        917,49,17,0
        918,50,17,0
        919,0,18,0
        920,1,18,0
        921,2,18,0
        922,3,18,0
        923,4,18,0
        924,5,18,0
        925,6,18,0
        926,7,18,0
        927,8,18,0
        928,9,18,0
        929,10,18,0
        930,11,18,0
        931,12,18,0
        932,13,18,0
        933,14,18,0
        934,15,18,0
        935,16,18,0
        936,17,18,0
        937,18,18,0
        938,19,18,0
        939,20,18,0
        940,21,18,0
        941,22,18,0
        942,23,18,0
        943,24,18,0
        944,25,18,0
        945,26,18,0
        946,27,18,0
        947,28,18,0
        948,29,18,0
        949,30,18,0
        950,31,18,0
        951,32,18,0
        952,33,18,0
        953,34,18,0
        954,35,18,0
        955,36,18,0
        956,37,18,0
        957,38,18,0
        958,39,18,0
        959,40,18,0
        960,41,18,0
        961,42,18,0
        962,43,18,0
        963,44,18,0
        964,45,18,0
        965,46,18,0
        966,47,18,0
        967,48,18,0
        968,49,18,0
        969,50,18,0
        970,0,19,0
        971,1,19,0
        972,2,19,0
        973,3,19,0
        974,4,19,0
        975,5,19,0
        976,6,19,0
        977,7,19,0
        978,8,19,0
        979,9,19,0
        980,10,19,0
        981,11,19,0
        982,12,19,0
        983,13,19,0
        984,14,19,0
        985,15,19,0
        986,16,19,0
        987,17,19,0
        988,18,19,0
        989,19,19,0
        990,20,19,0
        991,21,19,0
        992,22,19,0
        993,23,19,0
        994,24,19,0
        995,25,19,0
        996,26,19,0
        997,27,19,0
        998,28,19,0
        999,29,19,0
        1000,30,19,0
        1001,31,19,0
        1002,32,19,0
        1003,33,19,0
        1004,34,19,0
        1005,35,19,0
        1006,36,19,0
        1007,37,19,0
        1008,38,19,0
        1009,39,19,0
        1010,40,19,0
        1011,41,19,0
        1012,42,19,0
        1013,43,19,0
        1014,44,19,0
        1015,45,19,0
        1016,46,19,0
        1017,47,19,0
        1018,48,19,0
        1019,49,19,0
        1020,50,19,0
        1021,0,20,0
        1022,1,20,0
        1023,2,20,0
        1024,3,20,0
        1025,4,20,0
        1026,5,20,0
        1027,6,20,0
        1028,7,20,0
        1029,8,20,0
        1030,9,20,0
        1031,10,20,0
        1032,11,20,0
        1033,12,20,0
        1034,13,20,0
        1035,14,20,0
        1036,15,20,0
        1037,16,20,0
        1038,17,20,0
        1039,18,20,0
        1040,19,20,0
        1041,20,20,0
        1042,21,20,0
        1043,22,20,0
        1044,23,20,0
        1045,24,20,0
        1046,25,20,0
        1047,26,20,0
        1048,27,20,0
        1049,28,20,0
        1050,29,20,0
        1051,30,20,0
        1052,31,20,0
        1053,32,20,0
        1054,33,20,0
        1055,34,20,0
        1056,35,20,0
        1057,36,20,0
        1058,37,20,0
        1059,38,20,0
        1060,39,20,0
        1061,40,20,0
        1062,41,20,0
        1063,42,20,0
        1064,43,20,0
        1065,44,20,0
        1066,45,20,0
        1067,46,20,0
        1068,47,20,0
        1069,48,20,0
        1070,49,20,0
        1071,50,20,0
        1072,0,21,0
        1073,1,21,0
        1074,2,21,0
        1075,3,21,0
        1076,4,21,0
        1077,5,21,0
        1078,6,21,0
        1079,7,21,0
        1080,8,21,0
        1081,9,21,0
        1082,10,21,0
        1083,11,21,0
        1084,12,21,0
        1085,13,21,0
        1086,14,21,0
        1087,15,21,0
        1088,16,21,0
        1089,17,21,0
        1090,18,21,0
        1091,19,21,0
        1092,20,21,0
        1093,21,21,0
        1094,22,21,0
        1095,23,21,0
        1096,24,21,0
        1097,25,21,0
        1098,26,21,0
        1099,27,21,0
        1100,28,21,0
        1101,29,21,0
        1102,30,21,0
        1103,31,21,0
        1104,32,21,0
        1105,33,21,0
        1106,34,21,0
        1107,35,21,0
        1108,36,21,0
        1109,37,21,0
        1110,38,21,0
        1111,39,21,0
        1112,40,21,0
        1113,41,21,0
        1114,42,21,0
        1115,43,21,0
        1116,44,21,0
        1117,45,21,0
        1118,46,21,0
        1119,47,21,0
        1120,48,21,0
        1121,49,21,0
        1122,50,21,0
        1123,0,22,0
        1124,1,22,0
        1125,2,22,0
        1126,3,22,0
        1127,4,22,0
        1128,5,22,0
        1129,6,22,0
        1130,7,22,0
        1131,8,22,0
        1132,9,22,0
        1133,10,22,0
        1134,11,22,0
        1135,12,22,0
        1136,13,22,0
        1137,14,22,0
        1138,15,22,0
        1139,16,22,0
        1140,17,22,0
        1141,18,22,0
        1142,19,22,0
        1143,20,22,0
        1144,21,22,0
        1145,22,22,0
        1146,23,22,0
        1147,24,22,0
        1148,25,22,0
        1149,26,22,0
        1150,27,22,0
        1151,28,22,0
        1152,29,22,0
        1153,30,22,0
        1154,31,22,0
        1155,32,22,0
        1156,33,22,0
        1157,34,22,0
        1158,35,22,0
        1159,36,22,0
        1160,37,22,0
        1161,38,22,0
        1162,39,22,0
        1163,40,22,0
        1164,41,22,0
        1165,42,22,0
        1166,43,22,0
        1167,44,22,0
        1168,45,22,0
        1169,46,22,0
        1170,47,22,0
        1171,48,22,0
        1172,49,22,0
        1173,50,22,0
        1174,0,23,0
        1175,1,23,0
        1176,2,23,0
        1177,3,23,0
        1178,4,23,0
        1179,5,23,0
        1180,6,23,0
        1181,7,23,0
        1182,8,23,0
        1183,9,23,0
        1184,10,23,0
        1185,11,23,0
        1186,12,23,0
        1187,13,23,0
        1188,14,23,0
        1189,15,23,0
        1190,16,23,0
        1191,17,23,0
        1192,18,23,0
        1193,19,23,0
        1194,20,23,0
        1195,21,23,0
        1196,22,23,0
        1197,23,23,0
        1198,24,23,0
        1199,25,23,0
        1200,26,23,0
        1201,27,23,0
        1202,28,23,0
        1203,29,23,0
        1204,30,23,0
        1205,31,23,0
        1206,32,23,0
        1207,33,23,0
        1208,34,23,0
        1209,35,23,0
        1210,36,23,0
        1211,37,23,0
        1212,38,23,0
        1213,39,23,0
        1214,40,23,0
        1215,41,23,0
        1216,42,23,0
        1217,43,23,0
        1218,44,23,0
        1219,45,23,0
        1220,46,23,0
        1221,47,23,0
        1222,48,23,0
        1223,49,23,0
        1224,50,23,0
        1225,0,24,0
        1226,1,24,0
        1227,2,24,0
        1228,3,24,0
        1229,4,24,0
        1230,5,24,0
        1231,6,24,0
        1232,7,24,0
        1233,8,24,0
        1234,9,24,0
        1235,10,24,0
        1236,11,24,0
        1237,12,24,0
        1238,13,24,0
        1239,14,24,0
        1240,15,24,0
        1241,16,24,0
        1242,17,24,0
        1243,18,24,0
        1244,19,24,0
        1245,20,24,0
        1246,21,24,0
        1247,22,24,0
        1248,23,24,0
        1249,24,24,0
        1250,25,24,0
        1251,26,24,0
        1252,27,24,0
        1253,28,24,0
        1254,29,24,0
        1255,30,24,0
        1256,31,24,0
        1257,32,24,0
        1258,33,24,0
        1259,34,24,0
        1260,35,24,0
        1261,36,24,0
        1262,37,24,0
        1263,38,24,0
        1264,39,24,0
        1265,40,24,0
        1266,41,24,0
        1267,42,24,0
        1268,43,24,0
        1269,44,24,0
        1270,45,24,0
        1271,46,24,0
        1272,47,24,0
        1273,48,24,0
        1274,49,24,0
        1275,50,24,0
        1276,0,25,0
        1277,1,25,0
        1278,2,25,0
        1279,3,25,0
        1280,4,25,0
        1281,5,25,0
        1282,6,25,0
        1283,7,25,0
        1284,8,25,0
        1285,9,25,0
        1286,10,25,0
        1287,11,25,0
        1288,12,25,0
        1289,13,25,0
        1290,14,25,0
        1291,15,25,0
        1292,16,25,0
        1293,17,25,0
        1294,18,25,0
        1295,19,25,0
        1296,20,25,0
        1297,21,25,0
        1298,22,25,0
        1299,23,25,0
        1300,24,25,0
        1301,25,25,0
        1302,26,25,0
        1303,27,25,0
        1304,28,25,0
        1305,29,25,0
        1306,30,25,0
        1307,31,25,0
        1308,32,25,0
        1309,33,25,0
        1310,34,25,0
        1311,35,25,0
        1312,36,25,0
        1313,37,25,0
        1314,38,25,0
        1315,39,25,0
        1316,40,25,0
        1317,41,25,0
        1318,42,25,0
        1319,43,25,0
        1320,44,25,0
        1321,45,25,0
        1322,46,25,0
        1323,47,25,0
        1324,48,25,0
        1325,49,25,0
        1326,50,25,0
        1327,0,26,0
        1328,1,26,0
        1329,2,26,0
        1330,3,26,0
        1331,4,26,0
        1332,5,26,0
        1333,6,26,0
        1334,7,26,0
        1335,8,26,0
        1336,9,26,0
        1337,10,26,0
        1338,11,26,0
        1339,12,26,0
        1340,13,26,0
        1341,14,26,0
        1342,15,26,0
        1343,16,26,0
        1344,17,26,0
        1345,18,26,0
        1346,19,26,0
        1347,20,26,0
        1348,21,26,0
        1349,22,26,0
        1350,23,26,0
        1351,24,26,0
        1352,25,26,0
        1353,26,26,0
        1354,27,26,0
        1355,28,26,0
        1356,29,26,0
        1357,30,26,0
        1358,31,26,0
        1359,32,26,0
        1360,33,26,0
        1361,34,26,0
        1362,35,26,0
        1363,36,26,0
        1364,37,26,0
        1365,38,26,0
        1366,39,26,0
        1367,40,26,0
        1368,41,26,0
        1369,42,26,0
        1370,43,26,0
        1371,44,26,0
        1372,45,26,0
        1373,46,26,0
        1374,47,26,0
        1375,48,26,0
        1376,49,26,0
        1377,50,26,0
        1378,0,27,0
        1379,1,27,0
        1380,2,27,0
        1381,3,27,0
        1382,4,27,0
        1383,5,27,0
        1384,6,27,0
        1385,7,27,0
        1386,8,27,0
        1387,9,27,0
        1388,10,27,0
        1389,11,27,0
        1390,12,27,0
        1391,13,27,0
        1392,14,27,0
        1393,15,27,0
        1394,16,27,0
        1395,17,27,0
        1396,18,27,0
        1397,19,27,0
        1398,20,27,0
        1399,21,27,0
        1400,22,27,0
        1401,23,27,0
        1402,24,27,0
        1403,25,27,0
        1404,26,27,0
        1405,27,27,0
        1406,28,27,0
        1407,29,27,0
        1408,30,27,0
        1409,31,27,0
        1410,32,27,0
        1411,33,27,0
        1412,34,27,0
        1413,35,27,0
        1414,36,27,0
        1415,37,27,0
        1416,38,27,0
        1417,39,27,0
        1418,40,27,0
        1419,41,27,0
        1420,42,27,0
        1421,43,27,0
        1422,44,27,0
        1423,45,27,0
        1424,46,27,0
        1425,47,27,0
        1426,48,27,0
        1427,49,27,0
        1428,50,27,0
        1429,0,28,0
        1430,1,28,0
        1431,2,28,0
        1432,3,28,0
        1433,4,28,0
        1434,5,28,0
        1435,6,28,0
        1436,7,28,0
        1437,8,28,0
        1438,9,28,0
        1439,10,28,0
        1440,11,28,0
        1441,12,28,0
        1442,13,28,0
        1443,14,28,0
        1444,15,28,0
        1445,16,28,0
        1446,17,28,0
        1447,18,28,0
        1448,19,28,0
        1449,20,28,0
        1450,21,28,0
        1451,22,28,0
        1452,23,28,0
        1453,24,28,0
        1454,25,28,0
        1455,26,28,0
        1456,27,28,0
        1457,28,28,0
        1458,29,28,0
        1459,30,28,0
        1460,31,28,0
        1461,32,28,0
        1462,33,28,0
        1463,34,28,0
        1464,35,28,0
        1465,36,28,0
        1466,37,28,0
        1467,38,28,0
        1468,39,28,0
        1469,40,28,0
        1470,41,28,0
        1471,42,28,0
        1472,43,28,0
        1473,44,28,0
        1474,45,28,0
        1475,46,28,0
        1476,47,28,0
        1477,48,28,0
        1478,49,28,0
        1479,50,28,0
        1480,0,29,0
        1481,1,29,0
        1482,2,29,0
        1483,3,29,0
        1484,4,29,0
        1485,5,29,0
        1486,6,29,0
        1487,7,29,0
        1488,8,29,0
        1489,9,29,0
        1490,10,29,0
        1491,11,29,0
        1492,12,29,0
        1493,13,29,0
        1494,14,29,0
        1495,15,29,0
        1496,16,29,0
        1497,17,29,0
        1498,18,29,0
        1499,19,29,0
        1500,20,29,0
        1501,21,29,0
        1502,22,29,0
        1503,23,29,0
        1504,24,29,0
        1505,25,29,0
        1506,26,29,0
        1507,27,29,0
        1508,28,29,0
        1509,29,29,0
        1510,30,29,0
        1511,31,29,0
        1512,32,29,0
        1513,33,29,0
        1514,34,29,0
        1515,35,29,0
        1516,36,29,0
        1517,37,29,0
        1518,38,29,0
        1519,39,29,0
        1520,40,29,0
        1521,41,29,0
        1522,42,29,0
        1523,43,29,0
        1524,44,29,0
        1525,45,29,0
        1526,46,29,0
        1527,47,29,0
        1528,48,29,0
        1529,49,29,0
        1530,50,29,0
        1531,0,30,0
        1532,1,30,0
        1533,2,30,0
        1534,3,30,0
        1535,4,30,0
        1536,5,30,0
        1537,6,30,0
        1538,7,30,0
        1539,8,30,0
        1540,9,30,0
        1541,10,30,0
        1542,11,30,0
        1543,12,30,0
        1544,13,30,0
        1545,14,30,0
        1546,15,30,0
        1547,16,30,0
        1548,17,30,0
        1549,18,30,0
        1550,19,30,0
        1551,20,30,0
        1552,21,30,0
        1553,22,30,0
        1554,23,30,0
        1555,24,30,0
        1556,25,30,0
        1557,26,30,0
        1558,27,30,0
        1559,28,30,0
        1560,29,30,0
        1561,30,30,0
        1562,31,30,0
        1563,32,30,0
        1564,33,30,0
        1565,34,30,0
        1566,35,30,0
        1567,36,30,0
        1568,37,30,0
        1569,38,30,0
        1570,39,30,0
        1571,40,30,0
        1572,41,30,0
        1573,42,30,0
        1574,43,30,0
        1575,44,30,0
        1576,45,30,0
        1577,46,30,0
        1578,47,30,0
        1579,48,30,0
        1580,49,30,0
        1581,50,30,0
        1582,0,31,0
        1583,1,31,0
        1584,2,31,0
        1585,3,31,0
        1586,4,31,0
        1587,5,31,0
        1588,6,31,0
        1589,7,31,0
        1590,8,31,0
        1591,9,31,0
        1592,10,31,0
        1593,11,31,0
        1594,12,31,0
        1595,13,31,0
        1596,14,31,0
        1597,15,31,0
        1598,16,31,0
        1599,17,31,0
        1600,18,31,0
        1601,19,31,0
        1602,20,31,0
        1603,21,31,0
        1604,22,31,0
        1605,23,31,0
        1606,24,31,0
        1607,25,31,0
        1608,26,31,0
        1609,27,31,0
        1610,28,31,0
        1611,29,31,0
        1612,30,31,0
        1613,31,31,0
        1614,32,31,0
        1615,33,31,0
        1616,34,31,0
        1617,35,31,0
        1618,36,31,0
        1619,37,31,0
        1620,38,31,0
        1621,39,31,0
        1622,40,31,0
        1623,41,31,0
        1624,42,31,0
        1625,43,31,0
        1626,44,31,0
        1627,45,31,0
        1628,46,31,0
        1629,47,31,0
        1630,48,31,0
        1631,49,31,0
        1632,50,31,0
        1633,0,32,0
        1634,1,32,0
        1635,2,32,0
        1636,3,32,0
        1637,4,32,0
        1638,5,32,0
        1639,6,32,0
        1640,7,32,0
        1641,8,32,0
        1642,9,32,0
        1643,10,32,0
        1644,11,32,0
        1645,12,32,0
        1646,13,32,0
        1647,14,32,0
        1648,15,32,0
        1649,16,32,0
        1650,17,32,0
        1651,18,32,0
        1652,19,32,0
        1653,20,32,0
        1654,21,32,0
        1655,22,32,0
        1656,23,32,0
        1657,24,32,0
        1658,25,32,0
        1659,26,32,0
        1660,27,32,0
        1661,28,32,0
        1662,29,32,0
        1663,30,32,0
        1664,31,32,0
        1665,32,32,0
        1666,33,32,0
        1667,34,32,0
        1668,35,32,0
        1669,36,32,0
        1670,37,32,0
        1671,38,32,0
        1672,39,32,0
        1673,40,32,0
        1674,41,32,0
        1675,42,32,0
        1676,43,32,0
        1677,44,32,0
        1678,45,32,0
        1679,46,32,0
        1680,47,32,0
        1681,48,32,0
        1682,49,32,0
        1683,50,32,0
        1684,0,33,0
        1685,1,33,0
        1686,2,33,0
        1687,3,33,0
        1688,4,33,0
        1689,5,33,0
        1690,6,33,0
        1691,7,33,0
        1692,8,33,0
        1693,9,33,0
        1694,10,33,0
        1695,11,33,0
        1696,12,33,0
        1697,13,33,0
        1698,14,33,0
        1699,15,33,0
        1700,16,33,0
        1701,17,33,0
        1702,18,33,0
        1703,19,33,0
        1704,20,33,0
        1705,21,33,0
        1706,22,33,0
        1707,23,33,0
        1708,24,33,0
        1709,25,33,0
        1710,26,33,0
        1711,27,33,0
        1712,28,33,0
        1713,29,33,0
        1714,30,33,0
        1715,31,33,0
        1716,32,33,0
        1717,33,33,0
        1718,34,33,0
        1719,35,33,0
        1720,36,33,0
        1721,37,33,0
        1722,38,33,0
        1723,39,33,0
        1724,40,33,0
        1725,41,33,0
        1726,42,33,0
        1727,43,33,0
        1728,44,33,0
        1729,45,33,0
        1730,46,33,0
        1731,47,33,0
        1732,48,33,0
        1733,49,33,0
        1734,50,33,0
        1735,0,34,0
        1736,1,34,0
        1737,2,34,0
        1738,3,34,0
        1739,4,34,0
        1740,5,34,0
        1741,6,34,0
        1742,7,34,0
        1743,8,34,0
        1744,9,34,0
        1745,10,34,0
        1746,11,34,0
        1747,12,34,0
        1748,13,34,0
        1749,14,34,0
        1750,15,34,0
        1751,16,34,0
        1752,17,34,0
        1753,18,34,0
        1754,19,34,0
        1755,20,34,0
        1756,21,34,0
        1757,22,34,0
        1758,23,34,0
        1759,24,34,0
        1760,25,34,0
        1761,26,34,0
        1762,27,34,0
        1763,28,34,0
        1764,29,34,0
        1765,30,34,0
        1766,31,34,0
        1767,32,34,0
        1768,33,34,0
        1769,34,34,0
        1770,35,34,0
        1771,36,34,0
        1772,37,34,0
        1773,38,34,0
        1774,39,34,0
        1775,40,34,0
        1776,41,34,0
        1777,42,34,0
        1778,43,34,0
        1779,44,34,0
        1780,45,34,0
        1781,46,34,0
        1782,47,34,0
        1783,48,34,0
        1784,49,34,0
        1785,50,34,0
        1786,0,35,0
        1787,1,35,0
        1788,2,35,0
        1789,3,35,0
        1790,4,35,0
        1791,5,35,0
        1792,6,35,0
        1793,7,35,0
        1794,8,35,0
        1795,9,35,0
        1796,10,35,0
        1797,11,35,0
        1798,12,35,0
        1799,13,35,0
        1800,14,35,0
        1801,15,35,0
        1802,16,35,0
        1803,17,35,0
        1804,18,35,0
        1805,19,35,0
        1806,20,35,0
        1807,21,35,0
        1808,22,35,0
        1809,23,35,0
        1810,24,35,0
        1811,25,35,0
        1812,26,35,0
        1813,27,35,0
        1814,28,35,0
        1815,29,35,0
        1816,30,35,0
        1817,31,35,0
        1818,32,35,0
        1819,33,35,0
        1820,34,35,0
        1821,35,35,0
        1822,36,35,0
        1823,37,35,0
        1824,38,35,0
        1825,39,35,0
        1826,40,35,0
        1827,41,35,0
        1828,42,35,0
        1829,43,35,0
        1830,44,35,0
        1831,45,35,0
        1832,46,35,0
        1833,47,35,0
        1834,48,35,0
        1835,49,35,0
        1836,50,35,0
        1837,0,36,0
        1838,1,36,0
        1839,2,36,0
        1840,3,36,0
        1841,4,36,0
        1842,5,36,0
        1843,6,36,0
        1844,7,36,0
        1845,8,36,0
        1846,9,36,0
        1847,10,36,0
        1848,11,36,0
        1849,12,36,0
        1850,13,36,0
        1851,14,36,0
        1852,15,36,0
        1853,16,36,0
        1854,17,36,0
        1855,18,36,0
        1856,19,36,0
        1857,20,36,0
        1858,21,36,0
        1859,22,36,0
        1860,23,36,0
        1861,24,36,0
        1862,25,36,0
        1863,26,36,0
        1864,27,36,0
        1865,28,36,0
        1866,29,36,0
        1867,30,36,0
        1868,31,36,0
        1869,32,36,0
        1870,33,36,0
        1871,34,36,0
        1872,35,36,0
        1873,36,36,0
        1874,37,36,0
        1875,38,36,0
        1876,39,36,0
        1877,40,36,0
        1878,41,36,0
        1879,42,36,0
        1880,43,36,0
        1881,44,36,0
        1882,45,36,0
        1883,46,36,0
        1884,47,36,0
        1885,48,36,0
        1886,49,36,0
        1887,50,36,0
        1888,0,37,0
        1889,1,37,0
        1890,2,37,0
        1891,3,37,0
        1892,4,37,0
        1893,5,37,0
        1894,6,37,0
        1895,7,37,0
        1896,8,37,0
        1897,9,37,0
        1898,10,37,0
        1899,11,37,0
        1900,12,37,0
        1901,13,37,0
        1902,14,37,0
        1903,15,37,0
        1904,16,37,0
        1905,17,37,0
        1906,18,37,0
        1907,19,37,0
        1908,20,37,0
        1909,21,37,0
        1910,22,37,0
        1911,23,37,0
        1912,24,37,0
        1913,25,37,0
        1914,26,37,0
        1915,27,37,0
        1916,28,37,0
        1917,29,37,0
        1918,30,37,0
        1919,31,37,0
        1920,32,37,0
        1921,33,37,0
        1922,34,37,0
        1923,35,37,0
        1924,36,37,0
        1925,37,37,0
        1926,38,37,0
        1927,39,37,0
        1928,40,37,0
        1929,41,37,0
        1930,42,37,0
        1931,43,37,0
        1932,44,37,0
        1933,45,37,0
        1934,46,37,0
        1935,47,37,0
        1936,48,37,0
        1937,49,37,0
        1938,50,37,0
        1939,0,38,0
        1940,1,38,0
        1941,2,38,0
        1942,3,38,0
        1943,4,38,0
        1944,5,38,0
        1945,6,38,0
        1946,7,38,0
        1947,8,38,0
        1948,9,38,0
        1949,10,38,0
        1950,11,38,0
        1951,12,38,0
        1952,13,38,0
        1953,14,38,0
        1954,15,38,0
        1955,16,38,0
        1956,17,38,0
        1957,18,38,0
        1958,19,38,0
        1959,20,38,0
        1960,21,38,0
        1961,22,38,0
        1962,23,38,0
        1963,24,38,0
        1964,25,38,0
        1965,26,38,0
        1966,27,38,0
        1967,28,38,0
        1968,29,38,0
        1969,30,38,0
        1970,31,38,0
        1971,32,38,0
        1972,33,38,0
        1973,34,38,0
        1974,35,38,0
        1975,36,38,0
        1976,37,38,0
        1977,38,38,0
        1978,39,38,0
        1979,40,38,0
        1980,41,38,0
        1981,42,38,0
        1982,43,38,0
        1983,44,38,0
        1984,45,38,0
        1985,46,38,0
        1986,47,38,0
        1987,48,38,0
        1988,49,38,0
        1989,50,38,0
        1990,0,39,0
        1991,1,39,0
        1992,2,39,0
        1993,3,39,0
        1994,4,39,0
        1995,5,39,0
        1996,6,39,0
        1997,7,39,0
        1998,8,39,0
        1999,9,39,0
        2000,10,39,0
        2001,11,39,0
        2002,12,39,0
        2003,13,39,0
        2004,14,39,0
        2005,15,39,0
        2006,16,39,0
        2007,17,39,0
        2008,18,39,0
        2009,19,39,0
        2010,20,39,0
        2011,21,39,0
        2012,22,39,0
        2013,23,39,0
        2014,24,39,0
        2015,25,39,0
        2016,26,39,0
        2017,27,39,0
        2018,28,39,0
        2019,29,39,0
        2020,30,39,0
        2021,31,39,0
        2022,32,39,0
        2023,33,39,0
        2024,34,39,0
        2025,35,39,0
        2026,36,39,0
        2027,37,39,0
        2028,38,39,0
        2029,39,39,0
        2030,40,39,0
        2031,41,39,0
        2032,42,39,0
        2033,43,39,0
        2034,44,39,0
        2035,45,39,0
        2036,46,39,0
        2037,47,39,0
        2038,48,39,0
        2039,49,39,0
        2040,50,39,0
        2041,0,40,0
        2042,1,40,0
        2043,2,40,0
        2044,3,40,0
        2045,4,40,0
        2046,5,40,0
        2047,6,40,0
        2048,7,40,0
        2049,8,40,0
        2050,9,40,0
        2051,10,40,0
        2052,11,40,0
        2053,12,40,0
        2054,13,40,0
        2055,14,40,0
        2056,15,40,0
        2057,16,40,0
        2058,17,40,0
        2059,18,40,0
        2060,19,40,0
        2061,20,40,0
        2062,21,40,0
        2063,22,40,0
        2064,23,40,0
        2065,24,40,0
        2066,25,40,0
        2067,26,40,0
        2068,27,40,0
        2069,28,40,0
        2070,29,40,0
        2071,30,40,0
        2072,31,40,0
        2073,32,40,0
        2074,33,40,0
        2075,34,40,0
        2076,35,40,0
        2077,36,40,0
        2078,37,40,0
        2079,38,40,0
        2080,39,40,0
        2081,40,40,0
        2082,41,40,0
        2083,42,40,0
        2084,43,40,0
        2085,44,40,0
        2086,45,40,0
        2087,46,40,0
        2088,47,40,0
        2089,48,40,0
        2090,49,40,0
        2091,50,40,0
        2092,0,41,0
        2093,1,41,0
        2094,2,41,0
        2095,3,41,0
        2096,4,41,0
        2097,5,41,0
        2098,6,41,0
        2099,7,41,0
        2100,8,41,0
        2101,9,41,0
        2102,10,41,0
        2103,11,41,0
        2104,12,41,0
        2105,13,41,0
        2106,14,41,0
        2107,15,41,0
        2108,16,41,0
        2109,17,41,0
        2110,18,41,0
        2111,19,41,0
        2112,20,41,0
        2113,21,41,0
        2114,22,41,0
        2115,23,41,0
        2116,24,41,0
        2117,25,41,0
        2118,26,41,0
        2119,27,41,0
        2120,28,41,0
        2121,29,41,0
        2122,30,41,0
        2123,31,41,0
        2124,32,41,0
        2125,33,41,0
        2126,34,41,0
        2127,35,41,0
        2128,36,41,0
        2129,37,41,0
        2130,38,41,0
        2131,39,41,0
        2132,40,41,0
        2133,41,41,0
        2134,42,41,0
        2135,43,41,0
        2136,44,41,0
        2137,45,41,0
        2138,46,41,0
        2139,47,41,0
        2140,48,41,0
        2141,49,41,0
        2142,50,41,0
        2143,0,42,0
        2144,1,42,0
        2145,2,42,0
        2146,3,42,0
        2147,4,42,0
        2148,5,42,0
        2149,6,42,0
        2150,7,42,0
        2151,8,42,0
        2152,9,42,0
        2153,10,42,0
        2154,11,42,0
        2155,12,42,0
        2156,13,42,0
        2157,14,42,0
        2158,15,42,0
        2159,16,42,0
        2160,17,42,0
        2161,18,42,0
        2162,19,42,0
        2163,20,42,0
        2164,21,42,0
        2165,22,42,0
        2166,23,42,0
        2167,24,42,0
        2168,25,42,0
        2169,26,42,0
        2170,27,42,0
        2171,28,42,0
        2172,29,42,0
        2173,30,42,0
        2174,31,42,0
        2175,32,42,0
        2176,33,42,0
        2177,34,42,0
        2178,35,42,0
        2179,36,42,0
        2180,37,42,0
        2181,38,42,0
        2182,39,42,0
        2183,40,42,0
        2184,41,42,0
        2185,42,42,0
        2186,43,42,0
        2187,44,42,0
        2188,45,42,0
        2189,46,42,0
        2190,47,42,0
        2191,48,42,0
        2192,49,42,0
        2193,50,42,0
        2194,0,43,0
        2195,1,43,0
        2196,2,43,0
        2197,3,43,0
        2198,4,43,0
        2199,5,43,0
        2200,6,43,0
        2201,7,43,0
        2202,8,43,0
        2203,9,43,0
        2204,10,43,0
        2205,11,43,0
        2206,12,43,0
        2207,13,43,0
        2208,14,43,0
        2209,15,43,0
        2210,16,43,0
        2211,17,43,0
        2212,18,43,0
        2213,19,43,0
        2214,20,43,0
        2215,21,43,0
        2216,22,43,0
        2217,23,43,0
        2218,24,43,0
        2219,25,43,0
        2220,26,43,0
        2221,27,43,0
        2222,28,43,0
        2223,29,43,0
        2224,30,43,0
        2225,31,43,0
        2226,32,43,0
        2227,33,43,0
        2228,34,43,0
        2229,35,43,0
        2230,36,43,0
        2231,37,43,0
        2232,38,43,0
        2233,39,43,0
        2234,40,43,0
        2235,41,43,0
        2236,42,43,0
        2237,43,43,0
        2238,44,43,0
        2239,45,43,0
        2240,46,43,0
        2241,47,43,0
        2242,48,43,0
        2243,49,43,0
        2244,50,43,0
        2245,0,44,0
        2246,1,44,0
        2247,2,44,0
        2248,3,44,0
        2249,4,44,0
        2250,5,44,0
        2251,6,44,0
        2252,7,44,0
        2253,8,44,0
        2254,9,44,0
        2255,10,44,0
        2256,11,44,0
        2257,12,44,0
        2258,13,44,0
        2259,14,44,0
        2260,15,44,0
        2261,16,44,0
        2262,17,44,0
        2263,18,44,0
        2264,19,44,0
        2265,20,44,0
        2266,21,44,0
        2267,22,44,0
        2268,23,44,0
        2269,24,44,0
        2270,25,44,0
        2271,26,44,0
        2272,27,44,0
        2273,28,44,0
        2274,29,44,0
        2275,30,44,0
        2276,31,44,0
        2277,32,44,0
        2278,33,44,0
        2279,34,44,0
        2280,35,44,0
        2281,36,44,0
        2282,37,44,0
        2283,38,44,0
        2284,39,44,0
        2285,40,44,0
        2286,41,44,0
        2287,42,44,0
        2288,43,44,0
        2289,44,44,0
        2290,45,44,0
        2291,46,44,0
        2292,47,44,0
        2293,48,44,0
        2294,49,44,0
        2295,50,44,0
        2296,0,45,0
        2297,1,45,0
        2298,2,45,0
        2299,3,45,0
        2300,4,45,0
        2301,5,45,0
        2302,6,45,0
        2303,7,45,0
        2304,8,45,0
        2305,9,45,0
        2306,10,45,0
        2307,11,45,0
        2308,12,45,0
        2309,13,45,0
        2310,14,45,0
        2311,15,45,0
        2312,16,45,0
        2313,17,45,0
        2314,18,45,0
        2315,19,45,0
        2316,20,45,0
        2317,21,45,0
        2318,22,45,0
        2319,23,45,0
        2320,24,45,0
        2321,25,45,0
        2322,26,45,0
        2323,27,45,0
        2324,28,45,0
        2325,29,45,0
        2326,30,45,0
        2327,31,45,0
        2328,32,45,0
        2329,33,45,0
        2330,34,45,0
        2331,35,45,0
        2332,36,45,0
        2333,37,45,0
        2334,38,45,0
        2335,39,45,0
        2336,40,45,0
        2337,41,45,0
        2338,42,45,0
        2339,43,45,0
        2340,44,45,0
        2341,45,45,0
        2342,46,45,0
        2343,47,45,0
        2344,48,45,0
        2345,49,45,0
        2346,50,45,0
        2347,0,46,0
        2348,1,46,0
        2349,2,46,0
        2350,3,46,0
        2351,4,46,0
        2352,5,46,0
        2353,6,46,0
        2354,7,46,0
        2355,8,46,0
        2356,9,46,0
        2357,10,46,0
        2358,11,46,0
        2359,12,46,0
        2360,13,46,0
        2361,14,46,0
        2362,15,46,0
        2363,16,46,0
        2364,17,46,0
        2365,18,46,0
        2366,19,46,0
        2367,20,46,0
        2368,21,46,0
        2369,22,46,0
        2370,23,46,0
        2371,24,46,0
        2372,25,46,0
        2373,26,46,0
        2374,27,46,0
        2375,28,46,0
        2376,29,46,0
        2377,30,46,0
        2378,31,46,0
        2379,32,46,0
        2380,33,46,0
        2381,34,46,0
        2382,35,46,0
        2383,36,46,0
        2384,37,46,0
        2385,38,46,0
        2386,39,46,0
        2387,40,46,0
        2388,41,46,0
        2389,42,46,0
        2390,43,46,0
        2391,44,46,0
        2392,45,46,0
        2393,46,46,0
        2394,47,46,0
        2395,48,46,0
        2396,49,46,0
        2397,50,46,0
        2398,0,47,0
        2399,1,47,0
        2400,2,47,0
        2401,3,47,0
        2402,4,47,0
        2403,5,47,0
        2404,6,47,0
        2405,7,47,0
        2406,8,47,0
        2407,9,47,0
        2408,10,47,0
        2409,11,47,0
        2410,12,47,0
        2411,13,47,0
        2412,14,47,0
        2413,15,47,0
        2414,16,47,0
        2415,17,47,0
        2416,18,47,0
        2417,19,47,0
        2418,20,47,0
        2419,21,47,0
        2420,22,47,0
        2421,23,47,0
        2422,24,47,0
        2423,25,47,0
        2424,26,47,0
        2425,27,47,0
        2426,28,47,0
        2427,29,47,0
        2428,30,47,0
        2429,31,47,0
        2430,32,47,0
        2431,33,47,0
        2432,34,47,0
        2433,35,47,0
        2434,36,47,0
        2435,37,47,0
        2436,38,47,0
        2437,39,47,0
        2438,40,47,0
        2439,41,47,0
        2440,42,47,0
        2441,43,47,0
        2442,44,47,0
        2443,45,47,0
        2444,46,47,0
        2445,47,47,0
        2446,48,47,0
        2447,49,47,0
        2448,50,47,0
        2449,0,48,0
        2450,1,48,0
        2451,2,48,0
        2452,3,48,0
        2453,4,48,0
        2454,5,48,0
        2455,6,48,0
        2456,7,48,0
        2457,8,48,0
        2458,9,48,0
        2459,10,48,0
        2460,11,48,0
        2461,12,48,0
        2462,13,48,0
        2463,14,48,0
        2464,15,48,0
        2465,16,48,0
        2466,17,48,0
        2467,18,48,0
        2468,19,48,0
        2469,20,48,0
        2470,21,48,0
        2471,22,48,0
        2472,23,48,0
        2473,24,48,0
        2474,25,48,0
        2475,26,48,0
        2476,27,48,0
        2477,28,48,0
        2478,29,48,0
        2479,30,48,0
        2480,31,48,0
        2481,32,48,0
        2482,33,48,0
        2483,34,48,0
        2484,35,48,0
        2485,36,48,0
        2486,37,48,0
        2487,38,48,0
        2488,39,48,0
        2489,40,48,0
        2490,41,48,0
        2491,42,48,0
        2492,43,48,0
        2493,44,48,0
        2494,45,48,0
        2495,46,48,0
        2496,47,48,0
        2497,48,48,0
        2498,49,48,0
        2499,50,48,0
        2500,0,49,0
        2501,1,49,0
        2502,2,49,0
        2503,3,49,0
        2504,4,49,0
        2505,5,49,0
        2506,6,49,0
        2507,7,49,0
        2508,8,49,0
        2509,9,49,0
        2510,10,49,0
        2511,11,49,0
        2512,12,49,0
        2513,13,49,0
        2514,14,49,0
        2515,15,49,0
        2516,16,49,0
        2517,17,49,0
        2518,18,49,0
        2519,19,49,0
        2520,20,49,0
        2521,21,49,0
        2522,22,49,0
        2523,23,49,0
        2524,24,49,0
        2525,25,49,0
        2526,26,49,0
        2527,27,49,0
        2528,28,49,0
        2529,29,49,0
        2530,30,49,0
        2531,31,49,0
        2532,32,49,0
        2533,33,49,0
        2534,34,49,0
        2535,35,49,0
        2536,36,49,0
        2537,37,49,0
        2538,38,49,0
        2539,39,49,0
        2540,40,49,0
        2541,41,49,0
        2542,42,49,0
        2543,43,49,0
        2544,44,49,0
        2545,45,49,0
        2546,46,49,0
        2547,47,49,0
        2548,48,49,0
        2549,49,49,0
        2550,50,49,0
        2551,0,50,0
        2552,1,50,0
        2553,2,50,0
        2554,3,50,0
        2555,4,50,0
        2556,5,50,0
        2557,6,50,0
        2558,7,50,0
        2559,8,50,0
        2560,9,50,0
        2561,10,50,0
        2562,11,50,0
        2563,12,50,0
        2564,13,50,0
        2565,14,50,0
        2566,15,50,0
        2567,16,50,0
        2568,17,50,0
        2569,18,50,0
        2570,19,50,0
        2571,20,50,0
        2572,21,50,0
        2573,22,50,0
        2574,23,50,0
        2575,24,50,0
        2576,25,50,0
        2577,26,50,0
        2578,27,50,0
        2579,28,50,0
        2580,29,50,0
        2581,30,50,0
        2582,31,50,0
        2583,32,50,0
        2584,33,50,0
        2585,34,50,0
        2586,35,50,0
        2587,36,50,0
        2588,37,50,0
        2589,38,50,0
        2590,39,50,0
        2591,40,50,0
        2592,41,50,0
        2593,42,50,0
        2594,43,50,0
        2595,44,50,0
        2596,45,50,0
        2597,46,50,0
        2598,47,50,0
        2599,48,50,0
        2600,49,50,0
        2601,50,50,0

         

         

        Here is the "elements1.dat":

        1,2,53,52,1
        52,53,104,103,1
        103,104,155,154,1
        115,116,167,166,1
        116,117,168,167,1
        117,118,169,168,1
        118,119,170,169,1
        119,120,171,170,1
        166,167,218,217,1
        167,168,219,218,1
        168,169,220,219,1
        169,170,221,220,1
        194,195,246,245,1
        195,196,247,246,1
        196,197,248,247,1
        245,246,297,296,1
        246,247,298,297,1
        247,248,299,298,1
        248,249,300,299,1
        249,250,301,300,1
        296,297,348,347,1
        297,298,349,348,1
        344,345,396,395,1
        345,346,397,396,1
        346,347,398,397,1
        347,348,399,398,1
        693,694,745,744,1
        694,695,746,745,1
        695,696,747,746,1
        696,697,748,747,1
        697,698,749,748,1
        744,745,796,795,1
        745,746,797,796,1
        746,747,798,797,1
        772,773,824,823,1
        773,774,825,824,1
        823,824,875,874,1
        824,825,876,875,1
        873,874,925,924,1
        874,875,926,925,1
        875,876,927,926,1
        884,885,936,935,1
        924,925,976,975,1
        935,936,987,986,1
        998,999,1050,1049,1
        1021,1022,1073,1072,1
        1031,1032,1083,1082,1
        1072,1073,1124,1123,1
        1082,1083,1134,1133,1
        1095,1096,1147,1146,1
        1133,1134,1185,1184,1
        1184,1185,1236,1235,1
        1235,1236,1287,1286,1
        1236,1237,1288,1287,1
        1288,1289,1340,1339,1
        1329,1330,1381,1380,1
        1339,1340,1391,1390,1
        1346,1347,1398,1397,1
        1347,1348,1399,1398,1
        1368,1369,1420,1419,1
        1397,1398,1449,1448,1
        1402,1403,1454,1453,1
        1448,1449,1500,1499,1
        1481,1482,1533,1532,1
        1511,1512,1563,1562,1
        1512,1513,1564,1563,1
        1531,1532,1583,1582,1
        1532,1533,1584,1583,1
        1562,1563,1614,1613,1
        1582,1583,1634,1633,1
        1583,1584,1635,1634,1
        1633,1634,1685,1684,1
        1634,1635,1686,1685,1
        1737,1738,1789,1788,1
        1738,1739,1790,1789,1
        1739,1740,1791,1790,1
        1740,1741,1792,1791,1
        1741,1742,1793,1792,1
        1818,1819,1870,1869,1
        1895,1896,1947,1946,1
        1928,1929,1980,1979,1
        1929,1930,1981,1980,1
        1946,1947,1998,1997,1
        1982,1983,2034,2033,1
        1983,1984,2035,2034,1
        1996,1997,2048,2047,1
        1997,1998,2049,2048,1
        2024,2025,2076,2075,1
        2033,2034,2085,2084,1
        2034,2035,2086,2085,1
        2075,2076,2127,2126,1
        2182,2183,2234,2233,1
        2197,2198,2249,2248,1
        2198,2199,2250,2249,1
        2232,2233,2284,2283,1
        2233,2234,2285,2284,1
        2366,2367,2418,2417,1
        2367,2368,2419,2418,1
        2496,2497,2548,2547,1
        2497,2498,2549,2548,1
        2498,2499,2550,2549,1
        2547,2548,2599,2598,1
        2548,2549,2600,2599,1
        2549,2550,2601,2600,1
        2,3,54,53,0
        3,4,55,54,0
        4,5,56,55,0
        5,6,57,56,0
        6,7,58,57,0
        7,8,59,58,0
        8,9,60,59,0
        9,10,61,60,0
        10,11,62,61,0
        11,12,63,62,0
        12,13,64,63,0
        13,14,65,64,0
        14,15,66,65,0
        15,16,67,66,0
        16,17,68,67,0
        17,18,69,68,0
        18,19,70,69,0
        19,20,71,70,0
        20,21,72,71,0
        21,22,73,72,0
        22,23,74,73,0
        23,24,75,74,0
        24,25,76,75,0
        25,26,77,76,0
        26,27,78,77,0
        27,28,79,78,0
        28,29,80,79,0
        29,30,81,80,0
        30,31,82,81,0
        31,32,83,82,0
        32,33,84,83,0
        33,34,85,84,0
        34,35,86,85,0
        35,36,87,86,0
        36,37,88,87,0
        37,38,89,88,0
        38,39,90,89,0
        39,40,91,90,0
        40,41,92,91,0
        41,42,93,92,0
        42,43,94,93,0
        43,44,95,94,0
        44,45,96,95,0
        45,46,97,96,0
        46,47,98,97,0
        47,48,99,98,0
        48,49,100,99,0
        49,50,101,100,0
        50,51,102,101,0
        53,54,105,104,0
        54,55,106,105,0
        55,56,107,106,0
        56,57,108,107,0
        57,58,109,108,0
        58,59,110,109,0
        59,60,111,110,0
        60,61,112,111,0
        61,62,113,112,0
        62,63,114,113,0
        63,64,115,114,0
        64,65,116,115,0
        65,66,117,116,0
        66,67,118,117,0
        67,68,119,118,0
        68,69,120,119,0
        69,70,121,120,0
        70,71,122,121,0
        71,72,123,122,0
        72,73,124,123,0
        73,74,125,124,0
        74,75,126,125,0
        75,76,127,126,0
        76,77,128,127,0
        77,78,129,128,0
        78,79,130,129,0
        79,80,131,130,0
        80,81,132,131,0
        81,82,133,132,0
        82,83,134,133,0
        83,84,135,134,0
        84,85,136,135,0
        85,86,137,136,0
        86,87,138,137,0
        87,88,139,138,0
        88,89,140,139,0
        89,90,141,140,0
        90,91,142,141,0
        91,92,143,142,0
        92,93,144,143,0
        93,94,145,144,0
        94,95,146,145,0
        95,96,147,146,0
        96,97,148,147,0
        97,98,149,148,0
        98,99,150,149,0
        99,100,151,150,0
        100,101,152,151,0
        101,102,153,152,0
        104,105,156,155,0
        105,106,157,156,0
        106,107,158,157,0
        107,108,159,158,0
        108,109,160,159,0
        109,110,161,160,0
        110,111,162,161,0
        111,112,163,162,0
        112,113,164,163,0
        113,114,165,164,0
        114,115,166,165,0
        120,121,172,171,0
        121,122,173,172,0
        122,123,174,173,0
        123,124,175,174,0
        124,125,176,175,0
        125,126,177,176,0
        126,127,178,177,0
        127,128,179,178,0
        128,129,180,179,0
        129,130,181,180,0
        130,131,182,181,0
        131,132,183,182,0
        132,133,184,183,0
        133,134,185,184,0
        134,135,186,185,0
        135,136,187,186,0
        136,137,188,187,0
        137,138,189,188,0
        138,139,190,189,0
        139,140,191,190,0
        140,141,192,191,0
        141,142,193,192,0
        142,143,194,193,0
        143,144,195,194,0
        144,145,196,195,0
        145,146,197,196,0
        146,147,198,197,0
        147,148,199,198,0
        148,149,200,199,0
        149,150,201,200,0
        150,151,202,201,0
        151,152,203,202,0
        152,153,204,203,0
        154,155,206,205,0
        155,156,207,206,0
        156,157,208,207,0
        157,158,209,208,0
        158,159,210,209,0
        159,160,211,210,0
        160,161,212,211,0
        161,162,213,212,0
        162,163,214,213,0
        163,164,215,214,0
        164,165,216,215,0
        165,166,217,216,0
        170,171,222,221,0
        171,172,223,222,0
        172,173,224,223,0
        173,174,225,224,0
        174,175,226,225,0
        175,176,227,226,0
        176,177,228,227,0
        177,178,229,228,0
        178,179,230,229,0
        179,180,231,230,0
        180,181,232,231,0
        181,182,233,232,0
        182,183,234,233,0
        183,184,235,234,0
        184,185,236,235,0
        185,186,237,236,0
        186,187,238,237,0
        187,188,239,238,0
        188,189,240,239,0
        189,190,241,240,0
        190,191,242,241,0
        191,192,243,242,0
        192,193,244,243,0
        193,194,245,244,0
        197,198,249,248,0
        198,199,250,249,0
        199,200,251,250,0
        200,201,252,251,0
        201,202,253,252,0
        202,203,254,253,0
        203,204,255,254,0
        205,206,257,256,0
        206,207,258,257,0
        207,208,259,258,0
        208,209,260,259,0
        209,210,261,260,0
        210,211,262,261,0
        211,212,263,262,0
        212,213,264,263,0
        213,214,265,264,0
        214,215,266,265,0
        215,216,267,266,0
        216,217,268,267,0
        217,218,269,268,0
        218,219,270,269,0
        219,220,271,270,0
        220,221,272,271,0
        221,222,273,272,0
        222,223,274,273,0
        223,224,275,274,0
        224,225,276,275,0
        225,226,277,276,0
        226,227,278,277,0
        227,228,279,278,0
        228,229,280,279,0
        229,230,281,280,0
        230,231,282,281,0
        231,232,283,282,0
        232,233,284,283,0
        233,234,285,284,0
        234,235,286,285,0
        235,236,287,286,0
        236,237,288,287,0
        237,238,289,288,0
        238,239,290,289,0
        239,240,291,290,0
        240,241,292,291,0
        241,242,293,292,0
        242,243,294,293,0
        243,244,295,294,0
        244,245,296,295,0
        250,251,302,301,0
        251,252,303,302,0
        252,253,304,303,0
        253,254,305,304,0
        254,255,306,305,0
        256,257,308,307,0
        257,258,309,308,0
        258,259,310,309,0
        259,260,311,310,0
        260,261,312,311,0
        261,262,313,312,0
        262,263,314,313,0
        263,264,315,314,0
        264,265,316,315,0
        265,266,317,316,0
        266,267,318,317,0
        267,268,319,318,0
        268,269,320,319,0
        269,270,321,320,0
        270,271,322,321,0
        271,272,323,322,0
        272,273,324,323,0
        273,274,325,324,0
        274,275,326,325,0
        275,276,327,326,0
        276,277,328,327,0
        277,278,329,328,0
        278,279,330,329,0
        279,280,331,330,0
        280,281,332,331,0
        281,282,333,332,0
        282,283,334,333,0
        283,284,335,334,0
        284,285,336,335,0
        285,286,337,336,0
        286,287,338,337,0
        287,288,339,338,0
        288,289,340,339,0
        289,290,341,340,0
        290,291,342,341,0
        291,292,343,342,0
        292,293,344,343,0
        293,294,345,344,0
        294,295,346,345,0
        295,296,347,346,0
        298,299,350,349,0
        299,300,351,350,0
        300,301,352,351,0
        301,302,353,352,0
        302,303,354,353,0
        303,304,355,354,0
        304,305,356,355,0
        305,306,357,356,0
        307,308,359,358,0
        308,309,360,359,0
        309,310,361,360,0
        310,311,362,361,0
        311,312,363,362,0
        312,313,364,363,0
        313,314,365,364,0
        314,315,366,365,0
        315,316,367,366,0
        316,317,368,367,0
        317,318,369,368,0
        318,319,370,369,0
        319,320,371,370,0
        320,321,372,371,0
        321,322,373,372,0
        322,323,374,373,0
        323,324,375,374,0
        324,325,376,375,0
        325,326,377,376,0
        326,327,378,377,0
        327,328,379,378,0
        328,329,380,379,0
        329,330,381,380,0
        330,331,382,381,0
        331,332,383,382,0
        332,333,384,383,0
        333,334,385,384,0
        334,335,386,385,0
        335,336,387,386,0
        336,337,388,387,0
        337,338,389,388,0
        338,339,390,389,0
        339,340,391,390,0
        340,341,392,391,0
        341,342,393,392,0
        342,343,394,393,0
        343,344,395,394,0
        348,349,400,399,0
        349,350,401,400,0
        350,351,402,401,0
        351,352,403,402,0
        352,353,404,403,0
        353,354,405,404,0
        354,355,406,405,0
        355,356,407,406,0
        356,357,408,407,0
        358,359,410,409,0
        359,360,411,410,0
        360,361,412,411,0
        361,362,413,412,0
        362,363,414,413,0
        363,364,415,414,0
        364,365,416,415,0
        365,366,417,416,0
        366,367,418,417,0
        367,368,419,418,0
        368,369,420,419,0
        369,370,421,420,0
        370,371,422,421,0
        371,372,423,422,0
        372,373,424,423,0
        373,374,425,424,0
        374,375,426,425,0
        375,376,427,426,0
        376,377,428,427,0
        377,378,429,428,0
        378,379,430,429,0
        379,380,431,430,0
        380,381,432,431,0
        381,382,433,432,0
        382,383,434,433,0
        383,384,435,434,0
        384,385,436,435,0
        385,386,437,436,0
        386,387,438,437,0
        387,388,439,438,0
        388,389,440,439,0
        389,390,441,440,0
        390,391,442,441,0
        391,392,443,442,0
        392,393,444,443,0
        393,394,445,444,0
        394,395,446,445,0
        395,396,447,446,0
        396,397,448,447,0
        397,398,449,448,0
        398,399,450,449,0
        399,400,451,450,0
        400,401,452,451,0
        401,402,453,452,0
        402,403,454,453,0
        403,404,455,454,0
        404,405,456,455,0
        405,406,457,456,0
        406,407,458,457,0
        407,408,459,458,0
        409,410,461,460,0
        410,411,462,461,0
        411,412,463,462,0
        412,413,464,463,0
        413,414,465,464,0
        414,415,466,465,0
        415,416,467,466,0
        416,417,468,467,0
        417,418,469,468,0
        418,419,470,469,0
        419,420,471,470,0
        420,421,472,471,0
        421,422,473,472,0
        422,423,474,473,0
        423,424,475,474,0
        424,425,476,475,0
        425,426,477,476,0
        426,427,478,477,0
        427,428,479,478,0
        428,429,480,479,0
        429,430,481,480,0
        430,431,482,481,0
        431,432,483,482,0
        432,433,484,483,0
        433,434,485,484,0
        434,435,486,485,0
        435,436,487,486,0
        436,437,488,487,0
        437,438,489,488,0
        438,439,490,489,0
        439,440,491,490,0
        440,441,492,491,0
        441,442,493,492,0
        442,443,494,493,0
        443,444,495,494,0
        444,445,496,495,0
        445,446,497,496,0
        446,447,498,497,0
        447,448,499,498,0
        448,449,500,499,0
        449,450,501,500,0
        450,451,502,501,0
        451,452,503,502,0
        452,453,504,503,0
        453,454,505,504,0
        454,455,506,505,0
        455,456,507,506,0
        456,457,508,507,0
        457,458,509,508,0
        458,459,510,509,0
        460,461,512,511,0
        461,462,513,512,0
        462,463,514,513,0
        463,464,515,514,0
        464,465,516,515,0
        465,466,517,516,0
        466,467,518,517,0
        467,468,519,518,0
        468,469,520,519,0
        469,470,521,520,0
        470,471,522,521,0
        471,472,523,522,0
        472,473,524,523,0
        473,474,525,524,0
        474,475,526,525,0
        475,476,527,526,0
        476,477,528,527,0
        477,478,529,528,0
        478,479,530,529,0
        479,480,531,530,0
        480,481,532,531,0
        481,482,533,532,0
        482,483,534,533,0
        483,484,535,534,0
        484,485,536,535,0
        485,486,537,536,0
        486,487,538,537,0
        487,488,539,538,0
        488,489,540,539,0
        489,490,541,540,0
        490,491,542,541,0
        491,492,543,542,0
        492,493,544,543,0
        493,494,545,544,0
        494,495,546,545,0
        495,496,547,546,0
        496,497,548,547,0
        497,498,549,548,0
        498,499,550,549,0
        499,500,551,550,0
        500,501,552,551,0
        501,502,553,552,0
        502,503,554,553,0
        503,504,555,554,0
        504,505,556,555,0
        505,506,557,556,0
        506,507,558,557,0
        507,508,559,558,0
        508,509,560,559,0
        509,510,561,560,0
        511,512,563,562,0
        512,513,564,563,0
        513,514,565,564,0
        514,515,566,565,0
        515,516,567,566,0
        516,517,568,567,0
        517,518,569,568,0
        518,519,570,569,0
        519,520,571,570,0
        520,521,572,571,0
        521,522,573,572,0
        522,523,574,573,0
        523,524,575,574,0
        524,525,576,575,0
        525,526,577,576,0
        526,527,578,577,0
        527,528,579,578,0
        528,529,580,579,0
        529,530,581,580,0
        530,531,582,581,0
        531,532,583,582,0
        532,533,584,583,0
        533,534,585,584,0
        534,535,586,585,0
        535,536,587,586,0
        536,537,588,587,0
        537,538,589,588,0
        538,539,590,589,0
        539,540,591,590,0
        540,541,592,591,0
        541,542,593,592,0
        542,543,594,593,0
        543,544,595,594,0
        544,545,596,595,0
        545,546,597,596,0
        546,547,598,597,0
        547,548,599,598,0
        548,549,600,599,0
        549,550,601,600,0
        550,551,602,601,0
        551,552,603,602,0
        552,553,604,603,0
        553,554,605,604,0
        554,555,606,605,0
        555,556,607,606,0
        556,557,608,607,0
        557,558,609,608,0
        558,559,610,609,0
        559,560,611,610,0
        560,561,612,611,0
        562,563,614,613,0
        563,564,615,614,0
        564,565,616,615,0
        565,566,617,616,0
        566,567,618,617,0
        567,568,619,618,0
        568,569,620,619,0
        569,570,621,620,0
        570,571,622,621,0
        571,572,623,622,0
        572,573,624,623,0
        573,574,625,624,0
        574,575,626,625,0
        575,576,627,626,0
        576,577,628,627,0
        577,578,629,628,0
        578,579,630,629,0
        579,580,631,630,0
        580,581,632,631,0
        581,582,633,632,0
        582,583,634,633,0
        583,584,635,634,0
        584,585,636,635,0
        585,586,637,636,0
        586,587,638,637,0
        587,588,639,638,0
        588,589,640,639,0
        589,590,641,640,0
        590,591,642,641,0
        591,592,643,642,0
        592,593,644,643,0
        593,594,645,644,0
        594,595,646,645,0
        595,596,647,646,0
        596,597,648,647,0
        597,598,649,648,0
        598,599,650,649,0
        599,600,651,650,0
        600,601,652,651,0
        601,602,653,652,0
        602,603,654,653,0
        603,604,655,654,0
        604,605,656,655,0
        605,606,657,656,0
        606,607,658,657,0
        607,608,659,658,0
        608,609,660,659,0
        609,610,661,660,0
        610,611,662,661,0
        611,612,663,662,0
        613,614,665,664,0
        614,615,666,665,0
        615,616,667,666,0
        616,617,668,667,0
        617,618,669,668,0
        618,619,670,669,0
        619,620,671,670,0
        620,621,672,671,0
        621,622,673,672,0
        622,623,674,673,0
        623,624,675,674,0
        624,625,676,675,0
        625,626,677,676,0
        626,627,678,677,0
        627,628,679,678,0
        628,629,680,679,0
        629,630,681,680,0
        630,631,682,681,0
        631,632,683,682,0
        632,633,684,683,0
        633,634,685,684,0
        634,635,686,685,0
        635,636,687,686,0
        636,637,688,687,0
        637,638,689,688,0
        638,639,690,689,0
        639,640,691,690,0
        640,641,692,691,0
        641,642,693,692,0
        642,643,694,693,0
        643,644,695,694,0
        644,645,696,695,0
        645,646,697,696,0
        646,647,698,697,0
        647,648,699,698,0
        648,649,700,699,0
        649,650,701,700,0
        650,651,702,701,0
        651,652,703,702,0
        652,653,704,703,0
        653,654,705,704,0
        654,655,706,705,0
        655,656,707,706,0
        656,657,708,707,0
        657,658,709,708,0
        658,659,710,709,0
        659,660,711,710,0
        660,661,712,711,0
        661,662,713,712,0
        662,663,714,713,0
        664,665,716,715,0
        665,666,717,716,0
        666,667,718,717,0
        667,668,719,718,0
        668,669,720,719,0
        669,670,721,720,0
        670,671,722,721,0
        671,672,723,722,0
        672,673,724,723,0
        673,674,725,724,0
        674,675,726,725,0
        675,676,727,726,0
        676,677,728,727,0
        677,678,729,728,0
        678,679,730,729,0
        679,680,731,730,0
        680,681,732,731,0
        681,682,733,732,0
        682,683,734,733,0
        683,684,735,734,0
        684,685,736,735,0
        685,686,737,736,0
        686,687,738,737,0
        687,688,739,738,0
        688,689,740,739,0
        689,690,741,740,0
        690,691,742,741,0
        691,692,743,742,0
        692,693,744,743,0
        698,699,750,749,0
        699,700,751,750,0
        700,701,752,751,0
        701,702,753,752,0
        702,703,754,753,0
        703,704,755,754,0
        704,705,756,755,0
        705,706,757,756,0
        706,707,758,757,0
        707,708,759,758,0
        708,709,760,759,0
        709,710,761,760,0
        710,711,762,761,0
        711,712,763,762,0
        712,713,764,763,0
        713,714,765,764,0
        715,716,767,766,0
        716,717,768,767,0
        717,718,769,768,0
        718,719,770,769,0
        719,720,771,770,0
        720,721,772,771,0
        721,722,773,772,0
        722,723,774,773,0
        723,724,775,774,0
        724,725,776,775,0
        725,726,777,776,0
        726,727,778,777,0
        727,728,779,778,0
        728,729,780,779,0
        729,730,781,780,0
        730,731,782,781,0
        731,732,783,782,0
        732,733,784,783,0
        733,734,785,784,0
        734,735,786,785,0
        735,736,787,786,0
        736,737,788,787,0
        737,738,789,788,0
        738,739,790,789,0
        739,740,791,790,0
        740,741,792,791,0
        741,742,793,792,0
        742,743,794,793,0
        743,744,795,794,0
        747,748,799,798,0
        748,749,800,799,0
        749,750,801,800,0
        750,751,802,801,0
        751,752,803,802,0
        752,753,804,803,0
        753,754,805,804,0
        754,755,806,805,0
        755,756,807,806,0
        756,757,808,807,0
        757,758,809,808,0
        758,759,810,809,0
        759,760,811,810,0
        760,761,812,811,0
        761,762,813,812,0
        762,763,814,813,0
        763,764,815,814,0
        764,765,816,815,0
        766,767,818,817,0
        767,768,819,818,0
        768,769,820,819,0
        769,770,821,820,0
        770,771,822,821,0
        771,772,823,822,0
        774,775,826,825,0
        775,776,827,826,0
        776,777,828,827,0
        777,778,829,828,0
        778,779,830,829,0
        779,780,831,830,0
        780,781,832,831,0
        781,782,833,832,0
        782,783,834,833,0
        783,784,835,834,0
        784,785,836,835,0
        785,786,837,836,0
        786,787,838,837,0
        787,788,839,838,0
        788,789,840,839,0
        789,790,841,840,0
        790,791,842,841,0
        791,792,843,842,0
        792,793,844,843,0
        793,794,845,844,0
        794,795,846,845,0
        795,796,847,846,0
        796,797,848,847,0
        797,798,849,848,0
        798,799,850,849,0
        799,800,851,850,0
        800,801,852,851,0
        801,802,853,852,0
        802,803,854,853,0
        803,804,855,854,0
        804,805,856,855,0
        805,806,857,856,0
        806,807,858,857,0
        807,808,859,858,0
        808,809,860,859,0
        809,810,861,860,0
        810,811,862,861,0
        811,812,863,862,0
        812,813,864,863,0
        813,814,865,864,0
        814,815,866,865,0
        815,816,867,866,0
        817,818,869,868,0
        818,819,870,869,0
        819,820,871,870,0
        820,821,872,871,0
        821,822,873,872,0
        822,823,874,873,0
        825,826,877,876,0
        826,827,878,877,0
        827,828,879,878,0
        828,829,880,879,0
        829,830,881,880,0
        830,831,882,881,0
        831,832,883,882,0
        832,833,884,883,0
        833,834,885,884,0
        834,835,886,885,0
        835,836,887,886,0
        836,837,888,887,0
        837,838,889,888,0
        838,839,890,889,0
        839,840,891,890,0
        840,841,892,891,0
        841,842,893,892,0
        842,843,894,893,0
        843,844,895,894,0
        844,845,896,895,0
        845,846,897,896,0
        846,847,898,897,0
        847,848,899,898,0
        848,849,900,899,0
        849,850,901,900,0
        850,851,902,901,0
        851,852,903,902,0
        852,853,904,903,0
        853,854,905,904,0
        854,855,906,905,0
        855,856,907,906,0
        856,857,908,907,0
        857,858,909,908,0
        858,859,910,909,0
        859,860,911,910,0
        860,861,912,911,0
        861,862,913,912,0
        862,863,914,913,0
        863,864,915,914,0
        864,865,916,915,0
        865,866,917,916,0
        866,867,918,917,0
        868,869,920,919,0
        869,870,921,920,0
        870,871,922,921,0
        871,872,923,922,0
        872,873,924,923,0
        876,877,928,927,0
        877,878,929,928,0
        878,879,930,929,0
        879,880,931,930,0
        880,881,932,931,0
        881,882,933,932,0
        882,883,934,933,0
        883,884,935,934,0
        885,886,937,936,0
        886,887,938,937,0
        887,888,939,938,0
        888,889,940,939,0
        889,890,941,940,0
        890,891,942,941,0
        891,892,943,942,0
        892,893,944,943,0
        893,894,945,944,0
        894,895,946,945,0
        895,896,947,946,0
        896,897,948,947,0
        897,898,949,948,0
        898,899,950,949,0
        899,900,951,950,0
        900,901,952,951,0
        901,902,953,952,0
        902,903,954,953,0
        903,904,955,954,0
        904,905,956,955,0
        905,906,957,956,0
        906,907,958,957,0
        907,908,959,958,0
        908,909,960,959,0
        909,910,961,960,0
        910,911,962,961,0
        911,912,963,962,0
        912,913,964,963,0
        913,914,965,964,0
        914,915,966,965,0
        915,916,967,966,0
        916,917,968,967,0
        917,918,969,968,0
        919,920,971,970,0
        920,921,972,971,0
        921,922,973,972,0
        922,923,974,973,0
        923,924,975,974,0
        925,926,977,976,0
        926,927,978,977,0
        927,928,979,978,0
        928,929,980,979,0
        929,930,981,980,0
        930,931,982,981,0
        931,932,983,982,0
        932,933,984,983,0
        933,934,985,984,0
        934,935,986,985,0
        936,937,988,987,0
        937,938,989,988,0
        938,939,990,989,0
        939,940,991,990,0
        940,941,992,991,0
        941,942,993,992,0
        942,943,994,993,0
        943,944,995,994,0
        944,945,996,995,0
        945,946,997,996,0
        946,947,998,997,0
        947,948,999,998,0
        948,949,1000,999,0
        949,950,1001,1000,0
        950,951,1002,1001,0
        951,952,1003,1002,0
        952,953,1004,1003,0
        953,954,1005,1004,0
        954,955,1006,1005,0
        955,956,1007,1006,0
        956,957,1008,1007,0
        957,958,1009,1008,0
        958,959,1010,1009,0
        959,960,1011,1010,0
        960,961,1012,1011,0
        961,962,1013,1012,0
        962,963,1014,1013,0
        963,964,1015,1014,0
        964,965,1016,1015,0
        965,966,1017,1016,0
        966,967,1018,1017,0
        967,968,1019,1018,0
        968,969,1020,1019,0
        970,971,1022,1021,0
        971,972,1023,1022,0
        972,973,1024,1023,0
        973,974,1025,1024,0
        974,975,1026,1025,0
        975,976,1027,1026,0
        976,977,1028,1027,0
        977,978,1029,1028,0
        978,979,1030,1029,0
        979,980,1031,1030,0
        980,981,1032,1031,0
        981,982,1033,1032,0
        982,983,1034,1033,0
        983,984,1035,1034,0
        984,985,1036,1035,0
        985,986,1037,1036,0
        986,987,1038,1037,0
        987,988,1039,1038,0
        988,989,1040,1039,0
        989,990,1041,1040,0
        990,991,1042,1041,0
        991,992,1043,1042,0
        992,993,1044,1043,0
        993,994,1045,1044,0
        994,995,1046,1045,0
        995,996,1047,1046,0
        996,997,1048,1047,0
        997,998,1049,1048,0
        999,1000,1051,1050,0
        1000,1001,1052,1051,0
        1001,1002,1053,1052,0
        1002,1003,1054,1053,0
        1003,1004,1055,1054,0
        1004,1005,1056,1055,0
        1005,1006,1057,1056,0
        1006,1007,1058,1057,0
        1007,1008,1059,1058,0
        1008,1009,1060,1059,0
        1009,1010,1061,1060,0
        1010,1011,1062,1061,0
        1011,1012,1063,1062,0
        1012,1013,1064,1063,0
        1013,1014,1065,1064,0
        1014,1015,1066,1065,0
        1015,1016,1067,1066,0
        1016,1017,1068,1067,0
        1017,1018,1069,1068,0
        1018,1019,1070,1069,0
        1019,1020,1071,1070,0
        1022,1023,1074,1073,0
        1023,1024,1075,1074,0
        1024,1025,1076,1075,0
        1025,1026,1077,1076,0
        1026,1027,1078,1077,0
        1027,1028,1079,1078,0
        1028,1029,1080,1079,0
        1029,1030,1081,1080,0
        1030,1031,1082,1081,0
        1032,1033,1084,1083,0
        1033,1034,1085,1084,0
        1034,1035,1086,1085,0
        1035,1036,1087,1086,0
        1036,1037,1088,1087,0
        1037,1038,1089,1088,0
        1038,1039,1090,1089,0
        1039,1040,1091,1090,0
        1040,1041,1092,1091,0
        1041,1042,1093,1092,0
        1042,1043,1094,1093,0
        1043,1044,1095,1094,0
        1044,1045,1096,1095,0
        1045,1046,1097,1096,0
        1046,1047,1098,1097,0
        1047,1048,1099,1098,0
        1048,1049,1100,1099,0
        1049,1050,1101,1100,0
        1050,1051,1102,1101,0
        1051,1052,1103,1102,0
        1052,1053,1104,1103,0
        1053,1054,1105,1104,0
        1054,1055,1106,1105,0
        1055,1056,1107,1106,0
        1056,1057,1108,1107,0
        1057,1058,1109,1108,0
        1058,1059,1110,1109,0
        1059,1060,1111,1110,0
        1060,1061,1112,1111,0
        1061,1062,1113,1112,0
        1062,1063,1114,1113,0
        1063,1064,1115,1114,0
        1064,1065,1116,1115,0
        1065,1066,1117,1116,0
        1066,1067,1118,1117,0
        1067,1068,1119,1118,0
        1068,1069,1120,1119,0
        1069,1070,1121,1120,0
        1070,1071,1122,1121,0
        1073,1074,1125,1124,0
        1074,1075,1126,1125,0
        1075,1076,1127,1126,0
        1076,1077,1128,1127,0
        1077,1078,1129,1128,0
        1078,1079,1130,1129,0
        1079,1080,1131,1130,0
        1080,1081,1132,1131,0
        1081,1082,1133,1132,0
        1083,1084,1135,1134,0
        1084,1085,1136,1135,0
        1085,1086,1137,1136,0
        1086,1087,1138,1137,0
        1087,1088,1139,1138,0
        1088,1089,1140,1139,0
        1089,1090,1141,1140,0
        1090,1091,1142,1141,0
        1091,1092,1143,1142,0
        1092,1093,1144,1143,0
        1093,1094,1145,1144,0
        1094,1095,1146,1145,0
        1096,1097,1148,1147,0
        1097,1098,1149,1148,0
        1098,1099,1150,1149,0
        1099,1100,1151,1150,0
        1100,1101,1152,1151,0
        1101,1102,1153,1152,0
        1102,1103,1154,1153,0
        1103,1104,1155,1154,0
        1104,1105,1156,1155,0
        1105,1106,1157,1156,0
        1106,1107,1158,1157,0
        1107,1108,1159,1158,0
        1108,1109,1160,1159,0
        1109,1110,1161,1160,0
        1110,1111,1162,1161,0
        1111,1112,1163,1162,0
        1112,1113,1164,1163,0
        1113,1114,1165,1164,0
        1114,1115,1166,1165,0
        1115,1116,1167,1166,0
        1116,1117,1168,1167,0
        1117,1118,1169,1168,0
        1118,1119,1170,1169,0
        1119,1120,1171,1170,0
        1120,1121,1172,1171,0
        1121,1122,1173,1172,0
        1123,1124,1175,1174,0
        1124,1125,1176,1175,0
        1125,1126,1177,1176,0
        1126,1127,1178,1177,0
        1127,1128,1179,1178,0
        1128,1129,1180,1179,0
        1129,1130,1181,1180,0
        1130,1131,1182,1181,0
        1131,1132,1183,1182,0
        1132,1133,1184,1183,0
        1134,1135,1186,1185,0
        1135,1136,1187,1186,0
        1136,1137,1188,1187,0
        1137,1138,1189,1188,0
        1138,1139,1190,1189,0
        1139,1140,1191,1190,0
        1140,1141,1192,1191,0
        1141,1142,1193,1192,0
        1142,1143,1194,1193,0
        1143,1144,1195,1194,0
        1144,1145,1196,1195,0
        1145,1146,1197,1196,0
        1146,1147,1198,1197,0
        1147,1148,1199,1198,0
        1148,1149,1200,1199,0
        1149,1150,1201,1200,0
        1150,1151,1202,1201,0
        1151,1152,1203,1202,0
        1152,1153,1204,1203,0
        1153,1154,1205,1204,0
        1154,1155,1206,1205,0
        1155,1156,1207,1206,0
        1156,1157,1208,1207,0
        1157,1158,1209,1208,0
        1158,1159,1210,1209,0
        1159,1160,1211,1210,0
        1160,1161,1212,1211,0
        1161,1162,1213,1212,0
        1162,1163,1214,1213,0
        1163,1164,1215,1214,0
        1164,1165,1216,1215,0
        1165,1166,1217,1216,0
        1166,1167,1218,1217,0
        1167,1168,1219,1218,0
        1168,1169,1220,1219,0
        1169,1170,1221,1220,0
        1170,1171,1222,1221,0
        1171,1172,1223,1222,0
        1172,1173,1224,1223,0
        1174,1175,1226,1225,0
        1175,1176,1227,1226,0
        1176,1177,1228,1227,0
        1177,1178,1229,1228,0
        1178,1179,1230,1229,0
        1179,1180,1231,1230,0
        1180,1181,1232,1231,0
        1181,1182,1233,1232,0
        1182,1183,1234,1233,0
        1183,1184,1235,1234,0
        1185,1186,1237,1236,0
        1186,1187,1238,1237,0
        1187,1188,1239,1238,0
        1188,1189,1240,1239,0
        1189,1190,1241,1240,0
        1190,1191,1242,1241,0
        1191,1192,1243,1242,0
        1192,1193,1244,1243,0
        1193,1194,1245,1244,0
        1194,1195,1246,1245,0
        1195,1196,1247,1246,0
        1196,1197,1248,1247,0
        1197,1198,1249,1248,0
        1198,1199,1250,1249,0
        1199,1200,1251,1250,0
        1200,1201,1252,1251,0
        1201,1202,1253,1252,0
        1202,1203,1254,1253,0
        1203,1204,1255,1254,0
        1204,1205,1256,1255,0
        1205,1206,1257,1256,0
        1206,1207,1258,1257,0
        1207,1208,1259,1258,0
        1208,1209,1260,1259,0
        1209,1210,1261,1260,0
        1210,1211,1262,1261,0
        1211,1212,1263,1262,0
        1212,1213,1264,1263,0
        1213,1214,1265,1264,0
        1214,1215,1266,1265,0
        1215,1216,1267,1266,0
        1216,1217,1268,1267,0
        1217,1218,1269,1268,0
        1218,1219,1270,1269,0
        1219,1220,1271,1270,0
        1220,1221,1272,1271,0
        1221,1222,1273,1272,0
        1222,1223,1274,1273,0
        1223,1224,1275,1274,0
        1225,1226,1277,1276,0
        1226,1227,1278,1277,0
        1227,1228,1279,1278,0
        1228,1229,1280,1279,0
        1229,1230,1281,1280,0
        1230,1231,1282,1281,0
        1231,1232,1283,1282,0
        1232,1233,1284,1283,0
        1233,1234,1285,1284,0
        1234,1235,1286,1285,0
        1237,1238,1289,1288,0
        1238,1239,1290,1289,0
        1239,1240,1291,1290,0
        1240,1241,1292,1291,0
        1241,1242,1293,1292,0
        1242,1243,1294,1293,0
        1243,1244,1295,1294,0
        1244,1245,1296,1295,0
        1245,1246,1297,1296,0
        1246,1247,1298,1297,0
        1247,1248,1299,1298,0
        1248,1249,1300,1299,0
        1249,1250,1301,1300,0
        1250,1251,1302,1301,0
        1251,1252,1303,1302,0
        1252,1253,1304,1303,0
        1253,1254,1305,1304,0
        1254,1255,1306,1305,0
        1255,1256,1307,1306,0
        1256,1257,1308,1307,0
        1257,1258,1309,1308,0
        1258,1259,1310,1309,0
        1259,1260,1311,1310,0
        1260,1261,1312,1311,0
        1261,1262,1313,1312,0
        1262,1263,1314,1313,0
        1263,1264,1315,1314,0
        1264,1265,1316,1315,0
        1265,1266,1317,1316,0
        1266,1267,1318,1317,0
        1267,1268,1319,1318,0
        1268,1269,1320,1319,0
        1269,1270,1321,1320,0
        1270,1271,1322,1321,0
        1271,1272,1323,1322,0
        1272,1273,1324,1323,0
        1273,1274,1325,1324,0
        1274,1275,1326,1325,0
        1276,1277,1328,1327,0
        1277,1278,1329,1328,0
        1278,1279,1330,1329,0
        1279,1280,1331,1330,0
        1280,1281,1332,1331,0
        1281,1282,1333,1332,0
        1282,1283,1334,1333,0
        1283,1284,1335,1334,0
        1284,1285,1336,1335,0
        1285,1286,1337,1336,0
        1286,1287,1338,1337,0
        1287,1288,1339,1338,0
        1289,1290,1341,1340,0
        1290,1291,1342,1341,0
        1291,1292,1343,1342,0
        1292,1293,1344,1343,0
        1293,1294,1345,1344,0
        1294,1295,1346,1345,0
        1295,1296,1347,1346,0
        1296,1297,1348,1347,0
        1297,1298,1349,1348,0
        1298,1299,1350,1349,0
        1299,1300,1351,1350,0
        1300,1301,1352,1351,0
        1301,1302,1353,1352,0
        1302,1303,1354,1353,0
        1303,1304,1355,1354,0
        1304,1305,1356,1355,0
        1305,1306,1357,1356,0
        1306,1307,1358,1357,0
        1307,1308,1359,1358,0
        1308,1309,1360,1359,0
        1309,1310,1361,1360,0
        1310,1311,1362,1361,0
        1311,1312,1363,1362,0
        1312,1313,1364,1363,0
        1313,1314,1365,1364,0
        1314,1315,1366,1365,0
        1315,1316,1367,1366,0
        1316,1317,1368,1367,0
        1317,1318,1369,1368,0
        1318,1319,1370,1369,0
        1319,1320,1371,1370,0
        1320,1321,1372,1371,0
        1321,1322,1373,1372,0
        1322,1323,1374,1373,0
        1323,1324,1375,1374,0
        1324,1325,1376,1375,0
        1325,1326,1377,1376,0
        1327,1328,1379,1378,0
        1328,1329,1380,1379,0
        1330,1331,1382,1381,0
        1331,1332,1383,1382,0
        1332,1333,1384,1383,0
        1333,1334,1385,1384,0
        1334,1335,1386,1385,0
        1335,1336,1387,1386,0
        1336,1337,1388,1387,0
        1337,1338,1389,1388,0
        1338,1339,1390,1389,0
        1340,1341,1392,1391,0
        1341,1342,1393,1392,0
        1342,1343,1394,1393,0
        1343,1344,1395,1394,0
        1344,1345,1396,1395,0
        1345,1346,1397,1396,0
        1348,1349,1400,1399,0
        1349,1350,1401,1400,0
        1350,1351,1402,1401,0
        1351,1352,1403,1402,0
        1352,1353,1404,1403,0
        1353,1354,1405,1404,0
        1354,1355,1406,1405,0
        1355,1356,1407,1406,0
        1356,1357,1408,1407,0
        1357,1358,1409,1408,0
        1358,1359,1410,1409,0
        1359,1360,1411,1410,0
        1360,1361,1412,1411,0
        1361,1362,1413,1412,0
        1362,1363,1414,1413,0
        1363,1364,1415,1414,0
        1364,1365,1416,1415,0
        1365,1366,1417,1416,0
        1366,1367,1418,1417,0
        1367,1368,1419,1418,0
        1369,1370,1421,1420,0
        1370,1371,1422,1421,0
        1371,1372,1423,1422,0
        1372,1373,1424,1423,0
        1373,1374,1425,1424,0
        1374,1375,1426,1425,0
        1375,1376,1427,1426,0
        1376,1377,1428,1427,0
        1378,1379,1430,1429,0
        1379,1380,1431,1430,0
        1380,1381,1432,1431,0
        1381,1382,1433,1432,0
        1382,1383,1434,1433,0
        1383,1384,1435,1434,0
        1384,1385,1436,1435,0
        1385,1386,1437,1436,0
        1386,1387,1438,1437,0
        1387,1388,1439,1438,0
        1388,1389,1440,1439,0
        1389,1390,1441,1440,0
        1390,1391,1442,1441,0
        1391,1392,1443,1442,0
        1392,1393,1444,1443,0
        1393,1394,1445,1444,0
        1394,1395,1446,1445,0
        1395,1396,1447,1446,0
        1396,1397,1448,1447,0
        1398,1399,1450,1449,0
        1399,1400,1451,1450,0
        1400,1401,1452,1451,0
        1401,1402,1453,1452,0
        1403,1404,1455,1454,0
        1404,1405,1456,1455,0
        1405,1406,1457,1456,0
        1406,1407,1458,1457,0
        1407,1408,1459,1458,0
        1408,1409,1460,1459,0
        1409,1410,1461,1460,0
        1410,1411,1462,1461,0
        1411,1412,1463,1462,0
        1412,1413,1464,1463,0
        1413,1414,1465,1464,0
        1414,1415,1466,1465,0
        1415,1416,1467,1466,0
        1416,1417,1468,1467,0
        1417,1418,1469,1468,0
        1418,1419,1470,1469,0
        1419,1420,1471,1470,0
        1420,1421,1472,1471,0
        1421,1422,1473,1472,0
        1422,1423,1474,1473,0
        1423,1424,1475,1474,0
        1424,1425,1476,1475,0
        1425,1426,1477,1476,0
        1426,1427,1478,1477,0
        1427,1428,1479,1478,0
        1429,1430,1481,1480,0
        1430,1431,1482,1481,0
        1431,1432,1483,1482,0
        1432,1433,1484,1483,0
        1433,1434,1485,1484,0
        1434,1435,1486,1485,0
        1435,1436,1487,1486,0
        1436,1437,1488,1487,0
        1437,1438,1489,1488,0
        1438,1439,1490,1489,0
        1439,1440,1491,1490,0
        1440,1441,1492,1491,0
        1441,1442,1493,1492,0
        1442,1443,1494,1493,0
        1443,1444,1495,1494,0
        1444,1445,1496,1495,0
        1445,1446,1497,1496,0
        1446,1447,1498,1497,0
        1447,1448,1499,1498,0
        1449,1450,1501,1500,0
        1450,1451,1502,1501,0
        1451,1452,1503,1502,0
        1452,1453,1504,1503,0
        1453,1454,1505,1504,0
        1454,1455,1506,1505,0
        1455,1456,1507,1506,0
        1456,1457,1508,1507,0
        1457,1458,1509,1508,0
        1458,1459,1510,1509,0
        1459,1460,1511,1510,0
        1460,1461,1512,1511,0
        1461,1462,1513,1512,0
        1462,1463,1514,1513,0
        1463,1464,1515,1514,0
        1464,1465,1516,1515,0
        1465,1466,1517,1516,0
        1466,1467,1518,1517,0
        1467,1468,1519,1518,0
        1468,1469,1520,1519,0
        1469,1470,1521,1520,0
        1470,1471,1522,1521,0
        1471,1472,1523,1522,0
        1472,1473,1524,1523,0
        1473,1474,1525,1524,0
        1474,1475,1526,1525,0
        1475,1476,1527,1526,0
        1476,1477,1528,1527,0
        1477,1478,1529,1528,0
        1478,1479,1530,1529,0
        1480,1481,1532,1531,0
        1482,1483,1534,1533,0
        1483,1484,1535,1534,0
        1484,1485,1536,1535,0
        1485,1486,1537,1536,0
        1486,1487,1538,1537,0
        1487,1488,1539,1538,0
        1488,1489,1540,1539,0
        1489,1490,1541,1540,0
        1490,1491,1542,1541,0
        1491,1492,1543,1542,0
        1492,1493,1544,1543,0
        1493,1494,1545,1544,0
        1494,1495,1546,1545,0
        1495,1496,1547,1546,0
        1496,1497,1548,1547,0
        1497,1498,1549,1548,0
        1498,1499,1550,1549,0
        1499,1500,1551,1550,0
        1500,1501,1552,1551,0
        1501,1502,1553,1552,0
        1502,1503,1554,1553,0
        1503,1504,1555,1554,0
        1504,1505,1556,1555,0
        1505,1506,1557,1556,0
        1506,1507,1558,1557,0
        1507,1508,1559,1558,0
        1508,1509,1560,1559,0
        1509,1510,1561,1560,0
        1510,1511,1562,1561,0
        1513,1514,1565,1564,0
        1514,1515,1566,1565,0
        1515,1516,1567,1566,0
        1516,1517,1568,1567,0
        1517,1518,1569,1568,0
        1518,1519,1570,1569,0
        1519,1520,1571,1570,0
        1520,1521,1572,1571,0
        1521,1522,1573,1572,0
        1522,1523,1574,1573,0
        1523,1524,1575,1574,0
        1524,1525,1576,1575,0
        1525,1526,1577,1576,0
        1526,1527,1578,1577,0
        1527,1528,1579,1578,0
        1528,1529,1580,1579,0
        1529,1530,1581,1580,0
        1533,1534,1585,1584,0
        1534,1535,1586,1585,0
        1535,1536,1587,1586,0
        1536,1537,1588,1587,0
        1537,1538,1589,1588,0
        1538,1539,1590,1589,0
        1539,1540,1591,1590,0
        1540,1541,1592,1591,0
        1541,1542,1593,1592,0
        1542,1543,1594,1593,0
        1543,1544,1595,1594,0
        1544,1545,1596,1595,0
        1545,1546,1597,1596,0
        1546,1547,1598,1597,0
        1547,1548,1599,1598,0
        1548,1549,1600,1599,0
        1549,1550,1601,1600,0
        1550,1551,1602,1601,0
        1551,1552,1603,1602,0
        1552,1553,1604,1603,0
        1553,1554,1605,1604,0
        1554,1555,1606,1605,0
        1555,1556,1607,1606,0
        1556,1557,1608,1607,0
        1557,1558,1609,1608,0
        1558,1559,1610,1609,0
        1559,1560,1611,1610,0
        1560,1561,1612,1611,0
        1561,1562,1613,1612,0
        1563,1564,1615,1614,0
        1564,1565,1616,1615,0
        1565,1566,1617,1616,0
        1566,1567,1618,1617,0
        1567,1568,1619,1618,0
        1568,1569,1620,1619,0
        1569,1570,1621,1620,0
        1570,1571,1622,1621,0
        1571,1572,1623,1622,0
        1572,1573,1624,1623,0
        1573,1574,1625,1624,0
        1574,1575,1626,1625,0
        1575,1576,1627,1626,0
        1576,1577,1628,1627,0
        1577,1578,1629,1628,0
        1578,1579,1630,1629,0
        1579,1580,1631,1630,0
        1580,1581,1632,1631,0
        1584,1585,1636,1635,0
        1585,1586,1637,1636,0
        1586,1587,1638,1637,0
        1587,1588,1639,1638,0
        1588,1589,1640,1639,0
        1589,1590,1641,1640,0
        1590,1591,1642,1641,0
        1591,1592,1643,1642,0
        1592,1593,1644,1643,0
        1593,1594,1645,1644,0
        1594,1595,1646,1645,0
        1595,1596,1647,1646,0
        1596,1597,1648,1647,0
        1597,1598,1649,1648,0
        1598,1599,1650,1649,0
        1599,1600,1651,1650,0
        1600,1601,1652,1651,0
        1601,1602,1653,1652,0
        1602,1603,1654,1653,0
        1603,1604,1655,1654,0
        1604,1605,1656,1655,0
        1605,1606,1657,1656,0
        1606,1607,1658,1657,0
        1607,1608,1659,1658,0
        1608,1609,1660,1659,0
        1609,1610,1661,1660,0
        1610,1611,1662,1661,0
        1611,1612,1663,1662,0
        1612,1613,1664,1663,0
        1613,1614,1665,1664,0
        1614,1615,1666,1665,0
        1615,1616,1667,1666,0
        1616,1617,1668,1667,0
        1617,1618,1669,1668,0
        1618,1619,1670,1669,0
        1619,1620,1671,1670,0
        1620,1621,1672,1671,0
        1621,1622,1673,1672,0
        1622,1623,1674,1673,0
        1623,1624,1675,1674,0
        1624,1625,1676,1675,0
        1625,1626,1677,1676,0
        1626,1627,1678,1677,0
        1627,1628,1679,1678,0
        1628,1629,1680,1679,0
        1629,1630,1681,1680,0
        1630,1631,1682,1681,0
        1631,1632,1683,1682,0
        1635,1636,1687,1686,0
        1636,1637,1688,1687,0
        1637,1638,1689,1688,0
        1638,1639,1690,1689,0
        1639,1640,1691,1690,0
        1640,1641,1692,1691,0
        1641,1642,1693,1692,0
        1642,1643,1694,1693,0
        1643,1644,1695,1694,0
        1644,1645,1696,1695,0
        1645,1646,1697,1696,0
        1646,1647,1698,1697,0
        1647,1648,1699,1698,0
        1648,1649,1700,1699,0
        1649,1650,1701,1700,0
        1650,1651,1702,1701,0
        1651,1652,1703,1702,0
        1652,1653,1704,1703,0
        1653,1654,1705,1704,0
        1654,1655,1706,1705,0
        1655,1656,1707,1706,0
        1656,1657,1708,1707,0
        1657,1658,1709,1708,0
        1658,1659,1710,1709,0
        1659,1660,1711,1710,0
        1660,1661,1712,1711,0
        1661,1662,1713,1712,0
        1662,1663,1714,1713,0
        1663,1664,1715,1714,0
        1664,1665,1716,1715,0
        1665,1666,1717,1716,0
        1666,1667,1718,1717,0
        1667,1668,1719,1718,0
        1668,1669,1720,1719,0
        1669,1670,1721,1720,0
        1670,1671,1722,1721,0
        1671,1672,1723,1722,0
        1672,1673,1724,1723,0
        1673,1674,1725,1724,0
        1674,1675,1726,1725,0
        1675,1676,1727,1726,0
        1676,1677,1728,1727,0
        1677,1678,1729,1728,0
        1678,1679,1730,1729,0
        1679,1680,1731,1730,0
        1680,1681,1732,1731,0
        1681,1682,1733,1732,0
        1682,1683,1734,1733,0
        1684,1685,1736,1735,0
        1685,1686,1737,1736,0
        1686,1687,1738,1737,0
        1687,1688,1739,1738,0
        1688,1689,1740,1739,0
        1689,1690,1741,1740,0
        1690,1691,1742,1741,0
        1691,1692,1743,1742,0
        1692,1693,1744,1743,0
        1693,1694,1745,1744,0
        1694,1695,1746,1745,0
        1695,1696,1747,1746,0
        1696,1697,1748,1747,0
        1697,1698,1749,1748,0
        1698,1699,1750,1749,0
        1699,1700,1751,1750,0
        1700,1701,1752,1751,0
        1701,1702,1753,1752,0
        1702,1703,1754,1753,0
        1703,1704,1755,1754,0
        1704,1705,1756,1755,0
        1705,1706,1757,1756,0
        1706,1707,1758,1757,0
        1707,1708,1759,1758,0
        1708,1709,1760,1759,0
        1709,1710,1761,1760,0
        1710,1711,1762,1761,0
        1711,1712,1763,1762,0
        1712,1713,1764,1763,0
        1713,1714,1765,1764,0
        1714,1715,1766,1765,0
        1715,1716,1767,1766,0
        1716,1717,1768,1767,0
        1717,1718,1769,1768,0
        1718,1719,1770,1769,0
        1719,1720,1771,1770,0
        1720,1721,1772,1771,0
        1721,1722,1773,1772,0
        1722,1723,1774,1773,0
        1723,1724,1775,1774,0
        1724,1725,1776,1775,0
        1725,1726,1777,1776,0
        1726,1727,1778,1777,0
        1727,1728,1779,1778,0
        1728,1729,1780,1779,0
        1729,1730,1781,1780,0
        1730,1731,1782,1781,0
        1731,1732,1783,1782,0
        1732,1733,1784,1783,0
        1733,1734,1785,1784,0
        1735,1736,1787,1786,0
        1736,1737,1788,1787,0
        1742,1743,1794,1793,0
        1743,1744,1795,1794,0
        1744,1745,1796,1795,0
        1745,1746,1797,1796,0
        1746,1747,1798,1797,0
        1747,1748,1799,1798,0
        1748,1749,1800,1799,0
        1749,1750,1801,1800,0
        1750,1751,1802,1801,0
        1751,1752,1803,1802,0
        1752,1753,1804,1803,0
        1753,1754,1805,1804,0
        1754,1755,1806,1805,0
        1755,1756,1807,1806,0
        1756,1757,1808,1807,0
        1757,1758,1809,1808,0
        1758,1759,1810,1809,0
        1759,1760,1811,1810,0
        1760,1761,1812,1811,0
        1761,1762,1813,1812,0
        1762,1763,1814,1813,0
        1763,1764,1815,1814,0
        1764,1765,1816,1815,0
        1765,1766,1817,1816,0
        1766,1767,1818,1817,0
        1767,1768,1819,1818,0
        1768,1769,1820,1819,0
        1769,1770,1821,1820,0
        1770,1771,1822,1821,0
        1771,1772,1823,1822,0
        1772,1773,1824,1823,0
        1773,1774,1825,1824,0
        1774,1775,1826,1825,0
        1775,1776,1827,1826,0
        1776,1777,1828,1827,0
        1777,1778,1829,1828,0
        1778,1779,1830,1829,0
        1779,1780,1831,1830,0
        1780,1781,1832,1831,0
        1781,1782,1833,1832,0
        1782,1783,1834,1833,0
        1783,1784,1835,1834,0
        1784,1785,1836,1835,0
        1786,1787,1838,1837,0
        1787,1788,1839,1838,0
        1788,1789,1840,1839,0
        1789,1790,1841,1840,0
        1790,1791,1842,1841,0
        1791,1792,1843,1842,0
        1792,1793,1844,1843,0
        1793,1794,1845,1844,0
        1794,1795,1846,1845,0
        1795,1796,1847,1846,0
        1796,1797,1848,1847,0
        1797,1798,1849,1848,0
        1798,1799,1850,1849,0
        1799,1800,1851,1850,0
        1800,1801,1852,1851,0
        1801,1802,1853,1852,0
        1802,1803,1854,1853,0
        1803,1804,1855,1854,0
        1804,1805,1856,1855,0
        1805,1806,1857,1856,0
        1806,1807,1858,1857,0
        1807,1808,1859,1858,0
        1808,1809,1860,1859,0
        1809,1810,1861,1860,0
        1810,1811,1862,1861,0
        1811,1812,1863,1862,0
        1812,1813,1864,1863,0
        1813,1814,1865,1864,0
        1814,1815,1866,1865,0
        1815,1816,1867,1866,0
        1816,1817,1868,1867,0
        1817,1818,1869,1868,0
        1819,1820,1871,1870,0
        1820,1821,1872,1871,0
        1821,1822,1873,1872,0
        1822,1823,1874,1873,0
        1823,1824,1875,1874,0
        1824,1825,1876,1875,0
        1825,1826,1877,1876,0
        1826,1827,1878,1877,0
        1827,1828,1879,1878,0
        1828,1829,1880,1879,0
        1829,1830,1881,1880,0
        1830,1831,1882,1881,0
        1831,1832,1883,1882,0
        1832,1833,1884,1883,0
        1833,1834,1885,1884,0
        1834,1835,1886,1885,0
        1835,1836,1887,1886,0
        1837,1838,1889,1888,0
        1838,1839,1890,1889,0
        1839,1840,1891,1890,0
        1840,1841,1892,1891,0
        1841,1842,1893,1892,0
        1842,1843,1894,1893,0
        1843,1844,1895,1894,0
        1844,1845,1896,1895,0
        1845,1846,1897,1896,0
        1846,1847,1898,1897,0
        1847,1848,1899,1898,0
        1848,1849,1900,1899,0
        1849,1850,1901,1900,0
        1850,1851,1902,1901,0
        1851,1852,1903,1902,0
        1852,1853,1904,1903,0
        1853,1854,1905,1904,0
        1854,1855,1906,1905,0
        1855,1856,1907,1906,0
        1856,1857,1908,1907,0
        1857,1858,1909,1908,0
        1858,1859,1910,1909,0
        1859,1860,1911,1910,0
        1860,1861,1912,1911,0
        1861,1862,1913,1912,0
        1862,1863,1914,1913,0
        1863,1864,1915,1914,0
        1864,1865,1916,1915,0
        1865,1866,1917,1916,0
        1866,1867,1918,1917,0
        1867,1868,1919,1918,0
        1868,1869,1920,1919,0
        1869,1870,1921,1920,0
        1870,1871,1922,1921,0
        1871,1872,1923,1922,0
        1872,1873,1924,1923,0
        1873,1874,1925,1924,0
        1874,1875,1926,1925,0
        1875,1876,1927,1926,0
        1876,1877,1928,1927,0
        1877,1878,1929,1928,0
        1878,1879,1930,1929,0
        1879,1880,1931,1930,0
        1880,1881,1932,1931,0
        1881,1882,1933,1932,0
        1882,1883,1934,1933,0
        1883,1884,1935,1934,0
        1884,1885,1936,1935,0
        1885,1886,1937,1936,0
        1886,1887,1938,1937,0
        1888,1889,1940,1939,0
        1889,1890,1941,1940,0
        1890,1891,1942,1941,0
        1891,1892,1943,1942,0
        1892,1893,1944,1943,0
        1893,1894,1945,1944,0
        1894,1895,1946,1945,0
        1896,1897,1948,1947,0
        1897,1898,1949,1948,0
        1898,1899,1950,1949,0
        1899,1900,1951,1950,0
        1900,1901,1952,1951,0
        1901,1902,1953,1952,0
        1902,1903,1954,1953,0
        1903,1904,1955,1954,0
        1904,1905,1956,1955,0
        1905,1906,1957,1956,0
        1906,1907,1958,1957,0
        1907,1908,1959,1958,0
        1908,1909,1960,1959,0
        1909,1910,1961,1960,0
        1910,1911,1962,1961,0
        1911,1912,1963,1962,0
        1912,1913,1964,1963,0
        1913,1914,1965,1964,0
        1914,1915,1966,1965,0
        1915,1916,1967,1966,0
        1916,1917,1968,1967,0
        1917,1918,1969,1968,0
        1918,1919,1970,1969,0
        1919,1920,1971,1970,0
        1920,1921,1972,1971,0
        1921,1922,1973,1972,0
        1922,1923,1974,1973,0
        1923,1924,1975,1974,0
        1924,1925,1976,1975,0
        1925,1926,1977,1976,0
        1926,1927,1978,1977,0
        1927,1928,1979,1978,0
        1930,1931,1982,1981,0
        1931,1932,1983,1982,0
        1932,1933,1984,1983,0
        1933,1934,1985,1984,0
        1934,1935,1986,1985,0
        1935,1936,1987,1986,0
        1936,1937,1988,1987,0
        1937,1938,1989,1988,0
        1939,1940,1991,1990,0
        1940,1941,1992,1991,0
        1941,1942,1993,1992,0
        1942,1943,1994,1993,0
        1943,1944,1995,1994,0
        1944,1945,1996,1995,0
        1945,1946,1997,1996,0
        1947,1948,1999,1998,0
        1948,1949,2000,1999,0
        1949,1950,2001,2000,0
        1950,1951,2002,2001,0
        1951,1952,2003,2002,0
        1952,1953,2004,2003,0
        1953,1954,2005,2004,0
        1954,1955,2006,2005,0
        1955,1956,2007,2006,0
        1956,1957,2008,2007,0
        1957,1958,2009,2008,0
        1958,1959,2010,2009,0
        1959,1960,2011,2010,0
        1960,1961,2012,2011,0
        1961,1962,2013,2012,0
        1962,1963,2014,2013,0
        1963,1964,2015,2014,0
        1964,1965,2016,2015,0
        1965,1966,2017,2016,0
        1966,1967,2018,2017,0
        1967,1968,2019,2018,0
        1968,1969,2020,2019,0
        1969,1970,2021,2020,0
        1970,1971,2022,2021,0
        1971,1972,2023,2022,0
        1972,1973,2024,2023,0
        1973,1974,2025,2024,0
        1974,1975,2026,2025,0
        1975,1976,2027,2026,0
        1976,1977,2028,2027,0
        1977,1978,2029,2028,0
        1978,1979,2030,2029,0
        1979,1980,2031,2030,0
        1980,1981,2032,2031,0
        1981,1982,2033,2032,0
        1984,1985,2036,2035,0
        1985,1986,2037,2036,0
        1986,1987,2038,2037,0
        1987,1988,2039,2038,0
        1988,1989,2040,2039,0
        1990,1991,2042,2041,0
        1991,1992,2043,2042,0
        1992,1993,2044,2043,0
        1993,1994,2045,2044,0
        1994,1995,2046,2045,0
        1995,1996,2047,2046,0
        1998,1999,2050,2049,0
        1999,2000,2051,2050,0
        2000,2001,2052,2051,0
        2001,2002,2053,2052,0
        2002,2003,2054,2053,0
        2003,2004,2055,2054,0
        2004,2005,2056,2055,0
        2005,2006,2057,2056,0
        2006,2007,2058,2057,0
        2007,2008,2059,2058,0
        2008,2009,2060,2059,0
        2009,2010,2061,2060,0
        2010,2011,2062,2061,0
        2011,2012,2063,2062,0
        2012,2013,2064,2063,0
        2013,2014,2065,2064,0
        2014,2015,2066,2065,0
        2015,2016,2067,2066,0
        2016,2017,2068,2067,0
        2017,2018,2069,2068,0
        2018,2019,2070,2069,0
        2019,2020,2071,2070,0
        2020,2021,2072,2071,0
        2021,2022,2073,2072,0
        2022,2023,2074,2073,0
        2023,2024,2075,2074,0
        2025,2026,2077,2076,0
        2026,2027,2078,2077,0
        2027,2028,2079,2078,0
        2028,2029,2080,2079,0
        2029,2030,2081,2080,0
        2030,2031,2082,2081,0
        2031,2032,2083,2082,0
        2032,2033,2084,2083,0
        2035,2036,2087,2086,0
        2036,2037,2088,2087,0
        2037,2038,2089,2088,0
        2038,2039,2090,2089,0
        2039,2040,2091,2090,0
        2041,2042,2093,2092,0
        2042,2043,2094,2093,0
        2043,2044,2095,2094,0
        2044,2045,2096,2095,0
        2045,2046,2097,2096,0
        2046,2047,2098,2097,0
        2047,2048,2099,2098,0
        2048,2049,2100,2099,0
        2049,2050,2101,2100,0
        2050,2051,2102,2101,0
        2051,2052,2103,2102,0
        2052,2053,2104,2103,0
        2053,2054,2105,2104,0
        2054,2055,2106,2105,0
        2055,2056,2107,2106,0
        2056,2057,2108,2107,0
        2057,2058,2109,2108,0
        2058,2059,2110,2109,0
        2059,2060,2111,2110,0
        2060,2061,2112,2111,0
        2061,2062,2113,2112,0
        2062,2063,2114,2113,0
        2063,2064,2115,2114,0
        2064,2065,2116,2115,0
        2065,2066,2117,2116,0
        2066,2067,2118,2117,0
        2067,2068,2119,2118,0
        2068,2069,2120,2119,0
        2069,2070,2121,2120,0
        2070,2071,2122,2121,0
        2071,2072,2123,2122,0
        2072,2073,2124,2123,0
        2073,2074,2125,2124,0
        2074,2075,2126,2125,0
        2076,2077,2128,2127,0
        2077,2078,2129,2128,0
        2078,2079,2130,2129,0
        2079,2080,2131,2130,0
        2080,2081,2132,2131,0
        2081,2082,2133,2132,0
        2082,2083,2134,2133,0
        2083,2084,2135,2134,0
        2084,2085,2136,2135,0
        2085,2086,2137,2136,0
        2086,2087,2138,2137,0
        2087,2088,2139,2138,0
        2088,2089,2140,2139,0
        2089,2090,2141,2140,0
        2090,2091,2142,2141,0
        2092,2093,2144,2143,0
        2093,2094,2145,2144,0
        2094,2095,2146,2145,0
        2095,2096,2147,2146,0
        2096,2097,2148,2147,0
        2097,2098,2149,2148,0
        2098,2099,2150,2149,0
        2099,2100,2151,2150,0
        2100,2101,2152,2151,0
        2101,2102,2153,2152,0
        2102,2103,2154,2153,0
        2103,2104,2155,2154,0
        2104,2105,2156,2155,0
        2105,2106,2157,2156,0
        2106,2107,2158,2157,0
        2107,2108,2159,2158,0
        2108,2109,2160,2159,0
        2109,2110,2161,2160,0
        2110,2111,2162,2161,0
        2111,2112,2163,2162,0
        2112,2113,2164,2163,0
        2113,2114,2165,2164,0
        2114,2115,2166,2165,0
        2115,2116,2167,2166,0
        2116,2117,2168,2167,0
        2117,2118,2169,2168,0
        2118,2119,2170,2169,0
        2119,2120,2171,2170,0
        2120,2121,2172,2171,0
        2121,2122,2173,2172,0
        2122,2123,2174,2173,0
        2123,2124,2175,2174,0
        2124,2125,2176,2175,0
        2125,2126,2177,2176,0
        2126,2127,2178,2177,0
        2127,2128,2179,2178,0
        2128,2129,2180,2179,0
        2129,2130,2181,2180,0
        2130,2131,2182,2181,0
        2131,2132,2183,2182,0
        2132,2133,2184,2183,0
        2133,2134,2185,2184,0
        2134,2135,2186,2185,0
        2135,2136,2187,2186,0
        2136,2137,2188,2187,0
        2137,2138,2189,2188,0
        2138,2139,2190,2189,0
        2139,2140,2191,2190,0
        2140,2141,2192,2191,0
        2141,2142,2193,2192,0
        2143,2144,2195,2194,0
        2144,2145,2196,2195,0
        2145,2146,2197,2196,0
        2146,2147,2198,2197,0
        2147,2148,2199,2198,0
        2148,2149,2200,2199,0
        2149,2150,2201,2200,0
        2150,2151,2202,2201,0
        2151,2152,2203,2202,0
        2152,2153,2204,2203,0
        2153,2154,2205,2204,0
        2154,2155,2206,2205,0
        2155,2156,2207,2206,0
        2156,2157,2208,2207,0
        2157,2158,2209,2208,0
        2158,2159,2210,2209,0
        2159,2160,2211,2210,0
        2160,2161,2212,2211,0
        2161,2162,2213,2212,0
        2162,2163,2214,2213,0
        2163,2164,2215,2214,0
        2164,2165,2216,2215,0
        2165,2166,2217,2216,0
        2166,2167,2218,2217,0
        2167,2168,2219,2218,0
        2168,2169,2220,2219,0
        2169,2170,2221,2220,0
        2170,2171,2222,2221,0
        2171,2172,2223,2222,0
        2172,2173,2224,2223,0
        2173,2174,2225,2224,0
        2174,2175,2226,2225,0
        2175,2176,2227,2226,0
        2176,2177,2228,2227,0
        2177,2178,2229,2228,0
        2178,2179,2230,2229,0
        2179,2180,2231,2230,0
        2180,2181,2232,2231,0
        2181,2182,2233,2232,0
        2183,2184,2235,2234,0
        2184,2185,2236,2235,0
        2185,2186,2237,2236,0
        2186,2187,2238,2237,0
        2187,2188,2239,2238,0
        2188,2189,2240,2239,0
        2189,2190,2241,2240,0
        2190,2191,2242,2241,0
        2191,2192,2243,2242,0
        2192,2193,2244,2243,0
        2194,2195,2246,2245,0
        2195,2196,2247,2246,0
        2196,2197,2248,2247,0
        2199,2200,2251,2250,0
        2200,2201,2252,2251,0
        2201,2202,2253,2252,0
        2202,2203,2254,2253,0
        2203,2204,2255,2254,0
        2204,2205,2256,2255,0
        2205,2206,2257,2256,0
        2206,2207,2258,2257,0
        2207,2208,2259,2258,0
        2208,2209,2260,2259,0
        2209,2210,2261,2260,0
        2210,2211,2262,2261,0
        2211,2212,2263,2262,0
        2212,2213,2264,2263,0
        2213,2214,2265,2264,0
        2214,2215,2266,2265,0
        2215,2216,2267,2266,0
        2216,2217,2268,2267,0
        2217,2218,2269,2268,0
        2218,2219,2270,2269,0
        2219,2220,2271,2270,0
        2220,2221,2272,2271,0
        2221,2222,2273,2272,0
        2222,2223,2274,2273,0
        2223,2224,2275,2274,0
        2224,2225,2276,2275,0
        2225,2226,2277,2276,0
        2226,2227,2278,2277,0
        2227,2228,2279,2278,0
        2228,2229,2280,2279,0
        2229,2230,2281,2280,0
        2230,2231,2282,2281,0
        2231,2232,2283,2282,0
        2234,2235,2286,2285,0
        2235,2236,2287,2286,0
        2236,2237,2288,2287,0
        2237,2238,2289,2288,0
        2238,2239,2290,2289,0
        2239,2240,2291,2290,0
        2240,2241,2292,2291,0
        2241,2242,2293,2292,0
        2242,2243,2294,2293,0
        2243,2244,2295,2294,0
        2245,2246,2297,2296,0
        2246,2247,2298,2297,0
        2247,2248,2299,2298,0
        2248,2249,2300,2299,0
        2249,2250,2301,2300,0
        2250,2251,2302,2301,0
        2251,2252,2303,2302,0
        2252,2253,2304,2303,0
        2253,2254,2305,2304,0
        2254,2255,2306,2305,0
        2255,2256,2307,2306,0
        2256,2257,2308,2307,0
        2257,2258,2309,2308,0
        2258,2259,2310,2309,0
        2259,2260,2311,2310,0
        2260,2261,2312,2311,0
        2261,2262,2313,2312,0
        2262,2263,2314,2313,0
        2263,2264,2315,2314,0
        2264,2265,2316,2315,0
        2265,2266,2317,2316,0
        2266,2267,2318,2317,0
        2267,2268,2319,2318,0
        2268,2269,2320,2319,0
        2269,2270,2321,2320,0
        2270,2271,2322,2321,0
        2271,2272,2323,2322,0
        2272,2273,2324,2323,0
        2273,2274,2325,2324,0
        2274,2275,2326,2325,0
        2275,2276,2327,2326,0
        2276,2277,2328,2327,0
        2277,2278,2329,2328,0
        2278,2279,2330,2329,0
        2279,2280,2331,2330,0
        2280,2281,2332,2331,0
        2281,2282,2333,2332,0
        2282,2283,2334,2333,0
        2283,2284,2335,2334,0
        2284,2285,2336,2335,0
        2285,2286,2337,2336,0
        2286,2287,2338,2337,0
        2287,2288,2339,2338,0
        2288,2289,2340,2339,0
        2289,2290,2341,2340,0
        2290,2291,2342,2341,0
        2291,2292,2343,2342,0
        2292,2293,2344,2343,0
        2293,2294,2345,2344,0
        2294,2295,2346,2345,0
        2296,2297,2348,2347,0
        2297,2298,2349,2348,0
        2298,2299,2350,2349,0
        2299,2300,2351,2350,0
        2300,2301,2352,2351,0
        2301,2302,2353,2352,0
        2302,2303,2354,2353,0
        2303,2304,2355,2354,0
        2304,2305,2356,2355,0
        2305,2306,2357,2356,0
        2306,2307,2358,2357,0
        2307,2308,2359,2358,0
        2308,2309,2360,2359,0
        2309,2310,2361,2360,0
        2310,2311,2362,2361,0
        2311,2312,2363,2362,0
        2312,2313,2364,2363,0
        2313,2314,2365,2364,0
        2314,2315,2366,2365,0
        2315,2316,2367,2366,0
        2316,2317,2368,2367,0
        2317,2318,2369,2368,0
        2318,2319,2370,2369,0
        2319,2320,2371,2370,0
        2320,2321,2372,2371,0
        2321,2322,2373,2372,0
        2322,2323,2374,2373,0
        2323,2324,2375,2374,0
        2324,2325,2376,2375,0
        2325,2326,2377,2376,0
        2326,2327,2378,2377,0
        2327,2328,2379,2378,0
        2328,2329,2380,2379,0
        2329,2330,2381,2380,0
        2330,2331,2382,2381,0
        2331,2332,2383,2382,0
        2332,2333,2384,2383,0
        2333,2334,2385,2384,0
        2334,2335,2386,2385,0
        2335,2336,2387,2386,0
        2336,2337,2388,2387,0
        2337,2338,2389,2388,0
        2338,2339,2390,2389,0
        2339,2340,2391,2390,0
        2340,2341,2392,2391,0
        2341,2342,2393,2392,0
        2342,2343,2394,2393,0
        2343,2344,2395,2394,0
        2344,2345,2396,2395,0
        2345,2346,2397,2396,0
        2347,2348,2399,2398,0
        2348,2349,2400,2399,0
        2349,2350,2401,2400,0
        2350,2351,2402,2401,0
        2351,2352,2403,2402,0
        2352,2353,2404,2403,0
        2353,2354,2405,2404,0
        2354,2355,2406,2405,0
        2355,2356,2407,2406,0
        2356,2357,2408,2407,0
        2357,2358,2409,2408,0
        2358,2359,2410,2409,0
        2359,2360,2411,2410,0
        2360,2361,2412,2411,0
        2361,2362,2413,2412,0
        2362,2363,2414,2413,0
        2363,2364,2415,2414,0
        2364,2365,2416,2415,0
        2365,2366,2417,2416,0
        2368,2369,2420,2419,0
        2369,2370,2421,2420,0
        2370,2371,2422,2421,0
        2371,2372,2423,2422,0
        2372,2373,2424,2423,0
        2373,2374,2425,2424,0
        2374,2375,2426,2425,0
        2375,2376,2427,2426,0
        2376,2377,2428,2427,0
        2377,2378,2429,2428,0
        2378,2379,2430,2429,0
        2379,2380,2431,2430,0
        2380,2381,2432,2431,0
        2381,2382,2433,2432,0
        2382,2383,2434,2433,0
        2383,2384,2435,2434,0
        2384,2385,2436,2435,0
        2385,2386,2437,2436,0
        2386,2387,2438,2437,0
        2387,2388,2439,2438,0
        2388,2389,2440,2439,0
        2389,2390,2441,2440,0
        2390,2391,2442,2441,0
        2391,2392,2443,2442,0
        2392,2393,2444,2443,0
        2393,2394,2445,2444,0
        2394,2395,2446,2445,0
        2395,2396,2447,2446,0
        2396,2397,2448,2447,0
        2398,2399,2450,2449,0
        2399,2400,2451,2450,0
        2400,2401,2452,2451,0
        2401,2402,2453,2452,0
        2402,2403,2454,2453,0
        2403,2404,2455,2454,0
        2404,2405,2456,2455,0
        2405,2406,2457,2456,0
        2406,2407,2458,2457,0
        2407,2408,2459,2458,0
        2408,2409,2460,2459,0
        2409,2410,2461,2460,0
        2410,2411,2462,2461,0
        2411,2412,2463,2462,0
        2412,2413,2464,2463,0
        2413,2414,2465,2464,0
        2414,2415,2466,2465,0
        2415,2416,2467,2466,0
        2416,2417,2468,2467,0
        2417,2418,2469,2468,0
        2418,2419,2470,2469,0
        2419,2420,2471,2470,0
        2420,2421,2472,2471,0
        2421,2422,2473,2472,0
        2422,2423,2474,2473,0
        2423,2424,2475,2474,0
        2424,2425,2476,2475,0
        2425,2426,2477,2476,0
        2426,2427,2478,2477,0
        2427,2428,2479,2478,0
        2428,2429,2480,2479,0
        2429,2430,2481,2480,0
        2430,2431,2482,2481,0
        2431,2432,2483,2482,0
        2432,2433,2484,2483,0
        2433,2434,2485,2484,0
        2434,2435,2486,2485,0
        2435,2436,2487,2486,0
        2436,2437,2488,2487,0
        2437,2438,2489,2488,0
        2438,2439,2490,2489,0
        2439,2440,2491,2490,0
        2440,2441,2492,2491,0
        2441,2442,2493,2492,0
        2442,2443,2494,2493,0
        2443,2444,2495,2494,0
        2444,2445,2496,2495,0
        2445,2446,2497,2496,0
        2446,2447,2498,2497,0
        2447,2448,2499,2498,0
        2449,2450,2501,2500,0
        2450,2451,2502,2501,0
        2451,2452,2503,2502,0
        2452,2453,2504,2503,0
        2453,2454,2505,2504,0
        2454,2455,2506,2505,0
        2455,2456,2507,2506,0
        2456,2457,2508,2507,0
        2457,2458,2509,2508,0
        2458,2459,2510,2509,0
        2459,2460,2511,2510,0
        2460,2461,2512,2511,0
        2461,2462,2513,2512,0
        2462,2463,2514,2513,0
        2463,2464,2515,2514,0
        2464,2465,2516,2515,0
        2465,2466,2517,2516,0
        2466,2467,2518,2517,0
        2467,2468,2519,2518,0
        2468,2469,2520,2519,0
        2469,2470,2521,2520,0
        2470,2471,2522,2521,0
        2471,2472,2523,2522,0
        2472,2473,2524,2523,0
        2473,2474,2525,2524,0
        2474,2475,2526,2525,0
        2475,2476,2527,2526,0
        2476,2477,2528,2527,0
        2477,2478,2529,2528,0
        2478,2479,2530,2529,0
        2479,2480,2531,2530,0
        2480,2481,2532,2531,0
        2481,2482,2533,2532,0
        2482,2483,2534,2533,0
        2483,2484,2535,2534,0
        2484,2485,2536,2535,0
        2485,2486,2537,2536,0
        2486,2487,2538,2537,0
        2487,2488,2539,2538,0
        2488,2489,2540,2539,0
        2489,2490,2541,2540,0
        2490,2491,2542,2541,0
        2491,2492,2543,2542,0
        2492,2493,2544,2543,0
        2493,2494,2545,2544,0
        2494,2495,2546,2545,0
        2495,2496,2547,2546,0
        2500,2501,2552,2551,0
        2501,2502,2553,2552,0
        2502,2503,2554,2553,0
        2503,2504,2555,2554,0
        2504,2505,2556,2555,0
        2505,2506,2557,2556,0
        2506,2507,2558,2557,0
        2507,2508,2559,2558,0
        2508,2509,2560,2559,0
        2509,2510,2561,2560,0
        2510,2511,2562,2561,0
        2511,2512,2563,2562,0
        2512,2513,2564,2563,0
        2513,2514,2565,2564,0
        2514,2515,2566,2565,0
        2515,2516,2567,2566,0
        2516,2517,2568,2567,0
        2517,2518,2569,2568,0
        2518,2519,2570,2569,0
        2519,2520,2571,2570,0
        2520,2521,2572,2571,0
        2521,2522,2573,2572,0
        2522,2523,2574,2573,0
        2523,2524,2575,2574,0
        2524,2525,2576,2575,0
        2525,2526,2577,2576,0
        2526,2527,2578,2577,0
        2527,2528,2579,2578,0
        2528,2529,2580,2579,0
        2529,2530,2581,2580,0
        2530,2531,2582,2581,0
        2531,2532,2583,2582,0
        2532,2533,2584,2583,0
        2533,2534,2585,2584,0
        2534,2535,2586,2585,0
        2535,2536,2587,2586,0
        2536,2537,2588,2587,0
        2537,2538,2589,2588,0
        2538,2539,2590,2589,0
        2539,2540,2591,2590,0
        2540,2541,2592,2591,0
        2541,2542,2593,2592,0
        2542,2543,2594,2593,0
        2543,2544,2595,2594,0
        2544,2545,2596,2595,0
        2545,2546,2597,2596,0
        2546,2547,2598,2597,0

         

         

        Here is the "nlist1.dat"

         

        2,2,2552
        3,3,2553
        4,4,2554
        5,5,2555
        6,6,2556
        7,7,2557
        8,8,2558
        9,9,2559
        10,10,2560
        11,11,2561
        12,12,2562
        13,13,2563
        14,14,2564
        15,15,2565
        16,16,2566
        17,17,2567
        18,18,2568
        19,19,2569
        20,20,2570
        21,21,2571
        22,22,2572
        23,23,2573
        24,24,2574
        25,25,2575
        26,26,2576
        27,27,2577
        28,28,2578
        29,29,2579
        30,30,2580
        31,31,2581
        32,32,2582
        33,33,2583
        34,34,2584
        35,35,2585
        36,36,2586
        37,37,2587
        38,38,2588
        39,39,2589
        40,40,2590
        41,41,2591
        42,42,2592
        43,43,2593
        44,44,2594
        45,45,2595
        46,46,2596
        47,47,2597
        48,48,2598
        49,49,2599
        50,50,2600
        51,51,2601

Viewing 2 reply threads
  • You must be logged in to reply to this topic.