Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • #16
    Hello again,

    I wasn't able to get the command to work after all. When I put the two cities, for some reason it still shows three plus an extra mean and total that I don't know what is for. I have attached part of the datasetto this message, containing the information I want included in the summarize table which is the three cities, the three city variables (citygnd cityage citywealth_t3), the weight variable, and one of the variables that I want displayed as a mean (b02age_n). Can you please help me make a command that will make a table such as the one you made for the nlsw88, but with the attached dataset?

    Best,
    Maria
    Attached Files
    Last edited by Mariia Chavez; 12 Nov 2024, 04:15.

    Comment


    • #17
      Import the data to Stata and use dataex to post this. Note the -count- option of dataex if the number of observations exceeds 100.

      Code:
      help dataex

      Comment


      • #18
        Like this?

        Code:
        * Example generated by -dataex-. For more info, type help dataex
        clear
        input float(city citygnd cityage) byte b02age_n float citywealth_t3
        2 3 3 19 4
        3 5 6 35 7
        1 1 1 21 1
        3 6 6 37 7
        2 3 3 21 4
        2 3 4 36 4
        3 5 5 18 7
        3 6 6 33 7
        2 3 3 18 4
        3 5 5 24 7
        2 4 3 22 4
        2 3 3 18 4
        2 3 3 21 4
        3 6 6 34 7
        1 1 2 32 1
        2 3 4 37 4
        2 4 3 18 4
        1 2 1 28 1
        1 1 2 29 1
        3 5 6 38 7
        3 5 6 36 7
        1 1 2 39 1
        1 1 1 22 1
        1 2 2 33 1
        3 5 5 24 7
        2 3 3 19 4
        2 3 4 35 4
        2 3 3 18 4
        3 5 5 18 7
        2 3 4 30 4
        2 3 4 33 4
        1 1 1 27 1
        3 6 5 18 7
        1 1 2 33 1
        2 3 4 35 4
        1 1 1 18 1
        2 4 3 18 4
        2 3 4 32 4
        2 3 3 24 4
        2 3 3 21 4
        3 6 5 25 7
        2 4 3 18 4
        2 3 3 23 4
        2 3 4 39 4
        3 5 6 39 7
        3 5 5 25 7
        3 5 5 19 7
        2 3 4 31 4
        3 6 6 35 7
        1 1 2 39 1
        2 3 3 19 4
        3 6 5 26 7
        1 1 2 36 1
        3 6 6 35 7
        3 5 6 30 7
        2 3 3 18 4
        3 5 6 29 7
        1 1 2 33 1
        1 1 2 38 1
        3 5 6 35 7
        3 5 5 25 7
        2 3 3 21 4
        3 5 5 26 7
        1 1 1 24 1
        3 5 6 29 7
        3 6 6 38 7
        1 1 1 21 1
        2 4 3 26 4
        3 6 5 25 7
        2 3 3 25 4
        3 6 5 27 7
        3 5 6 31 7
        2 3 4 31 4
        3 6 6 37 7
        2 4 3 27 4
        1 2 1 18 1
        2 3 4 29 4
        2 3 4 39 4
        2 3 3 23 4
        2 3 3 27 4
        2 4 3 28 4
        2 3 3 26 4
        2 4 3 18 4
        2 3 4 35 4
        2 4 3 23 4
        2 3 4 39 4
        3 6 6 32 7
        3 6 6 35 7
        1 1 1 27 1
        1 2 1 19 1
        2 3 3 28 4
        2 4 3 19 4
        3 5 6 37 7
        1 2 2 39 1
        1 1 1 25 1
        2 4 3 23 4
        3 5 6 30 7
        2 3 3 18 4
        2 3 3 24 4
        1 1 2 29 1
        end
        label values city city
        label def city 1 "Serekunda", modify
        label def city 2 "Tema", modify
        label def city 3 "São Vicente", modify
        label values citygnd citygnd
        label def citygnd 1 "Serekunda Female", modify
        label def citygnd 2 "Serekunda Male", modify
        label def citygnd 3 "Tema Female", modify
        label def citygnd 4 "Tema Male", modify
        label def citygnd 5 "São Vicente Female", modify
        label def citygnd 6 "São Vicente Male", modify
        label values cityage cityage
        label def cityage 1 "Serekunda, age 18-28", modify
        label def cityage 2 "Serekunda, age 29-39", modify
        label def cityage 3 "Tema, age 18-28", modify
        label def cityage 4 "Tema, age 29-39", modify
        label def cityage 5 "São Vicente, age 18-28", modify
        label def cityage 6 "São Vicente, age 29-39", modify
        label values b02age_n missonly
        label values citywealth_t3 citywealth_t3
        label def citywealth_t3 1 "Serekunda, poorer", modify
        label def citywealth_t3 4 "Tema, poorer", modify
        label def citywealth_t3 7 "São Vicente, poorer", modify
        PS: I tried using it to run the command and it is still giving me the same error messages without any output

        Comment


        • #19
          Thanks, that will do it. Some issues with the data: only the first variable of the local 'vars' is present and the weight variable is not present. Taking these into account, you can have:

          Code:
          * Example generated by -dataex-. For more info, type help dataex
          clear
          input float(city citygnd cityage) byte b02age_n float citywealth_t3
          2 3 3 19 4
          3 5 6 35 7
          1 1 1 21 1
          3 6 6 37 7
          2 3 3 21 4
          2 3 4 36 4
          3 5 5 18 7
          3 6 6 33 7
          2 3 3 18 4
          3 5 5 24 7
          2 4 3 22 4
          2 3 3 18 4
          2 3 3 21 4
          3 6 6 34 7
          1 1 2 32 1
          2 3 4 37 4
          2 4 3 18 4
          1 2 1 28 1
          1 1 2 29 1
          3 5 6 38 7
          3 5 6 36 7
          1 1 2 39 1
          1 1 1 22 1
          1 2 2 33 1
          3 5 5 24 7
          2 3 3 19 4
          2 3 4 35 4
          2 3 3 18 4
          3 5 5 18 7
          2 3 4 30 4
          2 3 4 33 4
          1 1 1 27 1
          3 6 5 18 7
          1 1 2 33 1
          2 3 4 35 4
          1 1 1 18 1
          2 4 3 18 4
          2 3 4 32 4
          2 3 3 24 4
          2 3 3 21 4
          3 6 5 25 7
          2 4 3 18 4
          2 3 3 23 4
          2 3 4 39 4
          3 5 6 39 7
          3 5 5 25 7
          3 5 5 19 7
          2 3 4 31 4
          3 6 6 35 7
          1 1 2 39 1
          2 3 3 19 4
          3 6 5 26 7
          1 1 2 36 1
          3 6 6 35 7
          3 5 6 30 7
          2 3 3 18 4
          3 5 6 29 7
          1 1 2 33 1
          1 1 2 38 1
          3 5 6 35 7
          3 5 5 25 7
          2 3 3 21 4
          3 5 5 26 7
          1 1 1 24 1
          3 5 6 29 7
          3 6 6 38 7
          1 1 1 21 1
          2 4 3 26 4
          3 6 5 25 7
          2 3 3 25 4
          3 6 5 27 7
          3 5 6 31 7
          2 3 4 31 4
          3 6 6 37 7
          2 4 3 27 4
          1 2 1 18 1
          2 3 4 29 4
          2 3 4 39 4
          2 3 3 23 4
          2 3 3 27 4
          2 4 3 28 4
          2 3 3 26 4
          2 4 3 18 4
          2 3 4 35 4
          2 4 3 23 4
          2 3 4 39 4
          3 6 6 32 7
          3 6 6 35 7
          1 1 1 27 1
          1 2 1 19 1
          2 3 3 28 4
          2 4 3 19 4
          3 5 6 37 7
          1 2 2 39 1
          1 1 1 25 1
          2 4 3 23 4
          3 5 6 30 7
          2 3 3 18 4
          2 3 3 24 4
          1 1 2 29 1
          end
          label values city city
          label def city 1 "Serekunda", modify
          label def city 2 "Tema", modify
          label def city 3 "São Vicente", modify
          label values citygnd citygnd
          label def citygnd 1 "Serekunda Female", modify
          label def citygnd 2 "Serekunda Male", modify
          label def citygnd 3 "Tema Female", modify
          label def citygnd 4 "Tema Male", modify
          label def citygnd 5 "São Vicente Female", modify
          label def citygnd 6 "São Vicente Male", modify
          label values cityage cityage
          label def cityage 1 "Serekunda, age 18-28", modify
          label def cityage 2 "Serekunda, age 29-39", modify
          label def cityage 3 "Tema, age 18-28", modify
          label def cityage 4 "Tema, age 29-39", modify
          label def cityage 5 "São Vicente, age 18-28", modify
          label def cityage 6 "São Vicente, age 29-39", modify
          label values b02age_n missonly
          label values citywealth_t3 citywealth_t3
          label def citywealth_t3 1 "Serekunda, poorer", modify
          label def citywealth_t3 4 "Tema, poorer", modify
          label def citywealth_t3 7 "São Vicente, poorer", modify
          
          
          estimates drop _all
          local i 0
          decode city, g(City)
          replace City= strtoname(City)
          local vars "b02age_n b37sblno_n"
          foreach var1 of local vars{
              foreach var2 of varlist citygnd cityage citywealth_t3 {
                  local ++i
                  foreach city in Serekunda Tema São_Vicente{
                      qui levelsof `var2', local(levs)
                      foreach j of local levs{
                          capture noisily{
                              eststo `city'`i'_`j': estpost summarize `var1' if `j'.`var2' & City=="`city'" 
                              mat mean= e(mean)
                              mat coleq mean= "`:lab (`var2') `j''"
                              estadd mat mean= mean, replace
                          }
                      }
                  }
              }
              local opt= cond("`var1'"==word("`vars'", 1), "replace nonumb", "append eqlab(none) nonumb collab(none)")
              esttab Serekunda* Tema* São_Vicente* using testingall.csv, cells("mean(fmt(2)) count(label(N) fmt(0))") ///
              unstack `opt' mlab(none) noobs note("Extra Line") addnotes("Observations")
              estimates drop _all
          }
          Click image for larger version

Name:	Capture.PNG
Views:	1
Size:	50.0 KB
ID:	1767545

          Comment


          • #20
            Also, remove the commas from the value labels, as they cause the labels to split across multiple columns when opening the CSV file in Excel.

            Code:
            * Example generated by -dataex-. For more info, type help dataex
            clear
            input float(city citygnd cityage) byte b02age_n float citywealth_t3
            2 3 3 19 4
            3 5 6 35 7
            1 1 1 21 1
            3 6 6 37 7
            2 3 3 21 4
            2 3 4 36 4
            3 5 5 18 7
            3 6 6 33 7
            2 3 3 18 4
            3 5 5 24 7
            2 4 3 22 4
            2 3 3 18 4
            2 3 3 21 4
            3 6 6 34 7
            1 1 2 32 1
            2 3 4 37 4
            2 4 3 18 4
            1 2 1 28 1
            1 1 2 29 1
            3 5 6 38 7
            3 5 6 36 7
            1 1 2 39 1
            1 1 1 22 1
            1 2 2 33 1
            3 5 5 24 7
            2 3 3 19 4
            2 3 4 35 4
            2 3 3 18 4
            3 5 5 18 7
            2 3 4 30 4
            2 3 4 33 4
            1 1 1 27 1
            3 6 5 18 7
            1 1 2 33 1
            2 3 4 35 4
            1 1 1 18 1
            2 4 3 18 4
            2 3 4 32 4
            2 3 3 24 4
            2 3 3 21 4
            3 6 5 25 7
            2 4 3 18 4
            2 3 3 23 4
            2 3 4 39 4
            3 5 6 39 7
            3 5 5 25 7
            3 5 5 19 7
            2 3 4 31 4
            3 6 6 35 7
            1 1 2 39 1
            2 3 3 19 4
            3 6 5 26 7
            1 1 2 36 1
            3 6 6 35 7
            3 5 6 30 7
            2 3 3 18 4
            3 5 6 29 7
            1 1 2 33 1
            1 1 2 38 1
            3 5 6 35 7
            3 5 5 25 7
            2 3 3 21 4
            3 5 5 26 7
            1 1 1 24 1
            3 5 6 29 7
            3 6 6 38 7
            1 1 1 21 1
            2 4 3 26 4
            3 6 5 25 7
            2 3 3 25 4
            3 6 5 27 7
            3 5 6 31 7
            2 3 4 31 4
            3 6 6 37 7
            2 4 3 27 4
            1 2 1 18 1
            2 3 4 29 4
            2 3 4 39 4
            2 3 3 23 4
            2 3 3 27 4
            2 4 3 28 4
            2 3 3 26 4
            2 4 3 18 4
            2 3 4 35 4
            2 4 3 23 4
            2 3 4 39 4
            3 6 6 32 7
            3 6 6 35 7
            1 1 1 27 1
            1 2 1 19 1
            2 3 3 28 4
            2 4 3 19 4
            3 5 6 37 7
            1 2 2 39 1
            1 1 1 25 1
            2 4 3 23 4
            3 5 6 30 7
            2 3 3 18 4
            2 3 3 24 4
            1 1 2 29 1
            end
            label values city city
            label def city 1 "Serekunda", modify
            label def city 2 "Tema", modify
            label def city 3 "São Vicente", modify
            label values citygnd citygnd
            label def citygnd 1 "Serekunda Female", modify
            label def citygnd 2 "Serekunda Male", modify
            label def citygnd 3 "Tema Female", modify
            label def citygnd 4 "Tema Male", modify
            label def citygnd 5 "São Vicente Female", modify
            label def citygnd 6 "São Vicente Male", modify
            label values cityage cityage
            label def cityage 1 "Serekunda age 18-28", modify
            label def cityage 2 "Serekunda age 29-39", modify
            label def cityage 3 "Tema age 18-28", modify
            label def cityage 4 "Tema age 29-39", modify
            label def cityage 5 "São Vicente age 18-28", modify
            label def cityage 6 "São Vicente age 29-39", modify
            label values b02age_n missonly
            label values citywealth_t3 citywealth_t3
            label def citywealth_t3 1 "Serekunda poorer", modify
            label def citywealth_t3 4 "Tema poorer", modify
            label def citywealth_t3 7 "São Vicente poorer", modify
            
            
            estimates drop _all
            local i 0
            decode city, g(City)
            replace City= strtoname(City)
            local vars "b02age_n b37sblno_n"
            foreach var1 of local vars{
                foreach var2 of varlist citygnd cityage citywealth_t3 {
                    local ++i
                    foreach city in Serekunda Tema São_Vicente{
                        qui levelsof `var2', local(levs)
                        foreach j of local levs{
                            capture noisily{
                                eststo `city'`i'_`j': estpost summarize `var1' if `j'.`var2' & City=="`city'"
                                mat mean= e(mean)
                                mat coleq mean= "`:lab (`var2') `j''"
                                estadd mat mean= mean, replace
                            }
                        }
                    }
                }
                local opt= cond("`var1'"==word("`vars'", 1), "replace nonumb", "append eqlab(none) nonumb collab(none)")
                esttab Serekunda* Tema* São_Vicente* using testingall.csv, cells("mean(fmt(2)) count(label(N) fmt(0))") ///
                unstack `opt' mlab(none) noobs note("Extra Line") addnotes("Observations")
                estimates drop _all
            }
            Click image for larger version

Name:	Capture.PNG
Views:	1
Size:	47.3 KB
ID:	1767549

            Last edited by Andrew Musau; 13 Nov 2024, 09:36.

            Comment


            • #21
              Dear Andrew,

              Thank you so much for the tip about leaving out the commas in the labels! This was very helpful

              As for the command, I am still having some issues.
              There were some limitations in creating a dataset to share here, so that affected the dataset somewhat. For one, it said I was not allowed to include a weighting variable, which is why the weight is missing. Second, it had a cap of 100 observations for making the dataset. Thus, I also took out b37sblno_n to leave space for more of the others.

              In making the dataset, these are therefore the commands I used to export the dataset:

              keep b02age_n citygnd cityage citywealth_t3 city

              dataex _all

              That said, I see now that this still created some issues. First of all, it capped the citywealth_t3 so that it's just level 1, 4 and 7 "poorer" for all cities that are included, whereas "middle" and "wealthier" for all cities are excluded.

              And when I tried to run the following command:



              Code:
              clear
              fumi
              
              label def cityage 1 "Serekunda age 18-28", modify
              label def cityage 2 "Serekunda age 29-39", modify
              label def cityage 3 "Tema age 18-28", modify
              label def cityage 4 "Tema age 29-39", modify
              label def cityage 5 "São Vicente age 18-28", modify
              label def cityage 6 "São Vicente age 29-39", modify
              label def citywealth_t3 1 "Serekunda poorer", modify
              label def citywealth_t3 4 "Tema poorer", modify
              label def citywealth_t3 7 "São Vicente poorer", modify
              label def citywealth_t3 2 "Serekunda middle", modify
              label def citywealth_t3 5 "Tema middle", modify
              label def citywealth_t3 8 "São Vicente middle", modify
              label def citywealth_t3 3 "Serekunda wealthier", modify
              label def citywealth_t3 6 "Tema wealthier", modify
              label def citywealth_t3 9 "São Vicente wealthier", modify
              
              
              ** Command suggested by Andrew Musau 13th of Nov
              
              estimates drop _all
              local i 0
              decode city, g(City)
              replace City= strtoname(City)
              local vars "b02age_n b37sblno_n"
              foreach var1 of local vars{
                  foreach var2 of varlist citygnd cityage citywealth_t3 {
                      local ++i
                      foreach city in Serekunda Tema São_Vicente{
                          qui levelsof `var2', local(levs)
                          foreach j of local levs{
                              capture noisily{
                                  eststo `city'`i'_`j': estpost summarize `var1' if `j'.`var2' & City=="`city'" [aw = gweightcorr_n]
                                  mat mean= e(mean)
                                  mat coleq mean= "`:lab (`var2') `j''"
                                  estadd mat mean= mean, replace
                              }
                          }
                      }
                  }
                  local opt= cond("`var1'"==word("`vars'", 1), "replace nonumb", "append eqlab(none) nonumb collab(none)")
                  esttab Serekunda* Tema* São_Vicente* using testingall.csv, cells("mean(fmt(2)) count(label(N) fmt(0))") ///
                  unstack `opt' mlab(none) noobs note("Extra Line") addnotes("Observations")
                  estimates drop _all
              }
              The column are completely messed up. For instance, it gives me multiple "Tema poor" that don't even match in the value. It start ok with Serekunda Female, then Serekunda Male, Serekunda [younger], Serekunda [older], Serekunda, poorer, ... middle, ... wealthier, but then it starts with Tema poor, does all the citywealth variables, and then goes back to doing it by city. In addition to this, the b37sblno_n have extra columns that have no label. I attached the output file so you can see for yourself.

              I can try making a dataset similar to the last one with b37sblno_n instead of b02age_n, but do you have any suggestions for how to fix this?

              Best,
              ​​​​​​​Maria
              Attached Files

              Comment


              • #22
                Here is the dataset with b37sblno_n instead of b02age_n



                Code:
                * Example generated by -dataex-. For more info, type help dataex
                clear
                input float(city citygnd cityage) byte b37sblno_n float citywealth_t3
                3 5 6  7 7
                2 3 3  3 4
                1 1 1  2 1
                3 6 6  6 7
                2 3 4  5 4
                2 3 3  6 4
                3 5 5  2 7
                3 6 6  4 7
                2 3 3  8 4
                3 5 5  2 7
                2 3 3  4 4
                2 3 3  3 4
                2 4 3  2 4
                3 6 6  6 7
                1 1 2  4 1
                2 4 3  2 4
                2 3 4  2 4
                1 2 1  8 1
                1 1 2  7 1
                3 5 6  6 7
                3 5 6  7 7
                1 1 2 19 1
                1 1 1  6 1
                1 2 2 11 1
                3 5 5  4 7
                2 3 3  7 4
                2 3 4  9 4
                2 3 3  5 4
                3 5 5  6 7
                2 3 4  5 4
                2 3 4  7 4
                1 1 1  6 1
                3 6 5  8 7
                1 1 2  5 1
                2 3 4  6 4
                1 1 1  5 1
                2 4 3  7 4
                2 3 4  6 4
                2 3 3  8 4
                2 3 3  6 4
                3 6 5 10 7
                2 4 3 14 4
                2 3 3  9 4
                2 3 4  7 4
                3 5 5  3 7
                3 5 6  4 7
                3 5 5  6 7
                2 3 4  2 4
                3 6 6  5 7
                1 1 2  0 1
                2 3 3  3 4
                3 6 5  9 7
                1 1 2  8 1
                3 6 6  7 7
                3 5 6  7 7
                2 3 3  1 4
                3 5 6  6 7
                1 1 2  5 1
                1 1 2  1 1
                3 5 6  5 7
                3 5 5  4 7
                2 3 3  3 4
                3 5 5  3 7
                1 1 1  4 1
                3 5 6  8 7
                3 6 6 24 7
                1 1 1  3 1
                2 4 3  4 4
                3 6 5  3 7
                2 3 3  4 4
                3 6 5  3 7
                3 5 6  8 7
                2 3 4  4 4
                3 6 6  5 7
                2 4 3  4 4
                1 2 1  4 1
                2 4 3  3 4
                2 3 4  7 4
                2 3 3  8 4
                2 3 4  6 4
                2 3 3  5 4
                2 3 3  6 4
                2 4 3  5 4
                2 3 4  4 4
                2 4 3  6 4
                2 3 4  8 4
                3 6 6  3 7
                3 6 6  2 7
                1 1 1  7 1
                1 2 1 16 1
                2 3 3  3 4
                2 4 3  6 4
                3 5 6  7 7
                1 2 2  4 1
                1 1 1  7 1
                2 4 3 10 4
                3 5 6  3 7
                2 3 3  2 4
                2 3 3  8 4
                1 1 2  6 1
                end
                label values city city
                label def city 1 "Serekunda", modify
                label def city 2 "Tema", modify
                label def city 3 "São Vicente", modify
                label values citygnd citygnd
                label def citygnd 1 "Serekunda Female", modify
                label def citygnd 2 "Serekunda Male", modify
                label def citygnd 3 "Tema Female", modify
                label def citygnd 4 "Tema Male", modify
                label def citygnd 5 "São Vicente Female", modify
                label def citygnd 6 "São Vicente Male", modify
                label values cityage cityage
                label def cityage 1 "Serekunda, age 18-28", modify
                label def cityage 2 "Serekunda, age 29-39", modify
                label def cityage 3 "Tema, age 18-28", modify
                label def cityage 4 "Tema, age 29-39", modify
                label def cityage 5 "São Vicente, age 18-28", modify
                label def cityage 6 "São Vicente, age 29-39", modify
                label values b37sblno_n missonly
                label values citywealth_t3 citywealth_t3
                label def citywealth_t3 1 "Serekunda, poorer", modify
                label def citywealth_t3 4 "Tema, poorer", modify
                label def citywealth_t3 7 "São Vicente, poorer", modify
                Best,
                Maria

                Comment


                • #23
                  If I append the extra variable or use it by itself with the code in #20, it runs perfectly. Unless you can look at my output and specifically point out something that is incorrect, my intention here is not to write the entire code for your project, but to provide guidance on how you can progress. I believe I have done that. If you struggle with making a few adjustments, consider discussing it with a colleague who may better understand the guidance.

                  Code:
                  * Example generated by -dataex-. For more info, type help dataex
                  clear
                  input float(city citygnd cityage) byte(b02age_n b37sblno_n) float citywealth_t3 str12 City
                  3 5 6 19  7 7 "São_Vicente"
                  2 3 3 35  3 4 "Tema"        
                  1 1 1 21  2 1 "Serekunda"   
                  3 6 6 37  6 7 "São_Vicente"
                  2 3 4 21  5 4 "Tema"        
                  2 3 3 36  6 4 "Tema"        
                  3 5 5 18  2 7 "São_Vicente"
                  3 6 6 33  4 7 "São_Vicente"
                  2 3 3 18  8 4 "Tema"        
                  3 5 5 24  2 7 "São_Vicente"
                  2 3 3 22  4 4 "Tema"        
                  2 3 3 18  3 4 "Tema"        
                  2 4 3 21  2 4 "Tema"        
                  3 6 6 34  6 7 "São_Vicente"
                  1 1 2 32  4 1 "Serekunda"   
                  2 4 3 37  2 4 "Tema"        
                  2 3 4 18  2 4 "Tema"        
                  1 2 1 28  8 1 "Serekunda"   
                  1 1 2 29  7 1 "Serekunda"   
                  3 5 6 38  6 7 "São_Vicente"
                  3 5 6 36  7 7 "São_Vicente"
                  1 1 2 39 19 1 "Serekunda"   
                  1 1 1 22  6 1 "Serekunda"   
                  1 2 2 33 11 1 "Serekunda"   
                  3 5 5 24  4 7 "São_Vicente"
                  2 3 3 19  7 4 "Tema"        
                  2 3 4 35  9 4 "Tema"        
                  2 3 3 18  5 4 "Tema"        
                  3 5 5 18  6 7 "São_Vicente"
                  2 3 4 30  5 4 "Tema"        
                  2 3 4 33  7 4 "Tema"        
                  1 1 1 27  6 1 "Serekunda"   
                  3 6 5 18  8 7 "São_Vicente"
                  1 1 2 33  5 1 "Serekunda"   
                  2 3 4 35  6 4 "Tema"        
                  1 1 1 18  5 1 "Serekunda"   
                  2 4 3 18  7 4 "Tema"        
                  2 3 4 32  6 4 "Tema"        
                  2 3 3 24  8 4 "Tema"        
                  2 3 3 21  6 4 "Tema"        
                  3 6 5 25 10 7 "São_Vicente"
                  2 4 3 18 14 4 "Tema"        
                  2 3 3 23  9 4 "Tema"        
                  2 3 4 39  7 4 "Tema"        
                  3 5 5 39  3 7 "São_Vicente"
                  3 5 6 25  4 7 "São_Vicente"
                  3 5 5 19  6 7 "São_Vicente"
                  2 3 4 31  2 4 "Tema"        
                  3 6 6 35  5 7 "São_Vicente"
                  1 1 2 39  0 1 "Serekunda"   
                  2 3 3 19  3 4 "Tema"        
                  3 6 5 26  9 7 "São_Vicente"
                  1 1 2 36  8 1 "Serekunda"   
                  3 6 6 35  7 7 "São_Vicente"
                  3 5 6 30  7 7 "São_Vicente"
                  2 3 3 18  1 4 "Tema"        
                  3 5 6 29  6 7 "São_Vicente"
                  1 1 2 33  5 1 "Serekunda"   
                  1 1 2 38  1 1 "Serekunda"   
                  3 5 6 35  5 7 "São_Vicente"
                  3 5 5 25  4 7 "São_Vicente"
                  2 3 3 21  3 4 "Tema"        
                  3 5 5 26  3 7 "São_Vicente"
                  1 1 1 24  4 1 "Serekunda"   
                  3 5 6 29  8 7 "São_Vicente"
                  3 6 6 38 24 7 "São_Vicente"
                  1 1 1 21  3 1 "Serekunda"   
                  2 4 3 26  4 4 "Tema"        
                  3 6 5 25  3 7 "São_Vicente"
                  2 3 3 25  4 4 "Tema"        
                  3 6 5 27  3 7 "São_Vicente"
                  3 5 6 31  8 7 "São_Vicente"
                  2 3 4 31  4 4 "Tema"        
                  3 6 6 37  5 7 "São_Vicente"
                  2 4 3 27  4 4 "Tema"        
                  1 2 1 18  4 1 "Serekunda"   
                  2 4 3 29  3 4 "Tema"        
                  2 3 4 39  7 4 "Tema"        
                  2 3 3 23  8 4 "Tema"        
                  2 3 4 27  6 4 "Tema"        
                  2 3 3 28  5 4 "Tema"        
                  2 3 3 26  6 4 "Tema"        
                  2 4 3 18  5 4 "Tema"        
                  2 3 4 35  4 4 "Tema"        
                  2 4 3 23  6 4 "Tema"        
                  2 3 4 39  8 4 "Tema"        
                  3 6 6 32  3 7 "São_Vicente"
                  3 6 6 35  2 7 "São_Vicente"
                  1 1 1 27  7 1 "Serekunda"   
                  1 2 1 19 16 1 "Serekunda"   
                  2 3 3 28  3 4 "Tema"        
                  2 4 3 19  6 4 "Tema"        
                  3 5 6 37  7 7 "São_Vicente"
                  1 2 2 39  4 1 "Serekunda"   
                  1 1 1 25  7 1 "Serekunda"   
                  2 4 3 23 10 4 "Tema"        
                  3 5 6 30  3 7 "São_Vicente"
                  2 3 3 18  2 4 "Tema"        
                  2 3 3 24  8 4 "Tema"        
                  1 1 2 29  6 1 "Serekunda"   
                  end
                  label values city city
                  label def city 1 "Serekunda", modify
                  label def city 2 "Tema", modify
                  label def city 3 "São Vicente", modify
                  label values citygnd citygnd
                  label def citygnd 1 "Serekunda Female", modify
                  label def citygnd 2 "Serekunda Male", modify
                  label def citygnd 3 "Tema Female", modify
                  label def citygnd 4 "Tema Male", modify
                  label def citygnd 5 "São Vicente Female", modify
                  label def citygnd 6 "São Vicente Male", modify
                  label values cityage cityage
                  label def cityage 1 "Serekunda age 18-28", modify
                  label def cityage 2 "Serekunda age 29-39", modify
                  label def cityage 3 "Tema age 18-28", modify
                  label def cityage 4 "Tema age 29-39", modify
                  label def cityage 5 "São Vicente age 18-28", modify
                  label def cityage 6 "São Vicente age 29-39", modify
                  label values citywealth_t3 citywealth_t3
                  label def citywealth_t3 1 "Serekunda poorer", modify
                  label def citywealth_t3 4 "Tema poorer", modify
                  label def citywealth_t3 7 "São Vicente poorer", modify
                  
                  
                  label values city city
                  label def city 1 "Serekunda", modify
                  label def city 2 "Tema", modify
                  label def city 3 "São Vicente", modify
                  label values citygnd citygnd
                  label def citygnd 1 "Serekunda Female", modify
                  label def citygnd 2 "Serekunda Male", modify
                  label def citygnd 3 "Tema Female", modify
                  label def citygnd 4 "Tema Male", modify
                  label def citygnd 5 "São Vicente Female", modify
                  label def citygnd 6 "São Vicente Male", modify
                  label values cityage cityage
                  label def cityage 1 "Serekunda age 18-28", modify
                  label def cityage 2 "Serekunda age 29-39", modify
                  label def cityage 3 "Tema age 18-28", modify
                  label def cityage 4 "Tema age 29-39", modify
                  label def cityage 5 "São Vicente age 18-28", modify
                  label def cityage 6 "São Vicente age 29-39", modify
                  label values citywealth_t3 citywealth_t3
                  label def citywealth_t3 1 "Serekunda poorer", modify
                  label def citywealth_t3 4 "Tema poorer", modify
                  label def citywealth_t3 7 "São Vicente poorer", modify
                  
                  
                  estimates drop _all
                  local i 0
                  *decode city, g(City)
                  *replace City= strtoname(City)
                  local vars "b02age_n b37sblno_n"
                  foreach var1 of local vars{
                      foreach var2 of varlist citygnd cityage citywealth_t3 {
                          local ++i
                          foreach city in Serekunda Tema São_Vicente{
                              qui levelsof `var2', local(levs)
                              foreach j of local levs{
                                  capture noisily{
                                      eststo `city'`i'_`j': estpost summarize `var1' if `j'.`var2' & City=="`city'"
                                      mat mean= e(mean)
                                      mat coleq mean= "`:lab (`var2') `j''"
                                      estadd mat mean= mean, replace
                                  }
                              }
                          }
                      }
                      local opt= cond("`var1'"==word("`vars'", 1), "replace nonumb", "append eqlab(none) nonumb collab(none)")
                      esttab Serekunda* Tema* São_Vicente* using testingall.csv, cells("mean(fmt(2)) count(label(N) fmt(0))") ///
                      unstack `opt' mlab(none) noobs nonote
                      estimates drop _all
                  }
                  As I pointed out, you need to get rid of commas in the value labels, otherwise the column labels will be messed up as CSV files use the comma as a separator. You appear not to have done this on the basis of your most recent data example.

                  Click image for larger version

Name:	Capture.PNG
Views:	1
Size:	69.9 KB
ID:	1767796




                  Comment


                  • #24
                    Hello again,

                    It appears I sent you the wrong file above, I apologize for this, and have attached the correct one to this message.
                    To make the dataset I sent you I ran these commands:
                    keep b02age_n citywealth_t3 citygnd cityage city
                    dataex _all

                    That said, the dataset was still to big, hence not all subvalues of citywealth_t3 (specifically middle and wealthier) were included in the exported dataset.
                    When I run your suggested command for the exported dataset, I get the same table as you.
                    However if I run the following commands:

                    keep b02age_n citywealth_t3 citygnd cityage city

                    * Removing commas from value labels
                    label def cityage 1 "Serekunda age 18-28", modify
                    label def cityage 2 "Serekunda age 29-39", modify
                    label def cityage 3 "Tema age 18-28", modify
                    label def cityage 4 "Tema age 29-39", modify
                    label def cityage 5 "São Vicente age 18-28", modify
                    label def cityage 6 "São Vicente age 29-39", modify
                    label def citywealth_t3 1 "Serekunda poorer", modify
                    label def citywealth_t3 4 "Tema poorer", modify
                    label def citywealth_t3 7 "São Vicente poorer", modify
                    label def citywealth_t3 2 "Serekunda middle", modify
                    label def citywealth_t3 5 "Tema middle", modify
                    label def citywealth_t3 8 "São Vicente middle", modify
                    label def citywealth_t3 3 "Serekunda wealthier", modify
                    label def citywealth_t3 6 "Tema wealthier", modify
                    label def citywealth_t3 9 "São Vicente wealthier", modify

                    *Andrew Musau's command
                    estimates drop _all
                    local i 0
                    decode city, g(City)
                    replace City= strtoname(City)
                    local vars "b02age_n"
                    foreach var1 of local vars{
                    foreach var2 of varlist citygnd cityage citywealth_t3 {
                    local ++i
                    foreach city in Serekunda Tema São_Vicente{
                    qui levelsof `var2', local(levs)
                    foreach j of local levs{
                    capture noisily{
                    eststo `city'`i'_`j': estpost summarize `var1' if `j'.`var2' & City=="`city'"
                    mat mean= e(mean)
                    mat coleq mean= "`:lab (`var2') `j''"
                    estadd mat mean= mean, replace
                    }
                    }
                    }
                    }
                    local opt= cond("`var1'"==word("`vars'", 1), "replace nonumb", "append eqlab(none) nonumb collab(none)")
                    esttab Serekunda* Tema* São_Vicente* using testing1911.csv, cells("mean(fmt(2)) count(label(N) fmt(0))") ///
                    unstack `opt' mlab(none) noobs note("Extra Line") addnotes("Observations")
                    estimates drop _all
                    }



                    I get the table presented in the attached Excel file. I have asked several colleagues for help and tried to investigate using other tools on the internet without any luck. That said, I recognize that you would be very limited in attempting to solve or uncover the problem seeing as your formula is working for the dataset I am able to export and send to you. Thus, I want to take this moment to thank you so much for your help. It has really been invaluable. I will continue working on it, in the hopes that I find where the problem is.

                    All the best,
                    Maria

                    Attached Files

                    Comment


                    • #25
                      Again, dataex is the way to provide data examples on Statalist (refer to FAQ Advice #12 for reasons).

                      Comment


                      • #26
                        Hello again
                        I was able to make the following dataset including weights, and all the variables. With this dataset, the command you suggested (included below) make multiple columns, seemingly of the same variable means, but with different values. Are you able to see why?
                        PS: I made sure that these value labels do not contain the commas, like you suggested

                        I have already tried testing for errors in the dataset, and errors in the command, but all tests I have thought of (been suggested) to try come up saying, that everything should be working fine.
                        I have split the full dataset command as it did not fit in one message. But you should be able to just copy paste the last part after the first.

                        estimates drop _all
                        local i 0
                        decode city, g(City)
                        replace City= strtoname(City)
                        local vars "b02age_n"
                        foreach var1 of local vars{
                        foreach var2 of varlist citygnd cityage citywealth_t3 {
                        local ++i
                        foreach city in Serekunda Tema São_Vicente{
                        qui levelsof `var2', local(levs)
                        foreach j of local levs{
                        capture noisily{
                        eststo `city'`i'_`j': estpost summarize `var1' if `j'.`var2' & City=="`city'"
                        mat mean= e(mean)
                        mat coleq mean= "`:lab (`var2') `j''"
                        estadd mat mean= mean, replace
                        }
                        }
                        }
                        }
                        local opt= cond("`var1'"==word("`vars'", 1), "replace nonumb", "append eqlab(none) nonumb collab(none)")
                        esttab Serekunda* Tema* São_Vicente* using testing1911.csv, cells("mean(fmt(2)) count(label(N) fmt(0))") ///
                        unstack `opt' mlab(none) noobs note("Extra Line") addnotes("Observations")
                        estimates drop _all
                        }


                        [CODE]
                        * Example generated by -dataex-. For more info, type help dataex
                        clear
                        input byte b02age_n float(gweightcorr_n citywealth_t3 citygnd cityage city)
                        19 318.0764 4 3 3 2
                        35 87.06275 7 5 6 3
                        21 232.0856 1 1 1 1
                        37 711.2202 7 6 6 3
                        21 377.3697 4 3 3 2
                        36 380.876 4 3 4 2
                        18 87.7949 7 5 5 3
                        33 350.1273 7 6 6 3
                        18 488.92505 4 3 3 2
                        24 174.1255 7 5 5 3
                        22 163.15567 4 4 3 2
                        18 377.3697 4 3 3 2
                        21 251.5798 4 3 3 2
                        34 364.9541 7 6 6 3
                        32 232.08563 1 1 2 1
                        37 106.02544 4 3 4 2
                        18 235.16953 4 4 3 2
                        28 490.9393 1 2 1 1
                        29 77.36187 1 1 2 1
                        38 87.06275 7 5 6 3
                        36 131.09586 7 5 6 3
                        39 232.08563 1 1 2 1
                        22 232.0856 1 1 1 1
                        33 245.46967 1 2 2 1
                        24 87.06275 7 5 5 3
                        19 424.1018 4 3 3 2
                        35 212.0509 4 3 4 2
                        18 212.0509 4 3 3 2
                        18 262.1917 7 5 5 3
                        30 106.02544 4 3 4 2
                        33 341.4781 4 3 4 2
                        27 77.36188 1 1 1 1
                        18 563.541 7 6 5 3
                        33 77.36187 1 1 2 1
                        35 636.1527 4 3 4 2
                        18 232.08563 1 1 1 1
                        18 564.28125 4 4 3 2
                        32 251.5798 4 3 4 2
                        24 138.2268 4 3 3 2
                        21 265.27042 4 3 3 2
                        25 298.35553 7 6 5 3
                        18 654.4615 4 4 3 2
                        23 424.1018 4 3 3 2
                        39 106.02544 4 3 4 2
                        39 131.09586 7 5 6 3
                        25 295.47217 7 5 5 3
                        19 292.79822 7 5 5 3
                        31 212.0509 4 3 4 2
                        35 611.2264 7 6 6 3
                        39 541.5331 1 1 2 1
                        19 125.7899 4 3 3 2
                        26 474.1468 7 6 5 3
                        36 154.72374 1 1 2 1
                        35 262.59543 7 6 6 3
                        30 784.082 7 5 6 3
                        18 108.72178 4 3 3 2
                        29 92.96252 7 5 6 3
                        33 154.72375 1 1 2 1
                        38 232.08563 1 1 2 1
                        35 92.78071 7 5 6 3
                        25 357.0339 7 5 5 3
                        21 125.7899 4 3 3 2
                        26 131.09586 7 5 5 3
                        24 773.6188 1 1 1 1
                        29 87.7949 7 5 6 3
                        38 404.3657 7 6 6 3
                        21 154.72374 1 1 1 1
                        26 489.467 4 4 3 2
                        25 402.67615 7 6 5 3
                        25 106.02544 4 3 3 2
                        27 202.3674 7 6 5 3
                        31 87.7949 7 5 6 3
                        31 318.77335 4 3 4 2
                        37 194.76015 7 6 6 3
                        27 545.4112 4 4 3 2
                        18 122.73486 1 2 1 1
                        29 366.6938 4 3 4 2
                        39 122.23126 4 3 4 2
                        23 251.5798 4 3 3 2
                        27 122.23126 4 3 3 2
                        28 326.3113 4 4 3 2
                        26 212.0509 4 3 3 2
                        18 658.1558 4 4 3 2
                        35 455.3042 4 3 4 2
                        23 232.8463 4 4 3 2
                        39 251.5798 4 3 4 2
                        32 404.7348 7 6 6 3
                        35 348.4311 7 6 6 3
                        27 232.08563 1 1 1 1
                        19 981.8787 1 2 1 1
                        28 377.3697 4 3 3 2
                        19 774.2797 4 4 3 2
                        37 228.5397 7 5 6 3
                        39 245.46973 1 2 2 1
                        25 154.72374 1 1 1 1
                        23 326.3113 4 4 3 2
                        30 312.0889 7 5 6 3
                        18 106.02544 4 3 3 2
                        24 125.7899 4 3 3 2
                        29 386.8094 1 1 2 1
                        18 106.02544 4 3 3 2
                        34 125.7899 4 3 4 2
                        27 99.28418 4 3 3 2
                        26 251.5798 4 3 3 2
                        18 350.319 4 4 3 2
                        22 424.1018 4 3 3 2
                        22 503.2894 7 6 5 3
                        18 245.46973 1 2 1 1
                        25 309.4475 1 1 1 1
                        39 332.4214 7 5 6 3
                        23 212.0509 4 3 3 2
                        19 122.73483 1 2 1 1
                        32 77.36188 1 1 2 1
                        27 245.46967 1 2 1 1
                        35 377.3697 4 3 4 2
                        19 190.44777 7 5 5 3
                        26 253.9174 4 3 3 2
                        26 302.62674 4 3 3 2
                        18 326.3113 4 4 3 2
                        21 366.6938 4 3 3 2
                        34 318.0764 4 3 4 2
                        39 125.7899 4 3 4 2
                        30 77.36188 1 1 2 1
                        31 113.82605 4 3 4 2
                        23 525.4785 4 4 3 2
                        32 212.0509 4 3 4 2
                        30 154.72375 1 1 2 1
                        18 122.73486 1 2 1 1
                        37 265.27042 4 3 4 2
                        21 154.72374 1 1 1 1
                        30 167.80746 7 5 6 3
                        21 318.0764 4 3 3 2
                        22 503.1596 4 3 3 2
                        34 77.36188 1 1 2 1
                        27 387.1398 4 4 3 2
                        29 126.9587 4 3 4 2
                        22 580.7098 4 4 3 2
                        23 113.23483 4 4 3 2
                        39 106.02544 4 3 4 2
                        33 424.1018 4 3 4 2
                        32 628.9496 4 3 4 2
                        32 163.64055 7 5 6 3
                        35 77.36187 1 1 2 1
                        37 325.9908 7 6 6 3
                        18 164.53896 4 4 3 2
                        22 488.92505 4 3 3 2
                        25 469.8559 7 6 5 3
                        21 537.4653 7 5 5 3
                        30 148.88603 7 6 6 3
                        33 332.4214 7 5 6 3
                        23 201.33807 7 6 5 3
                        18 106.2578 4 3 3 2
                        28 251.5798 4 3 3 2
                        18 464.1713 1 1 1 1
                        19 326.3113 4 4 3 2
                        34 451.3719 7 6 6 3
                        21 332.4214 7 5 5 3
                        25 309.4475 1 1 1 1
                        21 350.319 4 4 3 2
                        18 154.72374 1 1 1 1
                        18 154.72375 1 1 1 1
                        19 77.36187 1 1 1 1
                        19 106.92438 4 3 3 2
                        28 350.319 4 4 3 2
                        28 245.46973 1 2 1 1
                        20 212.0509 4 3 3 2
                        37 664.8428 7 5 6 3
                        34 212.5156 4 3 4 2
                        24 383.4704 7 5 5 3
                        31 232.0856 1 1 2 1
                        32 194.76015 7 6 6 3
                        24 366.6938 4 3 3 2
                        37 309.4475 1 1 2 1
                        23 232.0856 1 1 1 1
                        32 245.46967 1 2 2 1
                        35 77.36188 1 1 2 1
                        30 356.5487 7 6 6 3
                        29 696.2569 1 1 2 1
                        32 251.6447 7 6 6 3
                        32 77.36187 1 1 2 1
                        22 620.2624 7 5 5 3
                        20 529.2686 7 6 5 3
                        30 232.99884 7 5 6 3
                        25 251.5798 4 3 3 2
                        33 386.8094 1 1 2 1
                        23 77.36188 1 1 1 1
                        25 152.78197 4 4 3 2
                        22 533.4396 7 6 5 3
                        32 525.4785 4 4 4 2
                        18 377.3697 4 3 3 2
                        22 126.1085 7 5 5 3
                        20 387.1398 4 4 3 2
                        26 77.36187 1 1 1 1
                        24 316.3625 7 5 5 3
                        28 489.467 4 4 3 2
                        29 245.46967 1 2 2 1
                        38 309.4475 1 1 2 1
                        21 77.36187 1 1 1 1
                        25 251.5798 4 3 3 2
                        37 541.5331 1 1 2 1
                        20 479.4499 7 5 5 3
                        19 154.72374 1 1 1 1
                        19 490.93945 1 2 1 1
                        22 122.73486 1 2 1 1
                        23 77.36188 1 1 1 1
                        35 470.4492 7 5 6 3
                        19 454.4835 7 5 5 3
                        25 326.3113 4 4 3 2
                        37 232.0856 1 1 2 1
                        23 106.02544 4 3 3 2
                        20 154.72374 1 1 1 1
                        28 305.6462 4 3 3 2
                        21 530.1272 4 3 3 2
                        32 386.8094 1 1 2 1
                        18 236.2875 4 3 3 2
                        18 79.90833 7 5 5 3
                        27 613.6742 1 2 1 1
                        23 251.5798 4 3 3 2
                        24 489.467 4 4 3 2
                        28 158.18123 7 5 5 3
                        27 559.3583 7 5 5 3
                        34 327.2811 7 5 6 3
                        26 489.467 4 4 3 2
                        28 628.9496 4 3 3 2
                        20 490.9393 1 2 1 1
                        27 163.64055 7 5 5 3
                        32 159.81665 7 5 6 3
                        18 368.2046 1 2 1 1
                        25 106.02544 4 3 3 2
                        26 309.8629 7 5 5 3
                        20 940.4686 4 4 3 2
                        32 113.82605 4 3 4 2
                        34 175.1595 4 4 4 2
                        31 106.02544 4 3 4 2
                        35 469.8559 7 6 6 3
                        31 465.8331 7 6 6 3
                        23 533.4396 7 6 5 3
                        33 113.82605 4 3 4 2
                        33 147.73608 7 5 6 3
                        20 700.638 4 4 3 2
                        35 174.1255 7 5 6 3
                        39 628.9496 4 3 4 2
                        30 163.15567 4 4 4 2
                        21 368.2046 1 2 1 1
                        33 809.4697 7 6 6 3
                        37 245.46967 1 2 2 1
                        28 163.15567 4 4 3 2
                        19 212.5156 4 3 3 2
                        22 363.6075 4 4 3 2
                        28 384.913 7 5 5 3
                        22 725.9514 7 5 5 3
                        28 262.1917 7 5 5 3
                        31 1369.987 4 4 4 2
                        26 181.80376 4 4 3 2
                        18 125.7899 4 3 3 2
                        18 397.1367 4 3 3 2
                        23 89.99535 7 5 5 3
                        19 239.72495 7 5 5 3
                        21 329.0779 4 4 3 2
                        22 618.895 1 1 1 1
                        25 295.47217 7 5 5 3
                        27 166.2107 7 5 5 3
                        36 125.7899 4 3 4 2
                        35 77.36188 1 1 2 1
                        38 387.1398 4 4 4 2
                        32 244.46252 4 3 4 2
                        18 106.92438 4 3 3 2
                        25 77.36188 1 1 1 1
                        21 462.3468 7 6 5 3
                        21 188.13193 7 5 5 3
                        38 125.7899 4 3 4 2
                        30 154.72375 1 1 2 1
                        22 122.73483 1 2 1 1
                        31 566.2004 7 6 6 3
                        30 912.3854 7 6 6 3
                        39 106.2578 4 3 4 2
                        22 122.23126 4 3 3 2
                        20 376.1875 4 4 3 2
                        32 159.81665 7 5 6 3
                        31 217.1304 7 5 6 3
                        26 212.0509 4 3 3 2
                        26 541.5331 1 1 1 1
                        19 154.72374 1 1 1 1
                        39 217.44356 4 3 4 2
                        25 122.73486 1 2 1 1
                        31 318.0764 4 3 4 2
                        21 613.6742 1 2 1 1
                        18 154.72375 1 1 1 1
                        18 125.7899 4 3 3 2
                        29 265.27042 4 3 4 2
                        33 175.1595 4 4 4 2
                        28 227.6521 4 3 3 2
                        30 77.36188 1 1 2 1
                        27 154.72375 1 1 1 1
                        37 154.72374 1 1 2 1
                        31 212.0509 4 3 4 2
                        25 251.5798 4 3 3 2
                        25 525.4785 4 4 3 2
                        31 244.46252 4 3 4 2
                        39 613.6743 1 2 2 1
                        27 530.1272 4 3 3 2
                        33 122.73486 1 2 2 1
                        27 613.6743 1 2 1 1
                        39 188.09375 4 4 4 2
                        19 251.5798 4 3 3 2
                        36 113.82605 4 3 4 2
                        23 77.36188 1 1 1 1
                        18 122.73486 1 2 1 1
                        28 106.02544 4 3 3 2
                        19 366.6938 4 3 3 2
                        26 212.0509 4 3 3 2
                        31 77.36188 1 1 2 1
                        20 154.72375 1 1 1 1
                        21 251.5798 4 3 3 2
                        26 204.1037 4 4 3 2
                        37 244.46252 4 3 4 2
                        19 603.7939 7 6 5 3
                        25 424.1018 4 3 3 2
                        26 251.5798 4 3 3 2
                        19 245.46973 1 2 1 1
                        19 981.0791 4 4 3 2
                        18 850.9805 1 1 1 1
                        30 313.6328 7 5 6 3
                        24 326.3113 4 4 3 2
                        31 212.0509 4 3 4 2
                        30 251.5798 4 3 4 2
                        20 163.15567 4 4 3 2
                        24 227.6521 4 3 3 2
                        27 77.36188 1 1 1 1
                        38 87.06275 7 5 6 3
                        32 77.36188 1 1 2 1
                        30 113.71352 7 5 6 3
                        32 175.06363 7 6 6 3
                        18 266.7198 7 6 5 3
                        20 77.36187 1 1 1 1
                        34 212.0509 4 3 4 2
                        38 354.4312 4 3 4 2
                        37 281.27963 7 5 6 3
                        30 425.0312 4 3 4 2
                        28 122.23126 4 3 3 2
                        38 725.9514 7 5 6 3
                        21 77.36187 1 1 1 1
                        20 443.20825 7 5 5 3
                        21 773.6187 1 1 1 1
                        33 152.8231 4 3 4 2
                        27 138.37724 7 5 5 3
                        24 252.217 7 5 5 3
                        32 350.319 4 4 4 2
                        30 77.36188 1 1 2 1
                        38 154.72374 1 1 2 1
                        29 77.36187 1 1 2 1
                        38 309.4475 1 1 2 1
                        34 264.6343 7 6 6 3
                        20 154.72375 1 1 1 1
                        18 77.36188 1 1 1 1
                        22 212.0509 4 3 3 2
                        21 631.112 7 6 5 3
                        28 92.96252 7 5 5 3
                        34 154.93146 7 5 6 3
                        28 362.9757 7 5 5 3
                        27 248.6199 7 6 5 3
                        22 125.7899 4 3 3 2
                        24 77.36187 1 1 1 1
                        21 77.36188 1 1 1 1
                        35 77.36187 1 1 2 1
                        24 541.5331 1 1 1 1
                        19 489.467 4 4 3 2
                        24 122.73486 1 2 1 1
                        36 106.92438 4 3 4 2
                        34 204.1037 4 4 4 2
                        33 154.72374 1 1 2 1
                        34 154.72375 1 1 2 1
                        25 77.36187 1 1 1 1
                        19 251.5798 4 3 3 2
                        30 111.09453 7 5 6 3
                        30 232.08563 1 1 2 1
                        29 136.5389 7 5 6 3
                        38 152.55225 7 5 6 3
                        33 245.46973 1 2 2 1
                        19 232.0856 1 1 1 1
                        30 166.2107 7 5 6 3
                        18 245.46967 1 2 1 1
                        27 302.62674 4 3 3 2
                        26 224.17076 4 3 3 2
                        35 163.15567 4 4 4 2
                        18 154.72375 1 1 1 1
                        23 613.6742 1 2 1 1
                        23 490.9393 1 2 1 1
                        26 125.7899 4 3 3 2
                        38 77.36188 1 1 2 1
                        18 172.4809 4 4 3 2
                        25 232.08563 1 1 1 1
                        23 99.28418 4 3 3 2
                        32 126.9587 4 3 4 2
                        28 118.14375 4 3 3 2
                        18 77.36188 1 1 1 1
                        37 106.02544 4 3 4 2
                        19 978.934 4 4 3 2
                        30 387.1398 4 4 4 2
                        19 489.467 4 4 3 2
                        27 212.0509 4 3 3 2
                        33 132.63521 4 3 4 2
                        21 387.1398 4 4 3 2
                        27 108.5652 7 5 5 3
                        38 140.63982 7 5 6 3
                        34 265.27042 4 3 4 2
                        23 341.4781 4 3 3 2
                        32 163.15567 4 4 4 2
                        32 193.5699 4 4 4 2
                        33 455.3042 4 3 4 2
                        31 245.46967 1 2 2 1
                        36 154.72375 1 1 2 1
                        19 212.0509 4 3 3 2
                        22 251.5798 4 3 3 2
                        19 632.7249 7 5 5 3
                        35 316.3625 7 5 6 3
                        27 113.82605 4 3 3 2
                        19 368.2045 1 2 1 1
                        33 113.82605 4 3 4 2
                        22 212.0509 4 3 3 2
                        23 613.6742 1 2 1 1
                        21 87.7949 7 5 5 3
                        34 77.36187 1 1 2 1
                        31 156.8164 7 5 6 3
                        38 77.36187 1 1 2 1
                        23 580.7098 4 4 3 2
                        33 227.6521 4 3 4 2
                        28 113.82605 4 3 3 2
                        27 77.36187 1 1 1 1
                        18 118.14375 4 3 3 2
                        32 77.36187 1 1 2 1
                        22 239.72495 7 5 5 3
                        32 189.6587 7 6 6 3
                        38 808.7314 7 6 6 3
                        38 106.2578 4 3 4 2
                        28 146.39911 7 5 5 3
                        27 222.18906 7 5 5 3
                        30 113.82605 4 3 4 2
                        30 235.16953 4 4 4 2
                        23 309.4475 1 1 1 1
                        32 774.2797 4 4 4 2
                        28 105.45416 7 5 5 3
                        27 106.2578 4 3 3 2
                        18 113.82605 4 3 3 2
                        38 265.27042 4 3 4 2
                        34 496.4208 4 3 4 2
                        39 125.7899 4 3 4 2
                        24 77.36187 1 1 1 1
                        33 111.09453 7 5 6 3
                        19 376.2639 7 5 5 3
                        23 125.7899 4 3 3 2
                        34 455.3042 4 3 4 2
                        26 99.28418 4 3 3 2
                        35 218.1874 7 5 6 3
                        24 424.1018 4 3 3 2
                        21 327.2811 7 5 5 3
                        32 77.36187 1 1 2 1
                        21 106.2578 4 3 3 2
                        29 183.36983 7 6 6 3
                        35 77.36187 1 1 2 1
                        25 490.53955 4 4 3 2
                        19 658.1558 4 4 3 2
                        30 580.7098 4 4 4 2
                        23 122.73486 1 2 1 1
                        35 266.7198 7 6 6 3
                        27 736.4091 1 2 1 1
                        29 106.2578 4 3 4 2
                        24 193.5699 4 4 3 2
                        18 77.36188 1 1 1 1
                        23 154.72374 1 1 1 1
                        39 244.46252 4 3 4 2
                        21 490.93945 1 2 1 1
                        32 156.8164 7 5 6 3
                        37 128.22958 7 6 6 3
                        20 212.0509 4 3 3 2
                        24 122.23126 4 3 3 2
                        29 245.46967 1 2 2 1
                        23 222.18906 7 5 5 3
                        28 147.16956 4 3 3 2
                        23 109.0937 7 5 5 3
                        32 106.02544 4 3 4 2
                        38 210.3707 7 6 6 3
                        34 225.68596 7 6 6 3
                        24 1316.656 4 4 3 2
                        23 99.28418 4 3 3 2
                        18 77.36187 1 1 1 1
                        25 99.28418 4 3 3 2
                        35 154.72374 1 1 2 1
                        19 232.0856 1 1 1 1
                        19 309.4475 1 1 1 1
                        18 77.36188 1 1 1 1
                        24 541.5331 1 1 1 1
                        27 212.5156 4 3 3 2
                        36 222.18906 7 5 6 3
                        29 470.33905 4 4 4 2
                        19 309.4475 1 1 1 1
                        26 224.17076 4 3 3 2
                        18 305.6462 4 3 3 2
                        21 261.1882 7 5 5 3
                        29 256.60864 7 5 6 3
                        19 92.96252 7 5 5 3
                        30 263.3847 7 5 6 3
                        29 116.49942 7 5 6 3
                        31 507.6696 7 6 6 3
                        23 613.6743 1 2 1 1
                        19 77.36187 1 1 1 1
                        23 212.0509 4 3 3 2
                        23 617.6732 7 6 5 3
                        21 210.3707 7 6 5 3
                        30 286.78183 7 5 6 3
                        18 227.6521 4 3 3 2
                        18 212.0509 4 3 3 2
                        18 154.72374 1 1 1 1
                        18 106.02544 4 3 3 2
                        19 628.9496 4 3 3 2
                        29 212.0509 4 3 4 2
                        38 350.1273 7 6 6 3
                        18 607.10223 7 6 5 3
                        26 77.36188 1 1 1 1
                        36 244.46252 4 3 4 2
                        38 251.5798 4 3 4 2
                        23 281.27963 7 5 5 3
                        27 106.02544 4 3 3 2
                        38 113.71352 7 5 6 3
                        21 163.15567 4 4 3 2
                        26 122.73486 1 2 1 1
                        27 163.5132 4 4 3 2
                        32 87.7949 7 5 6 3
                        20 152.78197 4 4 3 2
                        27 159.81665 7 5 5 3
                        25 106.02544 4 3 3 2
                        22 188.09375 4 4 3 2
                        28 859.1439 1 2 1 1
                        29 163.15567 4 4 4 2
                        32 154.72374 1 1 2 1
                        30 222.05516 7 6 6 3
                        28 244.46252 4 3 3 2
                        18 132.63521 4 3 3 2
                        27 212.0509 4 3 3 2
                        19 455.3042 4 3 3 2
                        20 232.08563 1 1 1 1
                        18 154.72374 1 1 1 1
                        24 503.1596 4 3 3 2
                        32 298.35553 7 6 6 3
                        35 151.31337 4 3 4 2
                        22 154.72375 1 1 1 1
                        18 122.73486 1 2 1 1
                        38 113.71352 7 5 6 3
                        29 700.2545 7 6 6 3
                        28 152.8231 4 3 3 2
                        20 377.3697 4 3 3 2
                        19 859.1439 1 2 1 1
                        39 251.5798 4 3 4 2
                        19 232.08563 1 1 1 1
                        29 245.46967 1 2 2 1
                        19 154.72375 1 1 1 1
                        19 470.33905 4 4 3 2
                        32 154.72374 1 1 2 1
                        38 79.90833 7 5 6 3
                        18 77.36188 1 1 1 1
                        18 245.46973 1 2 1 1
                        21 736.4091 1 2 1 1
                        27 368.2045 1 2 1 1
                        35 534.82306 7 6 6 3
                        24 258.0368 7 5 5 3
                        24 232.8463 4 4 3 2
                        30 77.36187 1 1 2 1
                        31 77.36187 1 1 2 1
                        34 122.73483 1 2 2 1
                        18 245.46967 1 2 1 1
                        18 245.46967 1 2 1 1
                        37 850.9805 1 1 2 1
                        35 154.72374 1 1 2 1
                        19 368.2046 1 2 1 1
                        20 154.72374 1 1 1 1
                        30 265.27042 4 3 4 2
                        18 188.09375 4 4 3 2
                        22 376.1875 4 4 3 2
                        27 556.68427 7 5 5 3
                        22 368.2045 1 2 1 1
                        22 318.77335 4 3 3 2
                        28 181.80376 5 4 3 2
                        22 404.7348 7 6 5 3
                        29 212.0509 4 3 4 2
                        24 182.47707 7 6 5 3
                        31 122.73486 1 2 2 1
                        30 138.2268 4 3 4 2
                        28 125.7899 4 3 3 2
                        29 154.72375 1 1 2 1
                        18 490.93945 1 2 1 1
                        39 154.72375 1 1 2 1
                        24 265.27042 4 3 3 2
                        24 154.72374 1 1 1 1
                        25 188.09375 4 4 3 2
                        29 188.73347 7 6 6 3
                        18 704.7838 7 6 5 3
                        29 967.8495 4 4 4 2
                        28 202.3674 7 6 5 3
                        23 248.6199 7 6 5 3
                        22 325.6956 7 5 5 3
                        30 154.72374 1 1 2 1
                        32 77.36187 1 1 2 1
                        27 264.6343 7 6 5 3
                        21 188.09375 4 4 3 2
                        19 1459.434 1 2 1 1
                        21 309.4475 1 1 1 1
                        29 318.0764 4 3 4 2
                        32 105.45416 7 5 6 3
                        20 309.4475 1 1 1 1
                        39 212.0509 4 3 4 2
                        24 251.5798 4 3 3 2
                        22 204.1037 5 4 3 2
                        27 232.0856 1 1 1 1
                        22 106.2578 4 3 3 2
                        19 859.1439 1 2 1 1
                        37 327.0264 4 4 4 2
                        23 106.02544 4 3 3 2
                        29 781.4738 4 4 4 2
                        32 122.73486 1 2 2 1
                        21 368.2045 1 2 1 1
                        22 318.77335 4 3 3 2
                        22 244.46252 4 3 3 2
                        39 185.5614 7 5 6 3
                        27 154.72375 1 1 1 1
                        21 154.72374 1 1 1 1
                        34 329.8222 7 5 6 3
                        28 204.1037 4 4 3 2
                        32 77.36188 1 1 2 1
                        20 122.73486 1 2 1 1
                        31 425.4165 4 4 4 2
                        18 122.73486 1 2 1 1
                        23 387.1398 4 4 3 2
                        20 298.35553 7 6 5 3
                        34 106.02544 4 3 4 2
                        26 108.72178 4 3 3 2
                        30 126.9587 4 3 4 2
                        20 227.6521 4 3 3 2
                        18 380.8955 7 5 5 3
                        21 298.35553 7 6 5 3
                        22 188.09375 4 4 3 2
                        23 212.0509 4 3 3 2
                        29 212.0509 4 3 4 2
                        18 387.1398 4 4 3 2
                        18 251.5798 4 3 3 2
                        31 188.13193 7 5 6 3
                        24 489.467 4 4 3 2
                        33 232.08563 1 1 2 1
                        30 99.28418 4 3 4 2
                        28 366.6938 4 3 3 2
                        19 350.319 4 4 3 2
                        18 368.2045 1 2 1 1
                        21 113.82605 4 3 3 2
                        18 77.36187 1 1 1 1
                        38 125.46705 7 5 6 3
                        30 318.0764 4 3 4 2
                        29 507.6696 7 6 6 3
                        31 281.27963 7 5 6 3
                        27 163.64055 7 5 5 3
                        39 87.06275 7 5 6 3
                        33 87.06275 7 5 6 3
                        20 113.82605 4 3 3 2
                        25 106.02544 4 3 3 2
                        18 125.7899 4 3 3 2
                        23 309.4475 1 1 1 1
                        38 290.75418 7 5 6 3
                        24 244.46252 5 3 3 2
                        18 106.02544 4 3 3 2
                        31 696.2568 1 1 2 1
                        35 377.3697 4 3 4 2
                        19 77.36188 1 1 1 1
                        18 232.08563 1 1 1 1
                        18 1227.3485 1 2 1 1
                        20 309.4475 1 1 1 1
                        24 781.4738 4 4 3 2
                        30 242.7358 7 5 6 3
                        36 526.7694 7 5 6 3
                        38 280.52664 7 5 6 3
                        27 244.46252 4 3 3 2
                        23 232.08563 1 1 1 1
                        18 122.73486 1 2 1 1
                        21 859.1439 1 2 1 1
                        30 305.6462 4 3 4 2
                        23 488.92505 4 3 3 2
                        36 125.7899 4 3 4 2
                        22 696.2569 1 1 1 1
                        22 489.467 4 4 3 2
                        23 318.77335 5 3 3 2
                        32 212.5156 4 3 4 2
                        29 371.1228 7 5 6 3
                        27 251.5798 4 3 3 2
                        38 318.0764 4 3 4 2
                        25 212.5156 4 3 3 2
                        38 210.90833 7 5 6 3
                        21 154.72374 1 1 1 1
                        18 613.6742 1 2 1 1
                        35 460.2013 7 6 6 3
                        22 151.31337 4 3 3 2
                        28 368.2046 1 2 1 1
                        23 368.2045 1 2 1 1
                        27 350.319 4 4 3 2
                        25 212.0509 4 3 3 2
                        33 125.7899 4 3 4 2
                        30 251.5798 4 3 4 2
                        36 164.9111 7 5 6 3
                        34 154.72374 1 1 2 1
                        34 77.36187 1 1 2 1
                        32 364.9541 7 6 6 3
                        28 386.8094 1 1 1 1
                        30 368.2045 1 2 2 1
                        31 122.73483 1 2 2 1
                        30 156.8164 7 5 6 3
                        25 1164.9407 7 6 5 3
                        37 368.2045 1 2 2 1
                        26 493.61685 4 4 3 2
                        21 113.82605 4 3 3 2
                        24 212.0509 4 3 3 2
                        24 281.27963 7 5 5 3
                        33 113.82605 4 3 4 2
                        21 152.55225 7 5 5 3
                        35 163.15567 4 4 4 2
                        35 172.4809 4 4 4 2
                        23 514.106 7 6 5 3
                        36 729.3135 7 6 6 3
                        18 503.2894 7 6 5 3
                        22 503.4224 7 5 5 3
                        19 131.09586 7 5 5 3
                        24 541.5331 1 1 1 1
                        36 320.7731 4 3 4 2
                        20 106.2578 4 3 3 2
                        32 112.08538 4 3 4 2
                        22 736.4091 1 2 1 1
                        30 318.0764 4 3 4 2
                        38 154.72375 1 1 2 1
                        28 245.46973 1 2 1 1
                        27 326.3113 4 4 3 2
                        29 736.4091 1 2 2 1
                        19 245.46973 1 2 1 1
                        26 677.0578 7 6 5 3
                        20 193.5699 4 4 3 2
                        29 313.6328 7 5 6 3
                        33 77.36188 1 1 2 1
                        37 305.6132 7 6 6 3
                        26 106.02544 5 3 3 2
                        26 309.4475 1 1 1 1
                        28 368.2045 1 2 1 1
                        37 507.66965 7 6 6 3
                        36 859.1439 2 2 2 1
                        30 185.92505 7 5 6 3
                        25 114.26985 7 5 5 3
                        30 470.33905 5 4 4 2
                        28 193.5699 5 4 3 2
                        24 612.3111 4 4 3 2
                        37 504.434 7 5 6 3
                        29 108.72178 5 3 4 2
                        22 190.44777 7 5 5 3
                        18 193.5699 4 4 3 2
                        25 163.15567 5 4 3 2
                        36 106.92438 5 3 4 2
                        32 309.4475 1 1 2 1
                        22 92.96252 7 5 5 3
                        39 175.1595 4 4 4 2
                        25 297.8525 4 3 3 2
                        19 564.28125 4 4 3 2
                        24 368.2045 1 2 1 1
                        23 140.63982 7 5 5 3
                        24 140.63982 7 5 5 3
                        31 128.22958 7 6 6 3
                        23 179.9907 7 5 5 3
                        22 139.71036 7 6 5 3
                        25 490.9393 1 2 1 1
                        18 154.72375 1 1 1 1
                        20 245.46967 1 2 1 1
                        20 266.7198 7 6 5 3
                        22 141.13477 7 5 5 3
                        33 113.71352 7 5 6 3
                        18 276.4536 4 3 3 2
                        37 356.5487 7 6 6 3
                        22 464.1713 1 1 1 1
                        20 158.18123 7 5 5 3
                        23 212.0509 5 3 3 2
                        28 1227.3484 1 2 1 1
                        21 568.5675 7 5 5 3
                        19 122.23126 5 3 3 2
                        26 524.3834 7 5 5 3
                        31 77.36187 1 1 2 1
                        19 212.0509 5 3 3 2
                        24 530.1272 4 3 3 2
                        23 245.46973 1 2 1 1
                        28 380.8955 7 5 5 3
                        18 77.36187 1 1 1 1
                        30 77.36188 1 1 2 1
                        27 322.1409 7 6 5 3
                        37 368.2045 1 2 2 1
                        19 140.88525 7 6 5 3
                        24 122.73486 1 2 1 1
                        34 460.2013 7 6 6 3
                        18 309.4475 1 1 1 1
                        18 232.0856 1 1 1 1
                        20 309.4475 1 1 1 1
                        18 77.36188 1 1 1 1
                        23 618.895 1 1 1 1
                        28 232.0856 1 1 1 1
                        18 77.36187 1 1 1 1
                        22 464.1713 1 1 1 1
                        25 122.73486 1 2 1 1
                        28 154.72374 1 1 1 1
                        27 122.23126 5 3 3 2
                        33 77.36187 1 1 2 1
                        29 113.23483 4 4 4 2
                        34 244.46252 5 3 4 2
                        36 424.1018 4 3 4 2
                        27 377.3697 4 3 3 2
                        18 154.72374 1 1 1 1
                        21 411.7822 7 6 5 3
                        18 618.895 1 1 1 1
                        26 232.08563 1 1 1 1
                        33 154.72375 1 1 2 1
                        23 342.8096 7 5 5 3
                        28 745.8596 7 6 5 3
                        29 981.8789 2 2 2 1
                        30 131.69235 7 5 6 3
                        27 154.72375 1 1 1 1
                        25 212.0509 4 3 3 2
                        22 318.0764 4 3 3 2
                        29 227.6521 4 3 4 2
                        22 245.46967 1 2 1 1
                        30 386.8094 2 1 2 1
                        18 386.8094 1 1 1 1
                        29 363.6075 5 4 4 2
                        37 154.72374 1 1 2 1
                        28 1010.9142 7 6 5 3
                        32 106.2578 5 3 4 2
                        21 193.5699 4 4 3 2
                        29 212.0509 4 3 4 2
                        30 318.0764 4 3 4 2
                        20 245.46973 1 2 1 1
                        29 390.7369 5 4 4 2
                        37 141.13477 7 5 6 3
                        29 140.26332 7 5 6 3
                        30 731.9955 7 5 6 3
                        18 244.80194 7 6 5 3
                        22 1050.957 4 4 3 2
                        29 113.82605 4 3 4 2
                        27 99.28418 5 3 3 2
                        24 154.72374 1 1 1 1
                        28 227.6521 4 3 3 2
                        37 154.72375 1 1 2 1
                        21 245.46973 1 2 1 1
                        21 309.4475 1 1 1 1
                        19 386.8094 1 1 1 1
                        22 113.82605 4 3 3 2
                        19 159.81665 7 5 5 3
                        30 497.2398 7 6 6 3
                        22 489.467 5 4 3 2
                        32 139.71036 7 6 6 3
                        19 154.93146 7 5 5 3
                        24 368.2046 1 2 1 1
                        35 232.0856 1 1 2 1
                        21 154.72375 1 1 1 1
                        18 154.72374 1 1 1 1
                        22 820.4778 7 6 5 3
                        19 455.3042 5 3 3 2
                        28 318.0764 5 3 3 2
                        22 297.8525 5 3 3 2
                        18 198.56836 5 3 3 2
                        25 212.0509 5 3 3 2
                        33 106.02544 5 3 4 2
                        31 279.42072 7 6 6 3
                        30 386.8094 1 1 2 1
                        35 154.72374 1 1 2 1
                        21 490.93945 1 2 1 1
                        39 77.36187 1 1 2 1
                        25 154.72375 1 1 1 1
                        27 113.23483 5 4 3 2
                        22 451.3719 7 6 5 3
                        39 106.2578 5 3 4 2
                        19 122.23126 5 3 3 2
                        32 677.0578 7 6 6 3
                        33 297.77206 7 6 6 3
                        18 232.0856 1 1 1 1
                        37 111.09453 7 5 6 3
                        27 154.72374 1 1 1 1
                        27 251.5798 5 3 3 2
                        22 251.5798 5 3 3 2
                        32 297.8525 4 3 4 2
                        25 302.62674 4 3 3 2
                        18 163.64055 7 5 5 3
                        19 401.4945 7 5 5 3
                        30 122.73483 1 2 2 1
                        19 185.92505 7 5 5 3
                        25 154.72375 1 1 1 1
                        38 106.02544 4 3 4 2
                        30 132.63521 4 3 4 2
                        29 318.0764 4 3 4 2
                        32 132.63521 4 3 4 2
                        22 227.6521 4 3 3 2
                        39 174.1255 7 5 6 3
                        26 175.1595 4 4 3 2
                        30 152.8231 4 3 4 2
                        34 376.1875 5 4 4 2
                        25 658.1558 5 4 3 2
                        30 89.99535 7 5 6 3
                        20 218.83698 7 6 5 3
                        23 596.71106 7 6 5 3
                        30 384.913 7 5 6 3
                        26 279.42072 7 6 5 3
                        18 163.15567 5 4 3 2
                        23 235.16953 5 4 3 2
                        32 464.1712 1 1 2 1
                        28 490.53955 5 4 3 2
                        19 448.3415 5 3 3 2
                        35 376.1875 5 4 4 2
                        29 386.8094 1 1 2 1
                        23 106.02544 5 3 3 2
                        25 77.36187 1 1 1 1
                        20 490.93945 1 2 1 1
                        39 232.0856 1 1 2 1
                        25 77.36188 1 1 1 1
                        19 212.70824 5 4 3 2
                        38 327.0264 5 4 4 2
                        25 572.9355 7 6 5 3
                        36 77.36187 1 1 2 1
                        39 154.72375 1 1 2 1
                        34 152.8231 4 3 4 2
                        29 244.46252 5 3 4 2
                        18 198.56836 5 3 3 2
                        30 232.08563 1 1 2 1
                        22 363.6075 5 4 3 2
                        24 140.63982 7 5 5 3
                        18 212.70824 5 4 3 2
                        21 122.73483 2 2 1 1
                        24 154.72375 1 1 1 1
                        30 200.74727 7 5 6 3
                        22 245.46967 1 2 1 1
                        34 376.1875 5 4 4 2
                        34 279.42072 7 6 6 3
                        20 154.72375 1 1 1 1
                        21 387.1398 5 4 3 2
                        22 335.6149 7 5 5 3
                        30 232.0856 2 1 2 1
                        38 326.3113 5 4 4 2
                        29 122.23126 5 3 4 2
                        38 122.73486 2 2 2 1
                        24 651.9816 7 6 5 3
                        27 77.36188 1 1 1 1
                        38 529.2686 7 6 6 3
                        36 147.73608 7 5 6 3
                        28 338.4464 7 6 5 3
                        35 159.81665 7 5 6 3
                        20 371.1228 7 5 5 3
                        25 154.72375 1 1 1 1
                        18 368.2046 1 2 1 1
                        21 736.4091 1 2 1 1
                        25 981.8789 1 2 1 1
                        21 232.08563 1 1 1 1
                        34 1104.6136 1 2 2 1
                        22 696.2569 1 1 1 1
                        28 263.3847 7 5 5 3
                        39 244.46252 5 3 4 2
                        19 217.1304 7 5 5 3
                        39 379.3174 7 6 6 3
                        26 654.0528 5 4 3 2
                        19 118.14375 5 3 3 2
                        38 92.78071 7 5 6 3
                        32 163.64055 7 5 6 3
                        27 147.16956 5 3 3 2
                        19 327.0264 5 4 3 2
                        27 453.9401 5 3 3 2
                        36 77.36187 2 1 2 1
                        22 138.2268 5 3 3 2
                        29 1063.2937 5 3 4 2
                        18 490.9393 1 2 1 1
                        28 244.46252 5 3 3 2
                        20 245.46967 1 2 1 1
                        21 368.2045 1 2 1 1
                        20 368.2046 1 2 1 1
                        33 262.1917 8 5 6 3
                        33 725.9514 7 5 6 3
                        35 154.72375 1 1 2 1
                        19 204.1037 5 4 3 2
                        20 386.8094 1 1 1 1
                        31 368.2046 1 2 2 1
                        18 245.46967 1 2 1 1
                        28 154.72375 1 1 1 1
                        20 490.93945 1 2 1 1
                        24 490.9393 1 2 1 1
                        23 309.4475 1 1 1 1
                        32 480.1237 7 5 6 3
                        29 245.46973 1 2 2 1
                        38 122.73483 1 2 2 1
                        39 92.96252 7 5 6 3
                        26 613.6743 1 2 1 1
                        29 172.4809 5 4 4 2
                        28 212.5156 5 3 3 2
                        32 106.02544 5 3 4 2
                        38 125.7899 5 3 4 2
                        30 234.92793 7 6 6 3
                        18 696.2569 1 1 1 1
                        18 464.1712 1 1 1 1
                        18 305.5639 5 4 3 2
                        19 154.72374 1 1 1 1
                        22 368.2045 2 2 1 1
                        35 244.80194 7 6 6 3
                        20 232.08563 1 1 1 1
                        24 92.96252 7 5 5 3
                        19 224.17076 5 3 3 2
                        28 232.0856 1 1 1 1
                        24 266.7198 7 6 5 3
                        32 245.46973 2 2 2 1
                        28 227.6521 5 3 3 2
                        22 637.9451 5 3 3 2
                        33 200.74727 7 5 6 3
                        31 178.27437 7 6 6 3
                        24 145.1457 7 5 5 3
                        20 366.6938 5 3 3 2
                        39 77.36188 1 1 2 1
                        33 154.72374 1 1 2 1
                        20 368.2045 1 2 1 1
                        21 368.2045 1 2 1 1
                        19 77.36188 1 1 1 1
                        19 236.2875 5 3 3 2
                        18 232.0856 1 1 1 1
                        33 198.56836 5 3 4 2
                        18 106.02544 5 3 3 2
                        20 564.28125 5 4 3 2
                        20 245.46967 1 2 1 1
                        20 393.2876 7 5 5 3
                        29 154.72374 1 1 2 1
                        39 245.46967 1 2 2 1
                        36 131.09586 7 5 6 3
                        22 154.72374 2 1 1 1
                        21 535.5509 7 5 5 3
                        33 87.06275 7 5 6 3
                        39 326.3113 5 4 4 2
                        36 154.72374 2 1 2 1
                        20 92.96252 7 5 5 3
                        25 99.28418 5 3 3 2
                        18 245.46967 2 2 1 1
                        27 228.5397 7 5 5 3
                        25 244.46252 5 3 3 2
                        20 366.7397 7 6 5 3
                        20 327.0264 5 4 3 2
                        24 226.46965 5 4 3 2
                        21 122.73483 1 2 1 1
                        35 235.16953 5 4 4 2
                        22 113.71352 7 5 5 3
                        22 629.9673 7 5 5 3
                        25 525.19086 7 6 5 3
                        18 580.7098 5 4 3 2
                        19 193.5699 5 4 3 2
                        38 251.5798 5 3 4 2
                        33 227.6521 5 3 4 2
                        32 106.02544 5 3 4 2
                        24 318.0764 5 3 3 2
                        27 113.82605 5 3 3 2
                        20 77.36187 2 1 1 1
                        21 245.46967 2 2 1 1
                        21 163.5132 5 4 3 2
                        38 113.82605 5 3 4 2
                        39 497.2398 7 6 6 3
                        36 151.82298 7 5 6 3
                        37 454.4835 7 5 6 3
                        23 292.79822 7 5 5 3
                        36 222.18906 7 5 6 3
                        23 251.5798 5 3 3 2
                        39 77.36188 1 1 2 1
                        33 309.4475 2 1 2 1
                        23 368.2046 2 2 1 1
                        34 251.5798 5 3 4 2
                        36 224.17076 5 3 4 2
                        29 329.0779 5 4 4 2
                        28 244.46252 5 3 3 2
                        34 106.02544 5 3 4 2
                        32 907.8802 5 3 4 2
                        23 113.82605 5 3 3 2
                        34 154.93146 7 5 6 3
                        24 327.2811 7 5 5 3
                        28 122.73486 2 2 1 1
                        38 325.9908 7 6 6 3
                        23 489.467 5 4 3 2
                        38 232.0856 2 1 2 1
                        30 276.4536 5 3 4 2
                        22 77.36187 1 1 1 1
                        21 613.6742 1 2 1 1
                        22 152.78197 5 4 3 2
                        28 154.72374 1 1 1 1
                        29 204.1037 5 4 4 2
                        21 326.3113 5 4 3 2
                        33 368.2046 2 2 2 1
                        18 154.72374 2 1 1 1
                        35 490.9393 2 2 2 1
                        32 227.42703 7 5 6 3
                        20 154.72375 2 1 1 1
                        27 733.3875 5 3 3 2
                        20 281.27963 7 5 5 3
                        33 736.4091 1 2 2 1
                        37 531.2889 5 3 4 2
                        18 390.7369 5 4 3 2
                        20 212.5156 5 3 3 2
                        18 245.46967 2 2 1 1
                        23 154.72374 1 1 1 1
                        25 525.4785 5 4 3 2
                        23 327.0264 5 4 3 2
                        28 106.02544 5 3 3 2
                        24 212.5156 5 3 3 2
                        37 106.02544 5 3 4 2
                        26 232.8463 5 4 3 2
                        33 490.53955 5 4 4 2
                        39 541.5331 2 1 2 1
                        22 736.4091 2 2 1 1
                        19 490.9393 2 2 1 1
                        24 181.80376 5 4 3 2
                        27 167.30486 5 4 3 2
                        25 490.93945 2 2 1 1
                        27 736.4091 2 2 1 1
                        22 154.72375 2 1 1 1
                        35 188.9317 7 5 6 3
                        28 320.3734 7 5 5 3
                        28 250.9341 7 5 5 3
                        20 329.0779 5 4 3 2
                        26 125.7899 5 3 3 2
                        30 232.08563 2 1 2 1
                        39 154.72375 2 1 2 1
                        24 227.6521 5 3 3 2
                        22 163.15567 5 4 3 2
                        21 1333.0535 7 6 5 3
                        34 154.93146 7 5 6 3
                        18 106.2578 5 3 3 2
                        32 425.4165 5 4 4 2
                        28 212.0509 5 3 3 2
                        24 580.7098 5 4 3 2
                        20 163.5132 5 4 3 2
                        27 244.46252 5 3 3 2
                        22 154.72374 1 1 1 1
                        34 121.3679 7 5 6 3
                        29 185.92505 7 5 6 3
                        18 87.06275 7 5 5 3
                        18 113.71352 7 5 5 3
                        22 217.1304 7 5 5 3
                        21 386.8094 1 1 1 1
                        19 458.4693 5 3 3 2
                        35 106.02544 5 3 4 2
                        37 327.0264 5 4 4 2
                        38 77.36187 2 1 2 1
                        35 77.36188 2 1 2 1
                        39 77.36188 2 1 2 1
                        21 122.73486 2 2 1 1
                        28 154.72374 2 1 1 1
                        26 154.72374 2 1 1 1
                        39 77.36188 2 1 2 1
                        37 276.4536 5 3 4 2
                        30 154.72375 2 1 2 1
                        23 859.1439 2 2 1 1
                        38 113.82605 5 3 4 2
                        35 309.4475 2 1 2 1
                        25 73.58478 5 3 3 2
                        27 106.2578 5 3 3 2
                        26 232.8463 5 4 3 2
                        35 156.8164 7 5 6 3
                        25 439.1973 7 5 5 3

                        Comment


                        • #27
                          39 106.02544 5 3 4 2
                          20 99.28418 5 3 3 2
                          30 251.5798 5 3 4 2
                          20 163.5132 5 4 3 2
                          30 106.2578 5 3 4 2
                          34 472.575 5 3 4 2
                          34 318.77335 5 3 4 2
                          25 181.80376 5 4 3 2
                          33 408.2074 5 4 4 2
                          29 490.53955 5 4 4 2
                          34 476.2922 7 6 6 3
                          26 368.2045 2 2 1 1
                          25 489.467 5 4 3 2
                          29 256.45917 7 6 6 3
                          32 281.27963 7 5 6 3
                          25 163.64055 7 5 5 3
                          20 736.4091 2 2 1 1
                          32 1104.6136 2 2 2 1
                          28 122.73486 2 2 1 1
                          19 327.0264 5 4 3 2
                          39 225.68596 8 6 6 3
                          34 185.5614 7 5 6 3
                          22 154.72375 2 1 1 1
                          35 193.5699 5 4 4 2
                          22 232.0856 2 1 1 1
                          20 850.9807 2 1 1 1
                          20 977.9725 8 6 5 3
                          18 131.69235 7 5 5 3
                          39 77.36187 2 1 2 1
                          34 252.217 8 5 6 3
                          29 736.4091 2 2 2 1
                          19 77.36187 2 1 1 1
                          29 245.46973 2 2 2 1
                          26 232.0856 2 1 1 1
                          24 112.08538 5 3 3 2
                          20 141.13477 7 5 5 3
                          28 669.1575 7 5 5 3
                          26 154.72375 2 1 1 1
                          25 122.23126 5 3 3 2
                          23 262.1917 7 5 5 3
                          38 188.13193 8 5 6 3
                          38 113.23483 5 4 4 2
                          22 752.5277 8 5 5 3
                          18 124.05248 7 5 5 3
                          30 113.23483 5 4 4 2
                          21 232.08563 2 1 1 1
                          30 309.4475 2 1 2 1
                          33 152.78197 5 4 4 2
                          28 262.1917 8 5 5 3
                          19 154.72374 2 1 1 1
                          33 773.6188 2 1 2 1
                          29 298.35553 7 6 6 3
                          20 425.0312 5 3 3 2
                          20 368.2046 2 2 1 1
                          25 99.28418 5 3 3 2
                          21 227.6521 5 3 3 2
                          27 232.0856 2 1 1 1
                          23 122.73483 2 2 1 1
                          36 205.9642 7 6 6 3
                          39 438.9745 7 5 6 3
                          18 585.2993 7 5 5 3
                          29 136.5389 8 5 6 3
                          19 794.2734 5 3 3 2
                          28 212.5156 5 3 3 2
                          19 77.36187 2 1 1 1
                          32 368.2045 2 2 2 1
                          21 212.0509 5 3 3 2
                          18 1147.0552 8 6 5 3
                          19 632.7249 7 5 5 3
                          34 163.64055 7 5 6 3
                          22 490.9393 2 2 1 1
                          24 109.0937 8 5 5 3
                          23 193.5699 5 4 3 2
                          19 1025.5973 7 6 5 3
                          32 302.62674 5 3 4 2
                          25 77.36187 2 1 1 1
                          28 193.83614 8 5 5 3
                          33 541.5331 2 1 2 1
                          31 77.36188 2 1 2 1
                          18 154.72374 2 1 1 1
                          23 77.36188 2 1 1 1
                          32 227.6521 5 3 4 2
                          23 245.46967 2 2 1 1
                          33 159.81665 8 5 6 3
                          19 531.2889 5 3 3 2
                          26 493.61685 5 4 3 2
                          28 654.4615 5 4 3 2
                          19 464.7944 7 5 5 3
                          19 335.8786 7 5 5 3
                          29 538.5643 8 6 6 3
                          29 251.5798 5 3 4 2
                          27 106.02544 5 3 3 2
                          37 507.66965 8 6 6 3
                          23 210.3707 8 6 5 3
                          29 327.2811 8 5 6 3
                          28 1160.428 2 1 1 1
                          18 248.6199 8 6 5 3
                          20 154.72375 2 1 1 1
                          35 77.36187 2 1 2 1
                          24 154.72374 2 1 1 1
                          30 232.0856 2 1 2 1
                          19 185.92505 8 5 5 3
                          26 251.5798 5 3 3 2
                          22 595.5441 7 6 5 3
                          24 210.3707 7 6 5 3
                          29 364.1037 7 5 6 3
                          24 292.79822 7 5 5 3
                          35 447.5333 7 6 6 3
                          24 490.9393 2 2 1 1
                          20 154.72375 2 1 1 1
                          30 368.2045 2 2 2 1
                          19 245.46973 2 2 1 1
                          27 541.5331 2 1 1 1
                          32 154.72374 2 1 2 1
                          24 232.0856 2 1 1 1
                          19 490.93945 2 2 1 1
                          22 245.46973 2 2 1 1
                          30 232.08563 2 1 2 1
                          39 245.46973 2 2 2 1
                          24 245.46967 2 2 1 1
                          35 77.36188 2 1 2 1
                          23 212.0509 5 3 3 2
                          19 326.3113 5 4 3 2
                          30 344.9618 5 4 4 2
                          19 106.2578 5 3 3 2
                          39 193.83614 8 5 6 3
                          18 320.3734 8 5 5 3
                          21 179.9907 8 5 5 3
                          35 105.45416 8 5 6 3
                          18 212.70824 5 4 3 2
                          25 163.5132 5 4 3 2
                          18 122.73486 2 2 1 1
                          36 145.73062 8 5 6 3
                          36 251.5798 5 3 4 2
                          30 152.8231 5 3 4 2
                          28 175.1595 5 4 3 2
                          25 318.0764 5 3 3 2
                          33 99.28418 5 3 4 2
                          32 232.08563 2 1 2 1
                          18 245.46973 2 2 1 1
                          25 232.0856 2 1 1 1
                          20 245.46973 2 2 1 1
                          19 232.0856 2 1 1 1
                          19 77.36187 2 1 1 1
                          22 77.36188 2 1 1 1
                          33 154.72375 2 1 2 1
                          34 276.4536 5 3 4 2
                          28 152.78197 5 4 3 2
                          36 451.3719 8 6 6 3
                          21 309.4475 2 1 1 1
                          21 232.0856 2 1 1 1
                          24 131.09586 8 5 5 3
                          21 154.72374 2 1 1 1
                          23 309.4475 2 1 1 1
                          18 386.8094 2 1 1 1
                          27 397.9056 5 3 3 2
                          37 297.8525 5 3 4 2
                          31 185.5614 8 5 6 3
                          19 245.46967 2 2 1 1
                          39 425.4165 5 4 4 2
                          24 235.2246 7 5 5 3
                          26 326.3113 5 4 3 2
                          38 859.1439 2 2 2 1
                          24 464.1713 2 1 1 1
                          22 113.82605 5 3 3 2
                          35 386.8094 2 1 2 1
                          36 77.36188 2 1 2 1
                          33 154.72374 2 1 2 1
                          24 309.4475 2 1 1 1
                          22 559.3583 8 5 5 3
                          20 154.72374 2 1 1 1
                          33 113.82605 5 3 4 2
                          37 204.1037 5 4 4 2
                          20 193.83614 8 5 5 3
                          22 212.0509 5 3 3 2
                          28 251.5798 5 3 3 2
                          24 125.7899 5 3 3 2
                          19 154.72374 2 1 1 1
                          39 366.6938 5 3 4 2
                          22 181.80376 5 4 3 2
                          29 105.45416 8 5 6 3
                          23 154.72375 2 1 1 1
                          26 309.4475 2 1 1 1
                          23 309.4475 2 1 1 1
                          25 736.4091 2 2 1 1
                          21 1104.6136 2 2 1 1
                          31 154.72374 2 1 2 1
                          20 167.30486 5 4 3 2
                          18 350.319 5 4 3 2
                          25 541.5331 2 1 1 1
                          31 773.6187 2 1 2 1
                          30 77.36187 2 1 2 1
                          18 679.4406 8 6 5 3
                          18 425.0312 5 3 3 2
                          28 326.3113 5 4 3 2
                          24 163.15567 5 4 3 2
                          30 387.1398 5 4 4 2
                          21 364.6568 8 6 5 3
                          23 212.5156 5 3 3 2
                          25 226.46965 5 4 3 2
                          22 1350.0833 2 2 1 1
                          28 122.23126 5 3 3 2
                          25 376.1875 5 4 3 2
                          18 500.8119 8 6 5 3
                          29 77.36188 2 1 2 1
                          38 245.46973 2 2 2 1
                          29 140.26332 8 5 6 3
                          29 245.46967 2 2 2 1
                          26 368.2045 2 2 1 1
                          19 700.638 5 4 3 2
                          33 77.36188 2 1 2 1
                          28 220.7543 5 3 3 2
                          25 175.5898 8 5 5 3
                          21 109.0937 8 5 5 3
                          27 368.2046 2 2 1 1
                          27 122.73486 2 2 1 1
                          39 666.1655 8 6 6 3
                          22 212.5156 5 3 3 2
                          36 316.3625 8 5 6 3
                          35 122.23126 5 3 4 2
                          31 377.8634 8 5 6 3
                          18 533.4396 8 6 5 3
                          27 301.12088 8 5 5 3
                          30 188.09375 5 4 4 2
                          30 232.99884 8 5 6 3
                          32 106.02544 5 3 4 2
                          37 335.6149 8 5 6 3
                          19 326.3113 5 4 3 2
                          33 141.13477 7 5 6 3
                          22 154.72374 2 1 1 1
                          27 154.72374 2 1 1 1
                          30 309.4475 2 1 2 1
                          21 122.73483 2 2 1 1
                          23 516.0736 7 5 5 3
                          26 122.73486 2 2 1 1
                          27 545.4112 5 4 3 2
                          31 387.1398 5 4 4 2
                          18 389.5203 8 6 5 3
                          28 420.79 8 5 5 3
                          24 376.1875 5 4 3 2
                          23 981.8787 2 2 1 1
                          18 309.4475 2 1 1 1
                          26 386.8094 2 1 1 1
                          22 490.9393 2 2 1 1
                          19 488.92505 5 3 3 2
                          29 122.23126 5 3 4 2
                          20 377.8634 8 5 5 3
                          35 366.6938 5 3 4 2
                          25 376.1875 5 4 3 2
                          18 154.72374 2 1 1 1
                          19 329.8222 8 5 5 3
                          19 212.0509 5 3 3 2
                          24 312.0889 8 5 5 3
                          22 106.2578 5 3 3 2
                          21 305.5639 5 4 3 2
                          32 387.1398 5 4 4 2
                          36 212.70824 5 4 4 2
                          18 164.53896 5 4 3 2
                          21 377.3697 5 3 3 2
                          21 188.09375 5 4 3 2
                          22 185.5614 7 5 5 3
                          18 126.1085 8 5 5 3
                          20 131.09586 8 5 5 3
                          22 250.40593 8 6 5 3
                          24 122.73486 2 2 1 1
                          20 276.4536 5 3 3 2
                          21 92.78071 8 5 5 3
                          24 265.27042 5 3 3 2
                          18 298.35553 8 6 5 3
                          18 244.46252 5 3 3 2
                          25 154.72374 2 1 1 1
                          20 156.8164 8 5 5 3
                          24 420.7414 8 6 5 3
                          33 228.5397 8 5 6 3
                          32 156.04445 8 5 6 3
                          18 736.4091 2 2 1 1
                          21 386.8094 2 1 1 1
                          21 618.895 2 1 1 1
                          32 386.8094 2 1 2 1
                          28 447.5333 8 6 5 3
                          30 147.16956 5 3 4 2
                          32 264.6343 8 6 6 3
                          26 154.72374 2 1 1 1
                          31 292.79822 8 5 6 3
                          25 462.3468 8 6 5 3
                          25 371.1228 8 5 5 3
                          18 122.23126 5 3 3 2
                          19 144.0594 8 5 5 3
                          29 166.2107 8 5 6 3
                          22 77.36187 2 1 1 1
                          33 156.8164 8 5 6 3
                          38 117.6123 8 5 6 3
                          21 167.80746 8 5 5 3
                          20 77.36188 3 1 1 1
                          38 106.2578 5 3 4 2
                          18 295.47217 8 5 5 3
                          18 198.56836 5 3 3 2
                          32 77.36187 2 1 2 1
                          19 651.9816 8 6 5 3
                          21 490.9393 2 2 1 1
                          34 309.4475 2 1 2 1
                          19 122.73483 2 2 1 1
                          21 92.78071 8 5 5 3
                          37 77.36187 2 1 2 1
                          21 371.1228 8 5 5 3
                          31 156.04445 8 5 6 3
                          18 77.36187 2 1 1 1
                          19 154.72375 2 1 1 1
                          23 613.6743 2 2 1 1
                          37 338.4464 8 6 6 3
                          18 182.47707 8 6 5 3
                          28 256.60864 8 5 5 3
                          22 140.88525 8 6 5 3
                          34 163.5132 5 4 4 2
                          38 410.2389 8 6 6 3
                          33 234.92793 8 6 6 3
                          33 167.80746 8 5 6 3
                          26 174.1255 8 5 5 3
                          39 292.79822 8 5 6 3
                          38 377.8634 8 5 6 3
                          18 92.78071 8 5 5 3
                          32 490.93945 2 2 2 1
                          22 1104.6136 2 2 1 1
                          21 309.4475 2 1 1 1
                          26 243.6317 8 6 5 3
                          22 154.72375 2 1 1 1
                          20 185.5614 8 5 5 3
                          18 368.2046 2 2 1 1
                          34 149.17776 8 6 6 3
                          20 108.72178 5 3 3 2
                          24 212.70824 5 4 3 2
                          22 654.0528 5 4 3 2
                          39 154.72375 2 1 2 1
                          30 140.63982 8 5 6 3
                          23 106.92438 5 3 3 2
                          27 77.36187 2 1 1 1
                          21 386.8094 2 1 1 1
                          28 143.39091 8 5 5 3
                          29 175.06363 8 6 6 3
                          34 154.72374 2 1 2 1
                          35 309.4475 2 1 2 1
                          28 126.9587 6 3 3 2
                          21 154.72374 2 1 1 1
                          37 464.1712 2 1 2 1
                          22 122.73483 2 2 1 1
                          32 189.6587 8 6 6 3
                          32 163.5132 5 4 4 2
                          22 318.77335 5 3 3 2
                          28 425.0312 5 3 3 2
                          28 658.1558 5 4 3 2
                          21 122.73483 2 2 1 1
                          23 327.2811 8 5 5 3
                          32 232.0856 2 1 2 1
                          35 169.2232 8 6 6 3
                          24 386.8094 2 1 1 1
                          18 106.92438 5 3 3 2
                          32 547.4312 8 6 6 3
                          32 185.92505 8 5 6 3
                          35 232.0856 2 1 2 1
                          20 424.1018 5 3 3 2
                          27 387.1398 5 4 3 2
                          20 163.15567 5 4 3 2
                          19 729.3135 8 6 5 3
                          38 552.9072 5 3 4 2
                          23 368.2045 2 2 1 1
                          26 377.8634 8 5 5 3
                          27 606.3608 8 6 5 3
                          27 227.42703 8 5 5 3
                          25 92.78071 8 5 5 3
                          22 87.06275 8 5 5 3
                          24 251.6447 8 6 5 3
                          36 134.36632 8 5 6 3
                          20 448.8036 8 6 5 3
                          39 333.2835 8 5 6 3
                          39 285.92233 8 5 6 3
                          23 373.8953 8 6 5 3
                          22 152.78197 5 4 3 2
                          21 77.36187 2 1 1 1
                          18 386.8094 2 1 1 1
                          22 227.6521 5 3 3 2
                          31 139.71036 8 6 6 3
                          25 212.0509 5 3 3 2
                          19 341.4781 5 3 3 2
                          24 541.5331 2 1 1 1
                          32 142.96117 8 5 6 3
                          32 140.26332 8 5 6 3
                          18 368.2046 2 2 1 1
                          25 541.5331 2 1 1 1
                          20 77.36187 2 1 1 1
                          18 106.2578 5 3 3 2
                          27 244.46252 5 3 3 2
                          37 212.5156 5 3 4 2
                          28 232.08563 2 1 1 1
                          19 152.8231 5 3 3 2
                          30 364.1037 8 5 6 3
                          26 696.2569 2 1 1 1
                          19 77.36187 2 1 1 1
                          33 154.72375 2 1 2 1
                          24 219.1052 8 6 5 3
                          36 218.1874 8 5 6 3
                          19 106.02544 5 3 3 2
                          20 773.6187 2 1 1 1
                          19 106.2578 5 3 3 2
                          33 318.0764 5 3 4 2
                          39 224.17076 5 3 4 2
                          21 654.0528 5 4 3 2
                          19 232.8463 5 4 3 2
                          29 320.7731 5 3 4 2
                          32 763.9098 5 4 4 2
                          18 212.5156 5 3 3 2
                          26 281.7705 8 6 5 3
                          34 195.36845 5 4 4 2
                          23 368.2045 2 2 1 1
                          34 244.46252 5 3 4 2
                          28 125.7899 5 3 3 2
                          24 154.72375 2 1 1 1
                          27 408.2074 5 4 3 2
                          25 326.3113 5 4 3 2
                          39 309.4475 2 1 2 1
                          24 313.6328 8 5 5 3
                          20 106.02544 5 3 3 2
                          20 244.80194 8 6 5 3
                          33 261.1882 8 5 6 3
                          25 139.71036 8 6 5 3
                          37 236.2875 5 3 4 2
                          30 106.2578 5 3 4 2
                          23 613.6743 2 2 1 1
                          18 309.4475 2 1 1 1
                          20 424.1018 5 3 3 2
                          25 154.72374 2 1 1 1
                          36 700.638 5 4 4 2
                          37 154.72375 2 1 2 1
                          22 154.72374 2 1 1 1
                          35 77.36187 2 1 2 1
                          21 154.72374 2 1 1 1
                          18 850.9807 2 1 1 1
                          20 386.8094 2 1 1 1
                          22 386.8094 2 1 1 1
                          20 541.5331 2 1 1 1
                          34 154.72375 2 1 2 1
                          23 245.46973 2 2 1 1
                          18 154.72374 2 1 1 1
                          20 232.0856 2 1 1 1
                          19 232.0856 2 1 1 1
                          22 154.72375 2 1 1 1
                          35 77.36188 2 1 2 1
                          22 341.4781 5 3 3 2
                          33 113.82605 5 3 4 2
                          30 114.26985 8 5 6 3
                          29 320.7731 5 3 4 2
                          34 212.0509 5 3 4 2
                          29 106.02544 5 3 4 2
                          38 326.3113 5 4 4 2
                          38 205.11945 8 6 6 3
                          28 276.7545 8 5 5 3
                          33 96.91807 8 5 6 3
                          22 912.3854 8 6 5 3
                          22 122.23126 5 3 3 2
                          22 322.1409 8 6 5 3
                          24 1051.8533 8 6 5 3
                          37 245.46967 2 2 2 1
                          29 122.73483 3 2 2 1
                          32 106.02544 5 3 4 2
                          36 77.36187 2 1 2 1
                          24 106.2578 5 3 3 2
                          28 318.77335 5 3 3 2
                          27 106.92438 5 3 3 2
                          18 188.09375 5 4 3 2
                          31 175.1595 5 4 4 2
                          25 163.15567 5 4 3 2
                          33 244.46252 5 3 4 2
                          25 154.72374 2 1 1 1
                          33 368.2045 2 2 2 1
                          30 77.36187 2 1 2 1
                          28 193.5699 5 4 3 2
                          27 397.1367 5 3 3 2
                          25 77.36188 2 1 1 1
                          18 490.9393 2 2 1 1
                          26 77.36188 2 1 1 1
                          27 239.72495 8 5 5 3
                          32 469.8559 8 6 6 3
                          21 425.4165 5 4 3 2
                          30 122.23126 5 3 4 2
                          34 174.1255 8 5 6 3
                          29 138.2268 5 3 4 2
                          28 327.2811 8 5 5 3
                          24 154.72374 2 1 1 1
                          37 154.72374 2 1 2 1
                          32 106.2578 5 3 4 2
                          23 470.4492 8 5 5 3
                          26 297.77206 8 6 5 3
                          22 332.4214 8 5 5 3
                          32 368.2046 2 2 2 1
                          37 232.0856 2 1 2 1
                          30 77.36188 2 1 2 1
                          25 812.5856 8 5 5 3
                          23 131.09586 8 5 5 3
                          36 149.17776 8 6 6 3
                          34 190.44777 8 5 6 3
                          33 136.5389 8 5 6 3
                          33 332.4214 8 5 6 3
                          35 469.8559 8 6 6 3
                          21 131.69235 8 5 5 3
                          25 212.0509 5 3 3 2
                          20 77.36187 2 1 1 1
                          38 309.4475 2 1 2 1
                          27 154.72374 2 1 1 1
                          30 77.36188 2 1 2 1
                          32 309.4475 2 1 2 1
                          23 122.73483 2 2 1 1
                          25 154.72374 2 1 1 1
                          31 386.8094 2 1 2 1
                          22 309.4475 2 1 1 1
                          18 154.72375 2 1 1 1
                          21 154.72374 2 1 1 1
                          24 541.5331 2 1 1 1
                          25 234.80873 8 6 5 3
                          20 490.53955 5 4 3 2
                          22 364.9541 8 6 5 3
                          32 77.36187 2 1 2 1
                          19 297.77206 8 6 5 3
                          23 245.46967 2 2 1 1
                          19 144.41632 8 6 5 3
                          30 439.1973 8 5 6 3
                          18 185.92505 8 5 5 3
                          20 333.2835 8 5 5 3
                          35 309.4475 2 1 2 1
                          32 280.52664 8 5 6 3
                          26 154.72374 2 1 1 1
                          18 106.2578 5 3 3 2
                          19 113.82605 5 3 3 2
                          28 464.1712 2 1 1 1
                          23 227.42703 8 5 5 3
                          28 122.23126 5 3 3 2
                          37 146.32483 8 5 6 3
                          31 232.99884 8 5 6 3
                          22 106.92438 6 3 3 2
                          35 387.0552 8 5 6 3
                          37 232.99884 8 5 6 3
                          21 146.32483 8 5 5 3
                          29 572.9355 8 6 6 3
                          34 182.47707 8 6 6 3
                          20 490.9216 8 5 5 3
                          25 335.6149 8 5 5 3
                          20 89.99535 8 5 5 3
                          23 114.26985 8 5 5 3
                          25 243.6317 8 6 5 3
                          33 1050.3817 8 6 6 3
                          34 257.053 8 6 6 3
                          39 106.2578 5 3 4 2
                          19 124.05248 8 5 5 3
                          18 217.44356 5 3 3 2
                          20 138.2268 6 3 3 2
                          28 154.72374 3 1 1 1
                          25 327.2811 8 5 5 3
                          31 371.1228 8 5 6 3
                          30 377.46695 8 6 6 3
                          34 188.13193 8 5 6 3
                          30 793.903 8 6 6 3
                          19 227.42703 8 5 5 3
                          24 244.80194 8 6 5 3
                          22 185.92505 8 5 5 3
                          28 222.18906 8 5 5 3
                          20 269.28214 8 6 5 3
                          27 1227.3484 2 2 1 1
                          19 122.23126 5 3 3 2
                          22 368.2045 3 2 1 1
                          30 727.215 5 4 4 2
                          31 195.36845 6 4 4 2
                          38 106.2578 5 3 4 2
                          32 77.36188 2 1 2 1
                          34 273.0778 8 5 6 3
                          21 232.08563 2 1 1 1
                          29 77.36187 2 1 2 1
                          19 251.98697 8 5 5 3
                          25 564.28125 5 4 3 2
                          39 122.23126 5 3 4 2
                          19 368.2045 2 2 1 1
                          27 222.18906 8 5 5 3
                          33 348.4311 8 6 6 3
                          19 309.4475 2 1 1 1
                          23 154.72374 2 1 1 1
                          24 232.0856 2 1 1 1
                          39 245.46973 2 2 2 1
                          18 77.36187 2 1 1 1
                          37 77.36187 2 1 2 1
                          36 122.73486 3 2 2 1
                          19 470.4492 8 5 5 3
                          18 232.08563 2 1 1 1
                          22 139.71036 8 6 5 3
                          31 352.8369 8 5 6 3
                          39 227.42703 8 5 6 3
                          37 109.0937 8 5 6 3
                          23 309.4475 2 1 1 1
                          27 747.7906 8 6 5 3
                          36 341.4781 5 3 4 2
                          38 77.36187 2 1 2 1
                          38 245.46967 2 2 2 1
                          38 122.73483 3 2 2 1
                          21 329.0779 5 4 3 2
                          32 189.6587 8 6 6 3
                          18 278.88757 8 5 5 3
                          29 379.3174 8 6 6 3
                          27 164.61543 8 5 5 3
                          24 464.1712 2 1 1 1
                          32 188.09375 5 4 4 2
                          30 490.93945 2 2 2 1
                          23 773.6187 2 1 1 1
                          37 273.0778 8 5 6 3
                          39 122.73486 2 2 2 1
                          21 124.05248 8 5 5 3
                          20 604.0142 8 6 5 3
                          23 154.72375 2 1 1 1
                          21 122.73486 2 2 1 1
                          30 276.4536 5 3 4 2
                          28 77.36188 2 1 1 1
                          23 125.7899 5 3 3 2
                          25 154.72374 3 1 1 1
                          31 387.1398 6 4 4 2
                          34 245.46967 2 2 2 1
                          27 696.2569 2 1 1 1
                          34 368.2046 2 2 2 1
                          31 368.2046 2 2 2 1
                          19 169.2232 8 6 5 3
                          24 212.70824 6 4 3 2
                          18 419.131 8 6 5 3
                          18 1222.4528 8 6 5 3
                          28 557.39075 8 6 5 3
                          20 154.72375 2 1 1 1
                          27 836.0861 8 6 5 3
                          18 525.19086 8 6 5 3
                          31 92.96252 8 5 6 3
                          22 981.8787 2 2 1 1
                          35 232.0856 2 1 2 1
                          22 126.1085 8 5 5 3
                          19 309.4475 2 1 1 1
                          18 154.72375 2 1 1 1
                          33 613.6743 2 2 2 1
                          20 154.72374 2 1 1 1
                          22 122.73486 2 2 1 1
                          27 154.72375 2 1 1 1
                          31 175.1595 5 4 4 2
                          27 552.9072 6 3 3 2
                          29 278.88757 8 5 6 3
                          34 188.13193 8 5 6 3
                          19 781.4738 5 4 3 2
                          19 244.46252 5 3 3 2
                          19 376.1875 5 4 3 2
                          22 212.0509 5 3 3 2
                          30 118.14375 6 3 4 2
                          36 185.5614 8 5 6 3
                          30 198.56836 5 3 4 2
                          20 77.36188 2 1 1 1
                          21 376.1875 5 4 3 2
                          20 327.0264 5 4 3 2
                          19 327.0264 5 4 3 2
                          35 79.90833 8 5 6 3
                          38 613.6742 3 2 2 1
                          34 362.9757 8 5 6 3
                          35 122.73483 3 2 2 1
                          35 470.4492 8 5 6 3
                          28 154.72375 2 1 1 1
                          30 309.4475 2 1 2 1
                          32 77.36187 2 1 2 1
                          26 77.36188 2 1 1 1
                          24 232.08563 2 1 1 1
                          21 928.3425 2 1 1 1
                          19 232.0856 2 1 1 1
                          22 245.46973 2 2 1 1
                          27 232.0856 2 1 1 1
                          26 464.1712 2 1 1 1
                          19 309.4475 2 1 1 1
                          22 245.46973 2 2 1 1
                          20 232.0856 2 1 1 1
                          18 613.6742 2 2 1 1
                          39 210.3707 8 6 6 3
                          23 200.74727 8 5 5 3
                          21 251.6447 8 6 5 3
                          19 181.80376 5 4 3 2
                          24 820.4778 8 6 5 3
                          21 232.08563 2 1 1 1
                          19 77.36187 2 1 1 1
                          19 232.0856 2 1 1 1
                          22 490.93945 2 2 1 1
                          39 368.2046 2 2 2 1
                          19 212.70824 6 4 3 2
                          37 404.3657 8 6 6 3
                          34 222.18906 8 5 6 3
                          34 313.6328 8 5 6 3
                          32 276.4536 5 3 4 2
                          29 309.4475 2 1 2 1
                          18 163.5132 5 4 3 2
                          19 232.8463 5 4 3 2
                          20 99.28418 5 3 3 2
                          20 472.575 5 3 3 2
                          37 595.5441 8 6 6 3
                          21 217.1304 8 5 5 3
                          30 309.4475 2 1 2 1
                          25 981.8789 2 2 1 1
                          26 77.36187 2 1 1 1
                          23 464.1712 2 1 1 1
                          21 564.28125 6 4 3 2
                          33 1104.6136 2 2 2 1
                          23 928.3424 2 1 1 1
                          31 408.2074 6 4 4 2
                          21 122.73486 2 2 1 1
                          20 613.6743 2 2 1 1
                          33 77.36188 2 1 2 1
                          26 464.1713 2 1 1 1
                          19 122.73483 2 2 1 1
                          18 232.0856 2 1 1 1
                          38 387.1398 5 4 4 2
                          19 167.9393 8 5 5 3
                          35 154.72375 2 1 2 1
                          26 318.77335 6 3 3 2
                          30 220.7543 6 3 4 2
                          32 327.2811 8 5 6 3
                          30 377.3697 5 3 4 2
                          34 227.6521 5 3 4 2
                          33 263.3847 9 5 6 3
                          20 73.58478 5 3 3 2
                          25 348.251 8 5 5 3
                          28 185.92505 8 5 5 3
                          33 122.23126 5 3 4 2
                          24 122.73483 3 2 1 1
                          35 484.5903 8 5 6 3
                          21 244.80194 8 6 5 3
                          25 227.6521 5 3 3 2
                          24 106.02544 5 3 3 2
                          20 154.93146 8 5 5 3
                          32 338.4464 8 6 6 3
                          21 244.46252 5 3 3 2
                          27 154.72375 3 1 1 1
                          22 154.72374 3 1 1 1
                          19 106.02544 6 3 3 2
                          30 245.46973 3 2 2 1
                          18 154.72374 3 1 1 1
                          25 122.23126 5 3 3 2
                          26 1063.5411 5 4 3 2
                          26 106.2578 5 3 3 2
                          20 320.7731 5 3 3 2
                          22 154.72374 3 1 1 1
                          20 232.08563 3 1 1 1
                          23 77.36187 2 1 1 1
                          19 1350.083 2 2 1 1
                          21 232.08563 2 1 1 1
                          25 386.8094 2 1 1 1
                          20 154.72374 2 1 1 1
                          18 309.4475 2 1 1 1
                          34 77.36187 2 1 2 1
                          29 232.0856 2 1 2 1
                          28 232.08563 2 1 1 1
                          34 154.72374 2 1 2 1
                          24 309.4475 2 1 1 1
                          26 77.36188 2 1 1 1
                          36 154.72374 2 1 2 1
                          26 309.4475 2 1 1 1
                          26 232.08563 2 1 1 1
                          30 154.72374 2 1 2 1
                          34 696.2569 2 1 2 1
                          22 522.6466 8 6 5 3
                          28 257.053 8 6 5 3
                          20 106.02544 5 3 3 2
                          25 320.7731 6 3 3 2
                          25 244.46252 5 3 3 2
                          29 490.9393 3 2 2 1
                          36 227.6521 6 3 4 2
                          18 122.73486 2 2 1 1
                          21 245.46973 2 2 1 1
                          20 212.5156 5 3 3 2
                          38 244.46252 5 3 4 2
                          20 376.1875 5 4 3 2
                          29 125.7899 6 3 4 2
                          24 122.23126 6 3 3 2
                          23 131.09586 8 5 5 3
                          19 79.90833 8 5 5 3
                          20 113.71352 8 5 5 3
                          29 212.5156 5 3 4 2
                          33 288.1188 8 5 6 3
                          25 654.5622 8 5 5 3
                          34 464.7944 8 5 6 3
                          37 378.3255 8 5 6 3
                          33 96.91807 8 5 6 3
                          25 679.4089 5 4 3 2
                          21 213.84875 5 3 3 2
                          20 329.0779 6 4 3 2
                          29 154.72375 2 1 2 1
                          24 122.73486 2 2 1 1
                          38 77.36187 2 1 2 1
                          20 236.2875 6 3 3 2
                          25 113.82605 6 3 3 2
                          37 503.8179 8 5 6 3
                          22 188.9317 8 5 5 3
                          27 217.44356 6 3 3 2
                          20 188.09375 5 4 3 2
                          34 167.30486 5 4 4 2
                          23 320.7731 5 3 3 2
                          18 99.28418 5 3 3 2
                          21 112.08538 5 3 3 2
                          33 92.96252 9 5 6 3
                          18 163.15567 5 4 3 2
                          20 232.0856 3 1 1 1
                          39 92.78071 8 5 6 3
                          25 131.09586 8 5 5 3
                          28 99.28418 6 3 3 2
                          22 154.72375 3 1 1 1
                          23 734.4058 8 6 5 3
                          23 488.92505 5 3 3 2
                          36 297.77206 8 6 6 3
                          33 286.46774 8 6 6 3
                          22 127.82346 8 5 5 3
                          20 205.8911 8 6 5 3
                          20 202.3674 8 6 5 3
                          25 262.59543 8 6 5 3
                          22 77.36187 2 1 1 1
                          26 232.08563 3 1 1 1
                          32 152.8231 6 3 4 2
                          37 167.9393 8 5 6 3
                          27 202.3674 8 6 5 3
                          24 386.8094 2 1 1 1
                          19 106.02544 6 3 3 2
                          32 204.1037 6 4 4 2
                          26 227.6521 5 3 3 2
                          25 154.72374 2 1 1 1
                          25 364.9541 9 6 5 3
                          18 87.7949 8 5 5 3
                          21 244.80194 8 6 5 3
                          37 132.63521 6 3 4 2
                          32 212.0509 6 3 4 2
                          39 146.32483 9 5 6 3
                          26 77.36188 2 1 1 1
                          24 366.6938 6 3 3 2
                          36 928.3424 3 1 2 1
                          19 309.4475 3 1 1 1
                          25 250.9341 8 5 5 3
                          28 218.1874 8 5 5 3
                          39 169.2232 8 6 6 3
                          18 352.8369 8 5 5 3
                          31 111.09453 8 5 6 3
                          27 140.26332 8 5 5 3
                          24 421.9194 8 5 5 3
                          22 278.34213 8 5 5 3
                          22 393.2876 8 5 5 3
                          33 117.6123 8 5 6 3
                          32 140.63982 8 5 6 3
                          35 262.1917 8 5 6 3
                          28 106.02544 6 3 3 2
                          27 227.42703 8 5 5 3
                          21 496.4208 5 3 3 2
                          30 114.26985 8 5 6 3
                          21 114.26985 8 5 5 3
                          20 212.70824 6 4 3 2
                          21 464.1713 2 1 1 1
                          20 736.4091 3 2 1 1
                          22 386.8094 2 1 1 1
                          18 232.0856 3 1 1 1
                          20 525.4785 6 4 3 2
                          25 464.1712 3 1 1 1
                          21 154.72375 3 1 1 1
                          22 752.375 6 4 3 2
                          26 736.4091 3 2 1 1
                          33 111.09453 8 5 6 3
                          23 272.74356 8 5 5 3
                          36 77.36187 3 1 2 1
                          35 212.0509 6 3 4 2
                          22 384.913 8 5 5 3
                          18 696.2569 3 1 1 1
                          26 245.46967 3 2 1 1
                          18 386.8094 3 1 1 1
                          29 314.9837 8 5 6 3
                          25 228.5397 8 5 5 3
                          28 269.28214 8 6 5 3
                          18 368.2046 3 2 1 1
                          29 850.9805 3 1 2 1
                          33 613.6742 3 2 2 1
                          26 1104.6136 3 2 1 1
                          31 154.72374 3 1 2 1
                          20 212.5156 6 3 3 2
                          20 232.08563 3 1 1 1
                          39 613.6742 3 2 2 1
                          39 77.36187 3 1 2 1
                          27 148.88603 8 6 5 3
                          31 156.8164 8 5 6 3
                          23 234.80873 9 6 5 3
                          25 138.2268 6 3 3 2
                          25 188.09375 6 4 3 2
                          20 386.8094 3 1 1 1
                          37 309.4475 3 1 2 1
                          24 981.8787 3 2 1 1
                          18 226.4802 8 6 5 3
                          39 188.13193 8 5 6 3

                          Comment


                          • #28


                            29 218.1874 8 5 6 3
                            31 154.93146 8 5 6 3
                            36 140.26332 8 5 6 3
                            36 89.99535 8 5 6 3
                            31 210.3707 8 6 6 3
                            37 380.8955 8 5 6 3
                            20 431.2376 8 6 5 3
                            29 182.47707 9 6 6 3
                            30 541.5331 3 1 2 1
                            33 736.4091 3 2 2 1
                            19 77.36188 3 1 1 1
                            38 194.76015 9 6 6 3
                            31 607.29193 8 5 6 3
                            35 159.81665 8 5 6 3
                            23 541.5331 3 1 1 1
                            24 424.1018 6 3 3 2
                            36 154.72374 3 1 2 1
                            25 419.131 8 6 5 3
                            21 303.64597 8 5 5 3
                            24 350.1273 8 6 5 3
                            21 763.6558 8 5 5 3
                            30 123.33624 8 5 6 3
                            20 232.0856 3 1 1 1
                            19 464.1712 3 1 1 1
                            25 309.4475 3 1 1 1
                            24 182.47707 8 6 5 3
                            22 386.8094 3 1 1 1
                            38 134.36632 8 5 6 3
                            26 1001.6237 8 6 5 3
                            39 916.8396 9 6 6 3
                            35 232.0856 3 1 2 1
                            38 386.8094 3 1 2 1
                            19 154.72374 3 1 1 1
                            18 232.08563 3 1 1 1
                            18 112.08538 6 3 3 2
                            31 489.467 6 4 4 2
                            20 126.9587 6 3 3 2
                            36 297.8525 6 3 4 2
                            19 1104.6136 3 2 1 1
                            19 232.08563 3 1 1 1
                            32 77.36187 3 1 2 1
                            33 77.36187 3 1 2 1
                            39 245.46967 3 2 2 1
                            39 154.72374 3 1 2 1
                            35 77.36188 3 1 2 1
                            19 77.36188 3 1 1 1
                            18 154.72375 3 1 1 1
                            18 77.36188 3 1 1 1
                            26 77.36187 3 1 1 1
                            22 77.36187 3 1 1 1
                            18 309.4475 3 1 1 1
                            21 368.2045 3 2 1 1
                            32 77.36188 3 1 2 1
                            20 493.61685 6 4 3 2
                            31 211.3279 9 6 6 3
                            27 368.2045 3 2 1 1
                            38 613.6742 3 2 2 1
                            34 529.2686 8 6 6 3
                            38 380.8955 8 5 6 3
                            28 472.575 6 3 3 2
                            35 77.36187 3 1 2 1
                            27 158.18123 8 5 5 3
                            38 283.10025 9 6 6 3
                            23 404.7348 8 6 5 3
                            19 420.7414 8 6 5 3
                            22 322.1409 8 6 5 3
                            33 371.8501 8 5 6 3
                            21 281.27963 8 5 5 3
                            22 281.27963 8 5 5 3
                            27 483.2114 8 6 5 3
                            30 590.71875 6 3 4 2
                            27 488.92505 6 3 3 2
                            30 327.0264 6 4 4 2
                            21 817.566 6 4 3 2
                            19 336.2561 6 3 3 2
                            18 545.4112 6 4 3 2
                            22 318.77335 6 3 3 2
                            29 154.72374 3 1 2 1
                            26 541.5331 3 1 1 1
                            19 108.72178 6 3 3 2
                            35 320.7731 6 3 4 2
                            35 454.4835 8 5 6 3
                            20 366.6938 6 3 3 2
                            21 79.90833 8 5 5 3
                            28 464.1713 3 1 1 1
                            38 77.36187 3 1 2 1
                            23 232.08563 3 1 1 1
                            23 309.4475 3 1 1 1
                            21 464.1713 3 1 1 1
                            24 773.6188 3 1 1 1
                            24 305.6462 6 3 3 2
                            38 146.39911 9 5 6 3
                            27 174.1255 8 5 5 3
                            25 195.36845 6 4 3 2
                            25 357.0339 8 5 5 3
                            21 352.8369 8 5 5 3
                            24 434.8871 6 3 3 2
                            35 595.5441 8 6 6 3
                            29 77.36188 3 1 2 1
                            31 490.93945 3 2 2 1
                            22 464.1712 3 1 1 1
                            22 232.0856 3 1 1 1
                            31 309.4475 3 1 2 1
                            28 154.72374 3 1 1 1
                            34 245.46967 3 2 2 1
                            35 154.72374 3 1 2 1
                            19 449.9767 8 5 5 3
                            37 245.46973 3 2 2 1
                            27 122.23126 6 3 3 2
                            39 99.28418 6 3 4 2
                            28 210.3707 9 6 5 3
                            32 301.89694 9 6 6 3
                            29 582.47034 9 6 6 3
                            32 327.0264 6 4 4 2
                            36 154.72375 3 1 2 1
                            31 139.71036 8 6 6 3
                            37 160.1867 8 5 6 3
                            22 327.2811 8 5 5 3
                            23 326.3113 6 4 3 2
                            25 175.1595 6 4 3 2
                            35 122.23126 6 3 4 2
                            22 517.4427 6 4 3 2
                            23 363.6075 6 4 3 2
                            28 940.4686 6 4 3 2
                            19 163.64055 9 5 5 3
                            34 696.2568 3 1 2 1
                            32 618.895 3 1 2 1
                            36 122.73486 3 2 2 1
                            21 77.36187 3 1 1 1
                            27 154.72374 3 1 1 1
                            19 154.72375 3 1 1 1
                            25 163.15567 6 4 3 2
                            22 397.1367 6 3 3 2
                            18 336.2561 6 3 3 2
                            35 106.2578 6 3 4 2
                            19 564.28125 6 4 3 2
                            24 163.5132 6 4 3 2
                            24 226.46965 6 4 3 2
                            24 318.77335 6 3 3 2
                            20 152.78197 6 4 3 2
                            22 195.36845 6 4 3 2
                            28 414.6804 6 3 3 2
                            18 163.5132 6 4 3 2
                            30 181.80376 6 4 4 2
                            22 77.36188 3 1 1 1
                            20 490.93945 3 2 1 1
                            22 118.14375 6 3 3 2
                            20 118.14375 6 3 3 2
                            30 106.2578 6 3 4 2
                            18 193.5699 6 4 3 2
                            37 318.0764 6 3 4 2
                            20 329.0779 6 4 3 2
                            21 490.9393 3 2 1 1
                            25 611.1279 6 4 3 2
                            38 327.0264 6 4 4 2
                            20 489.6039 8 6 5 3
                            37 125.46705 8 5 6 3
                            22 185.92505 8 5 5 3
                            28 386.8094 3 1 1 1
                            22 490.9393 3 2 1 1
                            18 245.46967 3 2 1 1
                            26 1104.6136 3 2 1 1
                            18 490.93945 3 2 1 1
                            32 232.08563 3 1 2 1
                            23 212.6484 6 3 3 2
                            18 164.53896 6 4 3 2
                            18 105.45416 9 5 5 3
                            39 125.7899 6 3 4 2
                            24 386.8094 3 1 1 1
                            18 251.6447 8 6 5 3
                            22 229.41103 8 6 5 3
                            26 332.4214 8 5 5 3
                            39 87.06275 8 5 6 3
                            21 152.55225 8 5 5 3
                            19 606.3608 8 6 5 3
                            22 288.83264 8 6 5 3
                            26 215.6188 8 6 5 3
                            33 175.5898 8 5 6 3
                            39 316.3625 8 5 6 3
                            19 348.4311 8 6 5 3
                            31 613.6742 3 2 2 1
                            27 364.6568 8 6 5 3
                            26 163.64055 8 5 5 3
                            30 366.7397 8 6 6 3
                            25 425.4165 6 4 3 2
                            21 160.1867 8 5 5 3
                            22 431.2376 8 6 5 3
                            35 248.10497 8 5 6 3
                            18 188.9317 8 5 5 3
                            18 327.0264 6 4 3 2
                            27 736.4091 3 2 1 1
                            24 320.7731 6 3 3 2
                            39 188.09375 6 4 4 2
                            24 154.72375 3 1 1 1
                            21 329.0779 6 4 3 2
                            18 368.2045 3 2 1 1
                            19 736.4091 3 2 1 1
                            25 613.6742 3 2 1 1
                            29 128.30432 9 5 6 3
                            19 77.36187 3 1 1 1
                            22 154.72374 3 1 1 1
                            30 139.71036 8 6 6 3
                            33 529.2686 9 6 6 3
                            25 781.4738 6 4 3 2
                            30 122.23126 6 3 4 2
                            22 292.79822 8 5 5 3
                            25 122.23126 6 3 3 2
                            19 376.1875 6 4 3 2
                            24 212.0509 6 3 3 2
                            33 245.46967 3 2 2 1
                            25 368.2046 3 2 1 1
                            30 77.36187 3 1 2 1
                            33 77.36187 3 1 2 1
                            38 118.14375 6 3 4 2
                            31 329.0779 6 4 4 2
                            23 366.6938 6 3 3 2
                            20 106.92438 6 3 3 2
                            24 213.84875 6 3 3 2
                            24 126.9587 6 3 3 2
                            34 224.17076 6 3 4 2
                            26 195.36845 6 4 3 2
                            38 235.16953 6 4 4 2
                            26 736.4091 3 2 1 1
                            18 232.08563 3 1 1 1
                            18 116.49942 9 5 5 3
                            34 154.72374 3 1 2 1
                            21 163.5132 6 4 3 2
                            38 232.8463 6 4 4 2
                            27 136.5389 9 5 5 3
                            25 268.73264 9 5 5 3
                            35 631.112 9 6 6 3
                            20 207.03696 9 6 5 3
                            19 217.1304 9 5 5 3
                            28 155.52527 9 6 5 3
                            20 218.1874 8 5 5 3
                            25 106.2578 6 3 3 2
                            36 77.36188 3 1 2 1
                            25 272.74356 8 5 5 3
                            35 77.36187 3 1 2 1
                            20 181.80376 6 4 3 2
                            33 232.99884 9 5 6 3
                            24 424.1018 6 3 3 2
                            21 859.1439 3 2 1 1
                            37 232.0856 3 1 2 1
                            29 233.8552 9 6 6 3
                            23 224.17076 6 3 3 2
                            24 240.06184 9 5 5 3
                            18 106.2578 6 3 3 2
                            19 386.8094 3 1 1 1
                            26 232.08563 3 1 1 1
                            34 490.9393 3 2 2 1
                            22 245.46967 3 2 1 1
                            23 111.09453 9 5 5 3
                            24 154.72374 3 1 1 1
                            29 245.46967 3 2 2 1
                            31 77.36187 3 1 2 1
                            19 154.72375 3 1 1 1
                            21 77.36188 3 1 1 1
                            22 245.46967 3 2 1 1
                            23 111.09453 9 5 5 3
                            30 185.5614 9 5 6 3
                            23 154.72374 3 1 1 1
                            33 154.72375 3 1 2 1
                            23 386.8094 3 1 1 1
                            21 248.6199 9 6 5 3
                            30 309.4475 3 1 2 1
                            23 368.2045 3 2 1 1
                            30 154.72374 3 1 2 1
                            35 1073.803 9 6 6 3
                            29 182.47707 9 6 6 3
                            35 736.4091 3 2 2 1
                            34 232.08563 3 1 2 1
                            34 77.36188 3 1 2 1
                            33 1369.987 6 4 4 2
                            20 77.36187 3 1 1 1
                            20 230.10065 9 6 5 3
                            37 354.4312 6 3 4 2
                            21 99.28418 6 3 3 2
                            36 752.375 6 4 4 2
                            34 146.39911 9 5 6 3
                            32 122.73483 3 2 2 1
                            20 386.8094 3 1 1 1
                            33 77.36188 3 1 2 1
                            20 454.8541 8 5 5 3
                            28 288.83264 8 6 5 3
                            35 149.17776 9 6 6 3
                            23 464.1713 3 1 1 1
                            18 232.0856 3 1 1 1
                            22 154.72375 3 1 1 1
                            27 981.8787 3 2 1 1
                            32 134.36632 9 5 6 3
                            39 113.71352 9 5 6 3
                            29 883.0173 6 3 4 2
                            18 244.46252 6 3 3 2
                            36 245.46967 3 2 2 1
                            28 154.72375 3 1 1 1
                            26 245.46967 3 2 1 1
                            33 613.6742 3 2 2 1
                            20 446.65805 9 6 5 3
                            37 704.7838 9 6 6 3
                            28 140.88525 9 6 5 3
                            32 411.7822 9 6 6 3
                            26 464.7944 9 5 5 3
                            24 122.23126 6 3 3 2
                            22 448.8036 9 6 5 3
                            39 197.91875 9 6 6 3
                            19 178.51697 9 5 5 3
                            25 139.71036 9 6 5 3
                            22 529.2686 9 6 5 3
                            19 736.4091 3 2 1 1
                            25 122.73483 3 2 1 1
                            32 611.2264 9 6 6 3
                            28 111.09453 9 5 5 3
                            35 364.6568 9 6 6 3
                            18 232.0856 3 1 1 1
                            39 245.46973 3 2 2 1
                            25 122.23126 6 3 3 2
                            20 269.28214 9 6 5 3
                            24 218.1874 9 5 5 3
                            26 166.2107 9 5 5 3
                            33 447.5333 9 6 6 3
                            19 151.82298 8 5 5 3
                            39 215.6188 9 6 6 3
                            19 535.5509 9 5 5 3
                            18 327.2811 9 5 5 3
                            20 352.8369 9 5 5 3
                            18 472.575 6 3 3 2
                            35 122.23126 6 3 4 2
                            22 318.77335 6 3 3 2
                            22 363.6075 6 4 3 2
                            34 105.45416 9 5 6 3
                            33 198.56836 6 3 4 2
                            24 613.6742 3 2 1 1
                            20 77.36187 3 1 1 1
                            30 227.42703 9 5 6 3
                            29 326.3113 6 4 4 2
                            29 390.7369 6 4 4 2
                            18 154.72374 3 1 1 1
                            20 344.9618 6 4 3 2
                            21 253.9174 6 3 3 2
                            20 213.84875 6 3 3 2
                            24 276.4536 6 3 3 2
                            18 276.4536 6 3 3 2
                            31 235.16953 6 4 4 2
                            24 112.08538 6 3 3 2
                            19 689.9235 6 4 3 2
                            25 236.2875 6 3 3 2
                            23 329.0779 6 4 3 2
                            29 212.5156 6 3 4 2
                            24 163.5132 6 4 3 2
                            29 283.10025 9 6 6 3
                            25 1333.0535 9 5 5 3
                            22 188.09375 6 4 3 2
                            34 368.2045 3 2 2 1
                            37 77.36188 3 1 2 1
                            21 493.61685 6 4 3 2
                            23 318.77335 6 3 3 2
                            20 163.5132 6 4 3 2
                            20 658.1558 6 4 3 2
                            20 366.6938 6 3 3 2
                            31 327.0264 6 4 4 2
                            20 112.08538 6 3 3 2
                            36 469.8559 9 6 6 3
                            18 225.68596 9 6 5 3
                            18 230.10065 9 6 5 3
                            38 179.9907 9 5 6 3
                            19 335.8786 9 5 5 3
                            26 525.1908 9 6 5 3
                            21 212.70824 6 4 3 2
                            20 224.17076 6 3 3 2
                            28 305.6462 6 3 3 2
                            32 127.82346 9 5 6 3
                            22 386.8094 3 1 1 1
                            22 344.9618 6 4 3 2
                            23 122.73483 3 2 1 1
                            39 327.0264 6 4 4 2
                            19 232.08563 3 1 1 1
                            20 232.0856 3 1 1 1
                            25 386.8094 3 1 1 1
                            27 77.36188 3 1 1 1
                            34 245.46967 3 2 2 1
                            28 117.6123 9 5 5 3
                            32 77.36188 3 1 2 1
                            35 106.92438 6 3 4 2
                            31 175.06363 9 6 6 3
                            31 105.45416 9 5 6 3
                            31 193.5699 6 4 4 2
                            32 342.8096 9 5 6 3
                            23 559.3583 9 5 5 3
                            21 464.1712 3 1 1 1
                            23 541.5331 3 1 1 1
                            30 490.53955 6 4 4 2
                            21 251.5798 6 3 3 2
                            31 245.46967 3 2 2 1
                            39 106.92438 6 3 4 2
                            28 185.5614 9 5 5 3
                            25 859.1439 3 2 1 1
                            33 154.72374 3 1 2 1
                            20 122.73483 3 2 1 1
                            19 113.23483 6 4 3 2
                            24 521.02045 9 5 5 3
                            23 618.895 3 1 1 1
                            35 122.73486 3 2 2 1
                            32 320.7731 6 3 4 2
                            36 232.0856 3 1 2 1
                            20 318.77335 6 3 3 2
                            31 458.3459 6 4 4 2
                            20 366.6938 6 3 3 2
                            .b 560.4269 6 3 . 2
                            20 99.28418 6 3 3 2
                            38 240.06184 9 5 6 3
                            31 264.15982 9 6 6 3
                            29 290.2914 9 5 6 3
                            18 606.3608 9 6 5 3
                            28 198.56836 6 3 3 2
                            21 77.36187 3 1 1 1
                            19 309.4475 3 1 1 1
                            25 541.5331 3 1 1 1
                            19 164.53896 6 4 3 2
                            23 138.2268 6 3 3 2
                            20 488.92505 6 3 3 2
                            38 245.46973 3 2 2 1
                            24 154.72375 3 1 1 1
                            20 327.2811 9 5 5 3
                            19 183.36983 9 6 5 3
                            38 557.77515 9 5 6 3
                            18 318.77335 6 3 3 2
                            35 298.35553 9 6 6 3
                            22 558.84143 9 6 5 3
                            29 251.98697 9 5 6 3
                            28 1459.434 3 2 1 1
                            34 139.71036 9 6 6 3
                            30 132.63521 6 3 4 2
                            34 245.46973 3 2 2 1
                            37 163.15567 6 4 4 2
                            20 232.08563 3 1 1 1
                            24 155.52527 9 6 5 3
                            39 77.36188 3 1 2 1
                            37 183.36983 9 6 6 3
                            29 142.96117 9 5 6 3
                            29 451.3719 9 6 6 3
                            25 839.0375 9 5 5 3
                            20 651.9816 9 6 5 3
                            27 452.9604 9 6 5 3
                            28 309.4475 3 1 1 1
                            19 386.8094 3 1 1 1
                            19 232.08563 3 1 1 1
                            18 268.73264 9 5 5 3
                            28 77.36187 3 1 1 1
                            19 112.08538 6 3 3 2
                            35 122.23126 6 3 4 2
                            24 368.2045 3 2 1 1
                            24 613.6743 3 2 1 1
                            25 368.2046 3 2 1 1
                            21 490.93945 3 2 1 1
                            22 850.9805 3 1 1 1
                            19 77.36187 3 1 1 1
                            19 232.08563 3 1 1 1
                            30 373.8953 9 6 6 3
                            21 469.8559 9 6 5 3
                            25 283.10025 9 6 5 3
                            26 924.6935 9 6 5 3
                            33 383.4704 9 5 6 3
                            31 147.16956 6 3 4 2
                            27 118.14375 6 3 3 2
                            39 112.08538 6 3 4 2
                            30 212.5156 6 3 4 2
                            27 77.36188 3 1 1 1
                            34 77.36188 3 1 2 1
                            28 232.0856 3 1 1 1
                            19 232.08563 3 1 1 1
                            38 458.3459 6 4 4 2
                            27 151.31337 6 3 3 2
                            27 205.11945 9 6 5 3
                            27 566.2004 9 6 5 3
                            37 106.2578 6 3 4 2
                            19 131.09586 9 5 5 3
                            30 234.80873 9 6 6 3
                            36 450.1636 9 6 6 3
                            33 279.42072 9 6 6 3
                            29 242.7358 9 5 6 3
                            35 92.96252 9 5 6 3
                            23 163.5132 6 4 3 2
                            27 240.06184 9 5 5 3
                            34 77.36187 3 1 2 1
                            26 654.0528 6 4 3 2
                            25 207.03696 9 6 5 3
                            25 376.40115 9 5 5 3
                            28 77.36188 3 1 1 1
                            22 245.46973 3 2 1 1
                            22 77.36187 3 1 1 1
                            30 232.08563 3 1 2 1
                            27 212.5156 6 3 3 2
                            27 309.4475 3 1 1 1
                            19 77.36188 3 1 1 1
                            18 122.73486 3 2 1 1
                            32 154.72374 3 1 2 1
                            25 222.05516 9 6 5 3
                            19 188.9317 9 5 5 3
                            19 210.3707 9 6 5 3
                            18 205.8911 9 6 5 3
                            26 227.42703 9 5 5 3
                            34 309.4475 3 1 2 1
                            25 364.9541 9 6 5 3
                            20 376.1875 6 4 3 2
                            24 195.36845 6 4 3 2
                            30 613.6743 3 2 2 1
                            19 77.36187 3 1 1 1
                            19 205.11945 9 6 5 3
                            26 198.56836 6 3 3 2
                            30 525.1908 9 6 6 3
                            22 452.9604 9 6 5 3
                            28 269.49368 9 6 5 3
                            19 383.4704 9 5 5 3
                            26 262.1917 9 5 5 3
                            25 261.1882 9 5 5 3
                            35 356.5487 9 6 6 3
                            19 87.06275 9 5 5 3
                            38 79.90833 9 5 6 3
                            21 222.05516 9 6 5 3
                            20 490.9393 3 2 1 1
                            32 368.2045 3 2 2 1
                            28 368.2045 3 2 1 1
                            25 368.2045 3 2 1 1
                            34 77.36188 3 1 2 1
                            22 327.0264 6 4 3 2
                            21 377.3697 6 3 3 2
                            25 232.0856 3 1 1 1
                            39 232.0856 3 1 2 1
                            29 314.9837 9 5 6 3
                            31 233.8552 9 6 6 3
                            22 154.93146 9 5 5 3
                            37 269.49368 9 6 6 3
                            32 464.1713 3 1 2 1
                            26 154.72375 3 1 1 1
                            35 136.37178 9 5 6 3
                            27 154.72375 3 1 1 1
                            22 188.73347 9 6 5 3
                            32 291.46124 9 5 6 3
                            31 77.36188 3 1 2 1
                            37 122.73486 3 2 2 1
                            36 386.8094 3 1 2 1
                            18 111.09453 9 5 5 3
                            35 73.58478 6 3 4 2
                            19 163.5132 6 4 3 2
                            22 817.566 6 4 3 2
                            27 530.54083 6 3 3 2
                            26 147.16956 6 3 3 2
                            36 368.2046 3 2 2 1
                            39 154.72374 3 1 2 1
                            22 251.5798 6 3 3 2
                            36 117.6123 9 5 6 3
                            22 212.0509 6 3 3 2
                            27 380.8955 9 5 5 3
                            26 92.96252 9 5 5 3
                            22 215.6188 9 6 5 3
                            33 128.34991 9 5 6 3
                            36 109.0937 9 5 6 3
                            18 174.21555 9 6 5 3
                            22 148.88603 9 6 5 3
                            18 106.92438 6 3 3 2
                            35 106.02544 6 3 4 2
                            27 113.82605 6 3 3 2
                            29 380.876 6 3 4 2
                            29 79.90833 9 5 6 3
                            25 368.2046 3 2 1 1
                            22 309.4475 3 1 1 1
                            20 309.4475 3 1 1 1
                            27 1276.2495 6 4 3 2
                            28 106.2578 6 3 3 2
                            20 545.4112 6 4 3 2
                            33 147.16956 6 3 4 2
                            38 327.0264 6 4 4 2
                            34 490.9393 3 2 2 1
                            29 232.0856 3 1 2 1
                            38 704.4263 9 6 6 3
                            21 232.0856 3 1 1 1
                            19 122.73483 3 2 1 1
                            23 1459.434 3 2 1 1
                            23 243.6317 9 6 5 3
                            29 230.10065 9 6 6 3
                            29 212.0509 6 3 4 2
                            30 350.1273 9 6 6 3
                            18 122.23126 6 3 3 2
                            28 427.6975 6 3 3 2
                            27 453.9401 6 3 3 2
                            36 357.0339 9 5 6 3
                            18 99.28418 6 3 3 2
                            19 276.4536 6 3 3 2
                            35 112.08538 6 3 4 2
                            25 154.72374 3 1 1 1
                            28 493.61685 6 4 3 2
                            34 658.1558 6 4 4 2
                            24 212.70824 6 4 3 2
                            24 448.3415 6 3 3 2
                            27 253.9174 6 3 3 2
                            30 236.2875 6 3 4 2
                            35 193.5699 6 4 4 2
                            36 234.92793 9 6 6 3
                            21 210.90833 9 5 5 3
                            24 215.6188 9 6 5 3
                            29 480.1237 9 5 6 3
                            35 151.82298 9 5 6 3
                            29 127.82346 9 5 6 3
                            38 145.73062 9 5 6 3
                            25 582.47034 9 6 5 3
                            27 122.73483 3 2 1 1
                            23 141.13477 9 5 5 3
                            25 248.6199 9 6 5 3
                            37 490.93945 3 2 2 1
                            28 425.4165 6 4 3 2
                            30 106.2578 6 3 4 2
                            34 410.2389 9 6 6 3
                            18 195.36845 6 4 3 2
                            24 152.78197 6 4 3 2
                            28 332.4214 9 5 5 3
                            39 444.1103 9 6 6 3
                            37 812.5856 9 5 6 3
                            22 190.44777 9 5 5 3
                            31 96.91807 9 5 6 3
                            35 329.2309 9 5 6 3
                            26 298.35553 9 6 5 3
                            18 178.27437 9 6 5 3
                            36 179.9907 9 5 6 3
                            34 503.2894 9 6 6 3
                            20 309.8629 9 5 5 3
                            25 436.3748 9 5 5 3
                            21 131.09586 9 5 5 3
                            25 327.0264 6 4 3 2
                            27 255.64693 9 5 5 3
                            23 545.4112 6 4 3 2
                            30 244.46252 6 3 4 2
                            24 138.2268 6 3 3 2
                            38 122.23126 6 3 4 2
                            22 145.1457 9 5 5 3
                            37 188.09375 6 4 4 2
                            28 386.8094 3 1 1 1
                            38 77.36187 3 1 2 1
                            21 232.0856 3 1 1 1
                            39 503.2894 9 6 6 3
                            22 154.72375 3 1 1 1
                            32 290.2914 9 5 6 3
                            26 364.9541 9 6 5 3
                            33 188.9317 9 5 6 3
                            24 282.26953 9 5 5 3
                            25 173.6735 9 5 5 3
                            22 225.68596 9 6 5 3
                            30 148.88603 9 6 6 3
                            39 437.67395 9 6 6 3
                            28 185.92505 9 5 5 3
                            21 124.05248 9 5 5 3
                            21 454.4835 9 5 5 3
                            23 149.17776 9 6 5 3
                            33 227.42703 9 5 6 3
                            35 182.47707 9 6 6 3
                            38 263.3847 9 5 6 3
                            33 455.4689 9 5 6 3
                            25 134.36632 9 5 5 3
                            27 615.3583 9 6 5 3
                            24 313.6328 9 5 5 3
                            26 613.6742 3 2 1 1
                            25 152.78197 6 4 3 2
                            34 422.6558 9 6 6 3
                            30 113.23483 6 4 4 2
                            33 309.4475 3 1 2 1
                            35 105.45416 9 5 6 3
                            35 251.6447 9 6 6 3
                            27 232.08563 3 1 1 1
                            29 178.51697 9 5 6 3
                            35 154.72374 3 1 2 1
                            38 106.2578 6 3 4 2
                            30 122.23126 6 3 4 2
                            26 122.73486 3 2 1 1
                            35 188.9317 9 5 6 3
                            30 390.7369 6 4 4 2
                            30 215.6188 9 6 6 3
                            30 462.3468 9 6 6 3
                            26 266.7198 9 6 5 3
                            21 105.45416 9 5 5 3
                            29 298.35553 9 6 6 3
                            34 232.08563 3 1 2 1
                            38 377.8634 9 5 6 3
                            22 1369.987 6 4 3 2
                            34 224.17076 6 3 4 2
                            37 344.9618 6 4 4 2
                            32 193.5699 6 4 4 2
                            22 822.6948 6 4 3 2
                            30 122.23126 6 3 4 2
                            23 204.1037 6 4 3 2
                            31 232.0856 3 1 2 1
                            30 329.0779 6 4 4 2
                            26 437.67395 9 6 5 3
                            32 507.6696 9 6 6 3
                            25 309.4475 3 1 1 1
                            35 252.217 9 5 6 3
                            34 245.46973 3 2 2 1
                            19 149.07307 9 5 5 3
                            26 266.7198 9 6 5 3
                            28 245.46973 3 2 1 1
                            36 245.46967 3 2 2 1
                            32 386.8094 3 1 2 1
                            38 218.1874 9 5 6 3
                            28 305.5639 6 4 3 2
                            35 364.9541 9 6 6 3
                            27 212.0509 6 3 3 2
                            30 245.46967 3 2 2 1
                            34 326.3113 6 4 4 2
                            24 175.06363 9 6 5 3
                            21 385.2294 9 6 5 3
                            33 164.61543 9 5 6 3
                            31 113.23483 6 4 4 2
                            20 493.61685 6 4 3 2
                            38 188.09375 6 4 4 2
                            19 390.7369 6 4 3 2
                            21 363.6075 6 4 3 2
                            30 138.2268 6 3 4 2
                            28 106.2578 6 3 3 2
                            25 195.36845 6 4 3 2
                            29 213.84875 6 3 4 2
                            28 698.5389 6 4 3 2
                            28 652.6227 6 4 3 2
                            31 368.2046 3 2 2 1
                            24 425.4165 6 4 3 2
                            38 188.9317 9 5 6 3
                            21 77.36187 3 1 1 1
                            23 490.53955 6 4 3 2
                            19 1164.2317 6 4 3 2
                            20 376.1875 6 4 3 2
                            33 99.28418 6 3 4 2
                            26 564.28125 6 4 3 2
                            30 77.36187 3 1 2 1
                            24 212.0509 6 3 3 2
                            31 215.6188 9 6 6 3
                            28 118.14375 6 3 3 2
                            36 124.05248 9 5 6 3
                            38 225.68596 9 6 6 3
                            23 106.2578 6 3 3 2
                            19 148.40457 9 5 5 3
                            24 188.13193 9 5 5 3
                            21 437.67395 9 6 5 3
                            37 458.82205 9 6 6 3
                            20 182.47707 9 6 5 3
                            34 487.2634 9 6 6 3
                            36 106.92438 6 3 4 2
                            25 266.7198 9 6 5 3
                            33 156.8164 9 5 6 3
                            31 264.15982 9 6 6 3
                            28 138.2268 6 3 3 2
                            35 1155.6881 9 6 6 3
                            29 431.2376 9 6 6 3
                            38 318.77335 6 3 4 2
                            35 363.6075 6 4 4 2
                            28 131.09586 9 5 5 3
                            27 77.36188 3 1 1 1
                            36 77.36187 3 1 2 1
                            25 244.46252 6 3 3 2
                            24 145.73062 9 5 5 3
                            19 105.45416 9 5 5 3
                            19 450.1636 9 6 5 3
                            39 745.8596 9 6 6 3
                            22 490.93945 3 2 1 1
                            39 652.6227 6 4 4 2
                            27 232.08563 3 1 1 1
                            26 245.46967 3 2 1 1
                            18 414.6804 6 3 3 2
                            31 92.96252 9 5 6 3
                            23 245.46973 3 2 1 1
                            21 245.46973 3 2 1 1
                            25 493.61685 6 4 3 2
                            29 245.46967 3 2 2 1
                            34 409.6167 9 5 6 3
                            22 344.9618 6 4 3 2
                            38 129.0184 9 5 6 3
                            29 144.41632 9 6 6 3
                            38 139.71036 9 6 6 3
                            34 179.9907 9 5 6 3
                            27 149.17776 9 6 5 3
                            35 155.52527 9 6 6 3
                            38 149.07307 9 5 6 3
                            26 155.52527 9 6 5 3
                            33 239.21886 9 6 6 3
                            22 218.83698 9 6 5 3
                            34 210.3707 9 6 6 3
                            38 408.2074 6 4 4 2
                            28 232.0856 3 1 1 1
                            39 140.26332 9 5 6 3
                            36 154.72374 3 1 2 1
                            32 240.06184 9 5 6 3
                            25 106.02544 6 3 3 2
                            19 229.41103 9 6 5 3
                            38 494.7333 9 5 6 3
                            24 136.37178 9 5 5 3
                            28 222.05516 9 6 5 3
                            27 437.67395 9 6 5 3
                            20 638.1248 6 4 3 2
                            26 448.3415 6 3 3 2
                            35 244.46252 6 3 4 2
                            26 213.84875 6 3 3 2
                            22 276.4536 6 3 3 2
                            32 458.3459 6 4 4 2
                            31 279.42072 9 6 6 3
                            39 164.61543 9 5 6 3
                            39 193.83614 9 5 6 3
                            24 154.72374 3 1 1 1
                            19 182.47707 9 6 5 3
                            32 634.7934 6 3 4 2
                            25 122.23126 6 3 3 2
                            38 437.67395 9 6 6 3
                            27 185.5614 9 5 5 3
                            30 490.9393 3 2 2 1
                            36 245.46967 3 2 2 1
                            24 106.92438 6 3 3 2
                            25 154.72375 3 1 1 1
                            39 113.23483 6 4 4 2
                            38 290.2914 9 5 6 3
                            28 232.91656 9 6 5 3
                            35 292.79822 9 5 6 3
                            25 613.6743 3 2 1 1
                            23 122.23126 6 3 3 2
                            20 198.56836 6 3 3 2
                            28 552.9072 6 3 3 2
                            36 203.1464 9 5 6 3
                            33 152.78197 6 4 4 2
                            30 376.1875 6 4 4 2
                            38 138.37724 9 5 6 3
                            38 327.2811 9 5 6 3
                            33 134.36632 9 5 6 3
                            23 175.06363 9 6 5 3
                            28 245.46973 3 2 1 1
                            39 245.46967 3 2 2 1
                            38 134.36632 9 5 6 3
                            33 736.4091 3 2 2 1
                            35 134.36632 9 5 6 3
                            26 464.1712 3 1 1 1
                            35 286.46774 9 6 6 3
                            35 541.5331 3 1 2 1
                            38 493.61685 6 4 4 2
                            39 117.6123 9 5 6 3
                            31 175.06363 9 6 6 3
                            27 1459.434 3 2 1 1
                            28 1104.6138 3 2 1 1
                            26 316.3625 9 5 5 3
                            26 232.08563 3 1 1 1
                            18 490.93945 3 2 1 1
                            26 309.4475 3 1 1 1
                            22 122.23126 6 3 3 2
                            24 154.72375 3 1 1 1
                            24 517.4427 6 4 3 2
                            37 280.52664 9 5 6 3
                            34 263.3847 9 5 6 3
                            37 335.8786 9 5 6 3
                            37 167.9393 9 5 6 3
                            32 128.34991 9 5 6 3
                            35 212.0509 6 3 4 2
                            39 210.3707 9 6 6 3
                            34 235.16953 6 4 4 2
                            38 106.92438 6 3 4 2
                            38 297.8525 6 3 4 2
                            23 305.5639 6 4 3 2
                            20 212.70824 6 4 3 2
                            30 118.14375 6 3 4 2
                            30 207.03696 9 6 6 3
                            30 514.106 9 6 6 3
                            34 218.1874 9 5 6 3
                            31 603.7939 9 6 6 3
                            29 181.80376 6 4 4 2
                            25 245.46973 3 2 1 1
                            19 122.23126 6 3 3 2
                            29 414.6804 6 3 4 2
                            23 198.56836 6 3 3 2
                            27 122.23126 6 3 3 2
                            27 244.46252 6 3 3 2
                            22 564.28125 6 4 3 2
                            35 112.08538 6 3 4 2
                            30 118.14375 6 3 4 2
                            34 176.41846 9 5 6 3
                            19 280.52664 9 5 5 3
                            27 175.06363 9 6 5 3
                            24 301.89694 9 6 5 3
                            37 186.94765 9 6 6 3
                            18 350.319 6 4 3 2
                            31 490.93945 3 2 2 1
                            22 736.4091 3 2 1 1
                            28 181.80376 6 4 3 2
                            28 146.39911 9 5 5 3
                            39 425.4165 6 4 4 2
                            35 232.08563 3 1 2 1
                            35 245.46967 3 2 2 1
                            20 822.6948 6 4 3 2
                            22 658.1558 6 4 3 2
                            26 122.73486 3 2 1 1
                            24 309.4475 3 1 1 1
                            37 354.4312 6 3 4 2
                            26 213.84875 6 3 3 2
                            26 129.0184 9 5 5 3
                            22 174.21555 9 6 5 3
                            33 77.36188 3 1 2 1
                            34 77.36188 3 1 2 1
                            34 303.64597 9 5 6 3
                            36 173.6735 9 5 6 3
                            23 245.46967 3 2 1 1
                            25 339.7045 6 4 3 2
                            24 122.73486 3 2 1 1
                            37 136.37178 9 5 6 3
                            27 77.36188 3 1 1 1
                            32 326.3113 6 4 4 2
                            23 632.7249 9 5 5 3
                            34 368.2045 3 2 2 1
                            29 859.1439 3 2 2 1
                            24 368.2046 3 2 1 1
                            35 272.74356 9 5 6 3
                            35 215.6188 9 6 6 3
                            20 175.06363 9 6 5 3
                            24 218.83698 9 6 5 3
                            26 174.1255 9 5 5 3
                            23 188.09375 6 4 3 2
                            38 613.6743 3 2 2 1
                            18 164.53896 6 4 3 2
                            39 244.46252 6 3 4 2
                            38 490.9393 3 2 2 1
                            36 77.36188 3 1 2 1
                            31 245.46967 3 2 2 1
                            30 212.0509 6 3 4 2
                            22 87.06275 9 5 5 3
                            28 134.36632 9 5 5 3
                            28 329.2309 9 5 5 3
                            34 169.2232 9 6 6 3
                            35 226.46965 6 4 4 2
                            21 224.17076 6 3 3 2
                            31 862.4045 6 4 4 2
                            26 689.9235 6 4 3 2
                            18 163.5132 6 4 3 2
                            32 212.5156 6 3 4 2
                            37 77.36187 3 1 2 1
                            36 376.1875 6 4 4 2
                            29 77.36187 3 1 2 1
                            29 326.3113 6 4 4 2
                            30 99.28418 6 3 4 2
                            36 152.78197 6 4 4 2
                            36 152.78197 6 4 4 2
                            36 164.53896 6 4 4 2
                            38 450.1636 9 6 6 3
                            28 258.0368 9 5 5 3
                            30 296.80914 9 5 6 3
                            29 268.73264 9 5 6 3
                            27 215.6188 9 6 5 3
                            24 113.23483 6 4 3 2
                            33 145.1457 9 5 6 3
                            30 490.93945 3 2 2 1
                            30 77.36187 3 1 2 1
                            39 245.46973 3 2 2 1
                            38 368.2045 3 2 2 1
                            35 425.4165 6 4 4 2
                            27 309.4475 3 1 1 1
                            37 357.0339 9 5 6 3
                            30 154.72375 3 1 2 1
                            38 420.7414 9 6 6 3
                            25 154.72374 3 1 1 1
                            34 77.36187 3 1 2 1
                            33 109.0937 9 5 6 3
                            37 248.6199 9 6 6 3
                            22 981.8787 3 2 1 1
                            33 245.46973 3 2 2 1
                            31 245.46973 3 2 2 1
                            32 377.46695 9 6 6 3
                            35 606.3608 9 6 6 3
                            39 437.67395 9 6 6 3
                            30 385.2294 9 6 6 3
                            38 368.2045 3 2 2 1
                            38 245.46973 3 2 2 1
                            27 541.5331 3 1 1 1
                            32 122.73486 3 2 2 1
                            35 122.73483 3 2 2 1
                            37 363.6075 6 4 4 2
                            36 226.46965 6 4 4 2
                            31 322.1409 9 6 6 3
                            37 292.64966 9 5 6 3
                            39 427.6975 6 3 4 2
                            39 545.4112 6 4 4 2
                            29 138.2268 6 3 4 2
                            27 470.33905 6 4 3 2
                            35 212.5156 6 3 4 2
                            36 245.46967 3 2 2 1
                            30 77.36188 3 1 2 1
                            33 164.61543 9 5 6 3
                            36 444.1103 9 6 6 3
                            36 905.8786 6 4 4 2
                            29 175.06363 9 6 6 3
                            32 122.73486 3 2 2 1
                            38 390.7369 6 4 4 2
                            33 238.1461 9 6 6 3
                            24 122.23126 . 3 3 2
                            27 309.4475 . 1 1 1
                            32 268.73264 . 5 6 3
                            29 297.77206 . 6 6 3
                            22 154.72374 . 1 1 1
                            21 547.4312 . 6 5 3
                            28 106.2578 . 3 3 2
                            30 464.1713 . 1 2 1
                            26 122.73486 . 2 1 1
                            26 1227.3485 . 2 1 1
                            36 77.36187 . 1 2 1
                            24 637.5467 . 3 3 2
                            30 151.31337 . 3 4 2
                            34 613.6742 . 2 2 1
                            end
                            label values b02age_n missonly
                            label def missonly .b "Refuse to answer", modify
                            label values citywealth_t3 citywealth_t3
                            label def citywealth_t3 1 "Serekunda poorer", modify
                            label def citywealth_t3 2 "Serekunda middle", modify
                            label def citywealth_t3 3 "Serekunda wealthier", modify
                            label def citywealth_t3 4 "Tema poorer", modify
                            label def citywealth_t3 5 "Tema middle", modify
                            label def citywealth_t3 6 "Tema wealthier", modify
                            label def citywealth_t3 7 "São Vicente poorer", modify
                            label def citywealth_t3 8 "São Vicente middle", modify
                            label def citywealth_t3 9 "São Vicente wealthier", modify
                            label values citygnd citygnd
                            label def citygnd 1 "Serekunda Female", modify
                            label def citygnd 2 "Serekunda Male", modify
                            label def citygnd 3 "Tema Female", modify
                            label def citygnd 4 "Tema Male", modify
                            label def citygnd 5 "São Vicente Female", modify
                            label def citygnd 6 "São Vicente Male", modify
                            label values cityage cityage
                            label def cityage 1 "Serekunda age 18-28", modify
                            label def cityage 2 "Serekunda age 29-39", modify
                            label def cityage 3 "Tema age 18-28", modify
                            label def cityage 4 "Tema age 29-39", modify
                            label def cityage 5 "São Vicente age 18-28", modify
                            label def cityage 6 "São Vicente age 29-39", modify
                            label values city city
                            label def city 1 "Serekunda", modify
                            label def city 2 "Tema", modify
                            label def city 3 "São Vicente", modify
                            [/CODE]

                            I had to divide the code into three, so this is the final part of the code, the former message contains part 2/3

                            Comment

                            Working...
                            X