Genome Analysis Toolkit

Variant Discovery in High-Throughput Sequencing Data

GATK process banner

Need Help?

Search our documentation

Community Forum

Hi, How can we help?

Developed in the Data Sciences Platform at the Broad Institute, the toolkit offers a wide variety of tools with a primary focus on variant discovery and genotyping. Its powerful processing engine and high-performance computing features make it capable of taking on projects of any size. Learn more

JointGenotyping on multiple samples is less accurate vs. one at a time. Pooled sequencing.

0

29 comments

  • Avatar
    Gökalp Çelik

    Hi Mads Nielsen

    Have you tried adding the ploidy parameter to the GenotypeGVCFs step? GenotypeGVCFs assumes a diploid sample as default. 

    --sample-ploidy,-ploidy <Integer>
                                  Ploidy (number of chromosomes) per sample. For pooled data, set to (Number of samples in
                                  each pool * Sample Ploidy).  Default value: 2. 

    Regards.

    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    Thanks for your reply!

    Yes, I tried both with and without the "-ploidy" parameter - same result - and it outputs the correct number of alleles.

    Best

    Mads

    0
    Comment actions Permalink
  • Avatar
    Gökalp Çelik

    Hi again.

    Looking at the region that you provided in your log, indicates that it is a region of high GC content and repeats. Maximum genotype count of 1024 is calculated based on ploidy and number of samples per locus and based on that ploidy of 20 with number of alleles 6 for that locus. Observing 50000 genotypes in that region is highly unlikely therefore what is observed in that locus is mostly read errors, PCR errors and/or mapping errors. 

    I hope this helps. 

    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    Hi again,

    Sorry, maybe my question was not super clear - but the problem is not the specific region I attached, it is that GenotypeGVCF only outputs a tiny fraction of the expected number of variants across all the regions, and that the output is a long list of lines like the one I attached. When I run one gvcf at a time, it gives the correct output, but when I do joint genotyping with all the files at once it is completely off. I benchmark against a "truth" set based on WGS, and single sample genotyping has a sensitivity of 0.95, while joint genotyping has a sensitivity of 0.14.

    I worry that GenotypeGVCF simply cannot handle multiple pooled samples, or that it has a build-in filter, that I have overlooked.

    Thanks for your help!

    0
    Comment actions Permalink
  • Avatar
    Gökalp Çelik

    Did your GenotypeGVCFs command reached a successful end with exit code 0?

    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    Yes - there were no errors.

    0
    Comment actions Permalink
  • Avatar
    Gökalp Çelik

    Can you elaborate more on your single samples vs pooled samples?

    What are the depths for single unpooled samples and pooled samples? Have you tried running CollectWgsMetrics tool to check for the theoretical sensitivity for calls? 

    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    Yes. I am benchmarking different tools for calling variants in samples of pooled DNA. I have two data sets. One is sequenced pools of DNA from 10 individuals and the other is the 10 individuals sequenced individually. Variant calling of the individuals is just done using GATK best practices, and the pooled samples are called using a range of different tools. I benchmark the calls of pooled samples against the individually called samples. The median coverage of the individual samples are in the range of ~30-50x and the pooled samples are 2-3000x. I have in total of twenty pooled samples (100 individuals in all) and the problem arises when I take all the pooled sample GVCFs, combine them using GenomicsDB and call variants using GenotypeGVCF. It runs without errors, outputs a single VCF with all the samples and the correct number of alleles, but a completely off number of variants. The sensitivity for it is 0.14 compared to >0.90 for all other tools. The strange thing is, that if I just take one pooled sample GVCF at a time, and run GenotypeGVCF on it, the combined result is a sensitivity of 0.96.

    0
    Comment actions Permalink
  • Avatar
    Gökalp Çelik

    Oh. So if each pool contains 100 (assuming diploid) individuals then your ploidy should be around 200. But the message you showed me indicates only 20. Could that be the reason why your call sensitivity is dropped significantly?

    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    Each of the pools only contain 10 individuals. I have 100 individuals pooled twice in pools of 10. Sorry for the confusing set-up. It is overlapped pooled sequencing.

    0
    Comment actions Permalink
  • Avatar
    Gökalp Çelik

    Do your pooled samples all have different Sample IDs and Sample Names attached to them? 

    Again going back to my original questions.

    Did you observe any different genotype assignments when GenotypeGVCFs are run with --ploidy 6 vs no ploidy parameter? Alleles won't matter as they are already in the file. Important thing is the assigned genotypes to them. 

    Also have you looked at Theoretical Sensitivity numbers calculated by CollectWgsMetrics tool?Important allele fractions should be around 0.05 and the sensitivity of those fractions would matter. Heterozygous sensitivity for 30-50X coverage should already be above 0.95 but even with 3000X depth capturing 0.05 allele fraction may have quite reduced sensitivity. 

     

    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    Thanks for all your inputs!

    All files input to GenomicsDB have different sample ids. The VCF resulting from running genotypeGVCF on the genomicsDB also has all the expected sample columns. I just re-tested and running genotypeGVCF with different ploidies has no effect. Which is also what the documentation states. I just ran CollectWgsMetrics with default settings on a couple of the pooled samples, and it returns a single theoretical HET SNP sensitivity above 0.999 for all of them. I am not sure where you sensitivities for specific fractions?

    0
    Comment actions Permalink
  • Avatar
    Gökalp Çelik

    CollectWgsMetrics has a parameter called

    --THEORETICAL_SENSITIVITY_OUTPUT <File>
                                  Output for Theoretical Sensitivity metrics.  Default value: null.

    This file collects theoretical sensitivity results for different allele fractions. Heterozygous calls are made with close to 50% allele fraction estimations however in your case your ploidy value is 20 and single allele present within a pool will cause allele fractions to go as low as 0.01 to 0.05. 

    ALLELE_FRACTION    THEORETICAL_SENSITIVITY    THEORETICAL_SENSITIVITY_Q    LOG_ODDS_THRESHOLD    SAMPLE_SIZE
    0.001    0    0    6.2    10000
    0.005    0.000007    0    6.2    10000
    0.01    0.000487    0    6.2    10000
    0.02    0.020443    0    6.2    10000
    0.05    0.255898    1    6.2    10000
    0.1    0.714858    5    6.2    10000
    0.2    0.954775    13    6.2    10000
    0.3    0.978113    17    6.2    10000
    0.5    0.985147    18    6.2    10000

    This is from a sample of 50X coverage PCR Free whole genome sequencing data. This sample has HET sensitivity around 0.99. However numbers do not linearly increase as your depth goes up. Sensitivity for the allele fraction 0.01 less than 0.1% and even your depth goes as high as 2000X this value may not become 0.99 therefore there will be a higher probability for false negative calls in pooled sequencing. 

    I hope this helps. 

    Regards. 

    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    These are the results for one of the pooled samples:

    ALLELE_FRACTION THEORETICAL_SENSITIVITY THEORETICAL_SENSITIVITY_Q LOG_ODDS_THRESHOLD SAMPLE_SIZE
    0.001 0 0 6.2 10000
    0.005 0.000897 0 6.2 10000
    0.01 0.054652 0 6.2 10000
    0.02 0.4605 3 6.2 10000
    0.05 0.977045 16 6.2 10000
    0.1 0.99729 26 6.2 10000
    0.2 0.99729 26 6.2 10000
    0.3 0.99729 26 6.2 10000
    0.5 0.99729 26 6.2 10000

    This looks sensible right?

    And again, GenotypeGVCF gives the correct results if I just give it a single pool, but gives results that are completely off when I want it to do joint genotyping on multiple pools via GenomicsDB.

    0
    Comment actions Permalink
  • Avatar
    Gökalp Çelik

    Does joint genotyping also produce complete HOMREF calls in some of your pools where there is only a single pool has the variant site? Also based on that do you remove those sites before you compare it to your single sample comparisons?

    Also do you observe any false negative calls in your joint genotyped pools and  can you share some example variant contexts to indicate that here?

    If there are no false negatives but just extra HOMREF sites due to joint genotyping those sites may not be evident in the single sample analysis therefore GenotypeConcordance may fall off. 

    Can you provide examples of FP and FN sites according to your GenotypeConcordance results?

     

    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    Yes, many calls are missing in the jointly genotyped VCF, but for the once that are there, you see complete HOMREF calls for all other pools, than the ones having the variants. 

    This is an example of a correct site, in the jointly called VCF, with two pools having a variant:

    chr17   7676148 .       G       A       2300.79 .       AC=3;AF=7.500e-03;AN=400;AS_BaseQRankSum=0.250;AS_FS=1.059;AS_MQ=60.00;AS_MQRankSum=0.000;AS_QD=1.07;AS_ReadPosRankSum=-0.050;AS_SOR=0.531;BaseQRankSum=1.18;DP=19429;FS=1.059;MLEAC=2;MLEAF=5.000e-03;MQ=60.00;MQRankSum=0.00;QD=1.07;ReadPosRankSum=0.415;SOR=0.531     GT:AD:DP:GQ:PL  0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:607,0:607:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800        0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:957,0:957:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800        0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/1/1:992,85:1077:6:1284,6,0,103,261,459,689,951,1246,1576,1946,2362,2834,3375,4006,4757,5682,6878,8567,11435,32425        0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:937,0:937:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800        0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1010,0:1010:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800      0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1189,0:1189:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800      0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1328,0:1328:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800      0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:916,0:916:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800        0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1237,0:1237:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800      0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:748,0:748:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800        0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:920,0:920:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800        0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/1:987,79:1066:19:1039,0,19,136,303,506,741,1007,1304,1635,2006,2423,2894,3434,4063,4812,5733,6923,8600,11445,30792     0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:807,0:807:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800        0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1026,0:1026:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800      0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:970,0:970:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800        0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:814,0:814:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800        0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1007,0:1007:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800      0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:900,0:900:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800        0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:855,0:855:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800        0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1007,0:1007:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800

    (This is overlapped pooled sequencing, so all variants should appear in two pools).

    This is an example of a variant that should have been in the jointly called VCF:

    As it appear in the GVCF:

    chr13   32339012        .       A       G,<NON_REF>     1447.43 .       AS_RAW_BaseQRankSum=|0.3,1|NaN;AS_RAW_MQ=6991200.00|403200.00|0.00;AS_RAW_MQRankSum=|0.0,1|NaN;AS_RAW_ReadPosRankSum=|0.3,1|NaN;AS_SB_TABLE=895,1047|53,59|0,0;BaseQRankSum=0.388;DP=2131;MLEAC=1,0;MLEAF=0.050,0.00;MQRankSum=0.000;RAW_MQandDP=7671600,2131;ReadPosRankSum=0.342  GT:AD:DP:GQ:PL:SB       0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/1:1942,112,0:2054:99:1449,0,131,420,792,1227,1719,2266,2874,3546,4294,5130,6074,7152,8403,9889,11713,14068,17378,22974,55642,1880,454,612,929,1334,1806,2340,2938,3603,4345,5176,6116,7190,8439,9922,11745,14097,17406,23000,55667,2334,934,1121,1471,1913,2428,3012,3667,4402,5227,6162,7232,8477,9958,11778,14128,17435,23028,55693,2815,1444,1663,2050,2535,3099,3741,4466,5284,6213,7278,8519,9997,11814,14162,17466,23057,55721,3324,1986,2242,2672,3206,3829,4540,5348,6270,7329,8565,10039,11852,14197,17500,23088,55750,3866,2565,2864,3343,3935,4627,5422,6334,7386,8616,10085,11894,14236,17536,23122,55781,4445,3186,3535,4073,4734,5510,6408,7450,8673,10136,11940,14278,17574,23157,55815,5067,3858,4264,4871,5616,6495,7524,8737,10192,11991,14324,17616,23196,55850,5738,4587,5063,5754,6602,7612,8811,10257,12048,14375,17662,23238,55889,6468,5386,5945,6739,7718,8899,10331,12112,14432,17713,23284,55932,7266,6268,6931,7855,9005,10418,12186,14496,17770,23335,55977,8148,7254,8047,9142,10525,12274,14570,17834,23392,56028,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949:895,1047,53,59

    As it appear in the VCF from GenotypeGVCF on the single pool:

    chr13   32339012        .       A       G       1447.43 .       AC=1;AF=0.050;AN=20;ASSEMBLED_HAPS=416;AS_BaseQRankSum=0.300;AS_FS=0.000;AS_MQ=60.00;AS_MQRankSum=0.000;AS_QD=0.70;AS_ReadPosRankSum=0.300;AS_SOR=0.643;BQHIST=0;BaseQRankSum=0.388;ClippingRankSum=0.423;DP=2131;FILTERED_HAPS=0;FS=0.000;GQ_MEAN=131.00;HAPCOMP=2;HAPDOM=0.267;HEC=1854;LikelihoodRankSum=-3.452e+00;MLEAC=1;MLEAF=0.050;MQ=60.00;MQ0=0;MQRankSum=0.00;NCC=0;NCount=0;QD=0.70;ReadPosRankSum=0.342;SOR=0.643;X_GCC=0.400;X_HIL=0    GT:AD:AF:DD:DF:DP:GQ:PL   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/1:1942,112:0.055:1899.08,100.25:0.9489,0.0506:2054:99:1449,0,131,420,792,1227,1719,2266,2874,3546,4294,5130,6074,7152,8403,9889,11713,14068,17378,22974,55642

    Not sure if this helps. I remove the complete HOMREF calls when comparing to the single samples. This shouldn't affect the sensitivity though. The problem is that most variants are completely missing from the joint VCF.

    0
    Comment actions Permalink
  • Avatar
    Gökalp Çelik

    OK these are TP ones. Can you show me a single site that is present in single sample, present in single pool and not present when it is jointly called? You might want to put the GVCF entry in the joint call input file. If there is an entry in the GVCF but not in the genotyped VCF after joint genotyping it calls for a bug report. If the site gets lost after import or combinegvcf step that may also call for a bug report.

    I am trying to understand the root cause of the problem because this is not expected.

    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    The one on chr17 is TP. The one on chr13 is not present in the joint called VCF. The two lines given for the site on chr13 are in the initial GVCF and in the VCF output when not jointly called, but called by giving GenotypeGVCF only a single pool.

    0
    Comment actions Permalink
  • Avatar
    Gökalp Çelik

    Can you check the GVCF entry in the combined file for the variant in chr13. I am curious about what happened to it. 

    You can dump GenomicsDB into a GVCF file by using SelectVariants tool.

    gatk SelectVariants -V gendb://gdbimport -O GVCFdump.g.vcf.gz -R reference.fasta
    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    Thanks - I will do that now!

    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    This is the site in the GVCF:

    chr13   32339012        .       A       G,T,<NON_REF>   .       .       AS_RAW_BaseQRankSum=|-0.600,1,0.300,1|-2.000,1|;AS_RAW_MQ=14731200.000|828000.000|3600.000|0.000;AS_RAW_MQRankSum=|0.000,2|0.000,1|;AS_RAW_ReadPosRankSum=|0.300,1,1.900,1|0.100,1|;AS_SB_TABLE=1874,2218|112,118|0,1|0,0;BaseQRankSum=0.388;DP=39331;MQRankSum=0;RAW_MQandDP=16254000,4515;ReadPosRankSum=2.007  GT:AD:GQ:MIN_DP:SB:DP ./././././././././././././././././././.:.:9:1445:.:1628 ./././././././././././././././././././.:2150,118,1,0:99:.:979,1171,59,60:2269        ./././././././././././././././././././.:.:9:1867:.:2079 ./././././././././././././././././././.:.:9:1927:.:2216 ./././././././././././././././././././.:.:9:2056:.:2328      ./././././././././././././././././././.:.:9:2611:.:2992 ./././././././././././././././././././.:.:9:2547:.:2857      ./././././././././././././././././././.:.:9:1836:.:2175 ./././././././././././././././././././.:.:9:2334:.:2681      ./././././././././././././././././././.:.:9:1723:.:1966 ./././././././././././././././././././.:.:9:1790:.:2010      ./././././././././././././././././././.:1942,112,0,0:99:.:895,1047,53,59:2054   ./././././././././././././././././././.:.:9:1743:.:2058      ./././././././././././././././././././.:.:9:1937:.:2283 ./././././././././././././././././././.:.:9:1918:.:2244 ./././././././././././././././././././.:.:9:1743:.:1964      ./././././././././././././././././././.:.:9:2032:.:2290 ./././././././././././././././././././.:.:9:1748:.:1953      ./././././././././././././././././././.:.:9:1748:.:2037 ./././././././././././././././././././.:.:9:1811:.:2017

     

    0
    Comment actions Permalink
  • Avatar
    Gökalp Çelik

    OK so this site is certainly lost in the import process but not in the GenotypeGVCFs step. Can you try CombineGVCFs tool to see if it will collect the data properly from all the pooled GVCFs into a single GVCF?

    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    This was more tricky than I thought. CombineGVCFs kept using up all memory on the HPC. I ended up only combining chr13. This is the site:

    chr13 32339012 . A G,T,<NON_REF> . . BaseQRankSum=0.388;DP=39331;MQRankSum=0.00;RAW_MQandDP=16254000,4515;ReadPosRankSum=2.01 GT:AD:DP:GQ:MIN_DP:PL:SB ./././././././././././././././././././.:.:1628:9:1445:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:2150,118,1,0:2269:99:.:1489,0,166,496,916,1403,1952,2562,3237,3985,4814,5742,6787,7981,9366,11010,13027,15629,19286,25464,62283,1965,501,695,1058,1514,2043,2639,3304,4043,4867,5789,6830,8020,9402,11044,13059,15659,19314,25491,62311,2467,1032,1258,1657,2154,2730,3380,4110,4925,5841,6878,8063,9442,11081,13093,15691,19344,25519,62341,2998,1594,1857,2296,2841,3471,4187,4992,5900,6930,8111,9485,11121,13130,15725,19377,25550,62373,3561,2193,2497,2984,3583,4278,5069,5967,6989,8164,9533,11164,13170,15763,19411,25582,62407,4161,2833,3184,3726,4389,5160,6044,7056,8223,9586,11212,13214,15803,19449,25617,62443,4801,3521,3926,4532,5272,6136,7134,8290,9645,11265,13262,15847,19489,25655,62482,5489,4263,4733,5415,6247,7225,8368,9713,11325,13315,15895,19533,25696,62523,6232,5069,5616,6391,7337,8459,9790,11392,13375,15948,19582,25740,62568,7040,5952,6591,7480,8571,9882,11470,13442,16008,19635,25789,62616,7923,6928,7681,8714,9993,11561,13520,16075,19695,25842,62669,8900,8018,8915,10137,11673,13612,16153,19762,25902,62727,9990,9252,10337,11817,13723,16245,19840,25970,62791,11225,10675,12017,13867,16357,19932,26048,62864,12649,12354,14068,16501,20044,26140,62948,14330,14405,16701,20188,26252,63046,16382,17039,20389,26396,63165,19017,20726,26598,63316,22707,26935,63527,28918,63876,65887,1966,503,697,1060,1515,2044,2640,3305,4044,4868,5790,6832,8021,9403,11045,13060,15660,19315,25492,62311,2468,1033,1259,1658,2155,2731,3382,4111,4926,5842,6879,8064,9443,11082,13094,15692,19345,25520,62341,2999,1595,1857,2297,2842,3472,4187,4993,5901,6931,8112,9486,11121,13131,15726,19377,25551,62373,3562,2194,2497,2984,3583,4278,5070,5968,6990,8165,9534,11165,13171,15763,19412,25583,62407,4161,2834,3185,3726,4390,5161,6045,7057,8224,9587,11213,13215,15804,19449,25618,62443,4802,3521,3927,4533,5272,6136,7134,8291,9646,11266,13263,15848,19490,25655,62481,5490,4263,4733,5416,6248,7226,8368,9713,11325,13316,15896,19534,25696,62522,6233,5070,5616,6391,7337,8460,9791,11392,13375,15949,19582,25740,62567,7040,5953,6591,7481,8571,9882,11470,13443,16008,19635,25789,62615,7924,6928,7681,8715,9994,11562,13520,16076,19695,25842,62668,8900,8018,8915,10137,11673,13612,16153,19762,25902,62726,9990,9252,10338,11817,13724,16245,19840,25970,62790,11225,10675,12017,13867,16357,19932,26048,62863,12649,12354,14068,16501,20044,26140,62946,14330,14405,16702,20188,26252,63044,16382,17039,20389,26396,63163,19017,20726,26598,63314,22706,26935,63524,28918,63873,65880,2469,1034,1260,1659,2156,2732,3383,4112,4928,5844,6880,8066,9444,11083,13096,15693,19347,25522,62341,3000,1596,1858,2298,2843,3473,4188,4994,5902,6932,8113,9487,11123,13132,15727,19378,25552,62372,3562,2195,2498,2985,3584,4279,5071,5969,6991,8165,9535,11166,13172,15764,19413,25584,62406,4162,2834,3185,3727,4390,5162,6046,7058,8224,9587,11214,13215,15804,19450,25618,62442,4802,3522,3927,4533,5273,6137,7135,8291,9646,11266,13263,15848,19490,25656,62480,5490,4264,4734,5416,6248,7226,8369,9714,11326,13316,15896,19534,25697,62521,6233,5070,5616,6392,7338,8460,9791,11393,13376,15949,19582,25741,62566,7040,5953,6592,7481,8572,9882,11470,13443,16009,19636,25789,62614,7924,6929,7681,8715,9994,11562,13521,16076,19695,25843,62666,8900,8018,8915,10137,11674,13612,16154,19763,25902,62724,9990,9252,10338,11817,13724,16245,19841,25970,62789,11225,10675,12018,13868,16357,19932,26048,62861,12649,12355,14068,16501,20044,26140,62945,14330,14405,16702,20188,26253,63042,16382,17039,20389,26397,63161,19017,20726,26598,63312,22706,26935,63522,28917,63870,65874,3001,1597,1860,2300,2844,3475,4190,4995,5904,6934,8114,9489,11124,13133,15729,19380,25553,62373,3563,2196,2499,2986,3585,4280,5072,5970,6992,8166,9536,11167,13173,15765,19414,25585,62406,4162,2835,3186,3728,4391,5163,6047,7059,8225,9588,11214,13216,15805,19451,25619,62441,4803,3522,3928,4534,5274,6138,7136,8292,9647,11267,13264,15849,19491,25657,62480,5491,4264,4734,5417,6249,7227,8369,9714,11326,13317,15897,19535,25697,62521,6233,5071,5617,6392,7338,8460,9791,11393,13376,15950,19583,25741,62565,7040,5954,6592,7481,8572,9883,11471,13443,16009,19636,25789,62613,7924,6929,7682,8715,9995,11562,13521,16076,19696,25843,62665,8900,8019,8916,10138,11674,13613,16154,19763,25903,62723,9991,9253,10338,11817,13724,16246,19841,25970,62788,11225,10675,12018,13868,16358,19933,26048,62860,12649,12355,14068,16501,20045,26140,62943,14330,14406,16702,20188,26253,63041,16382,17039,20389,26397,63159,19016,20727,26598,63310,22706,26935,63520,28917,63868,65868,3565,2197,2501,2988,3587,4282,5073,5971,6993,8168,9537,11168,13174,15767,19415,25586,62406,4163,2836,3187,3729,4392,5164,6048,7060,8226,9589,11215,13217,15806,19452,25620,62441,4803,3523,3929,4535,5275,6138,7136,8293,9648,11268,13265,15850,19492,25657,62479,5491,4265,4735,5417,6250,7227,8370,9715,11327,13318,15897,19535,25698,62520,6234,5071,5618,6393,7339,8461,9792,11394,13377,15950,19583,25742,62564,7041,5954,6593,7482,8573,9883,11471,13444,16010,19636,25790,62612,7924,6930,7682,8716,9995,11563,13521,16077,19696,25843,62664,8900,8019,8916,10138,11674,13613,16154,19763,25903,62722,9991,9253,10339,11818,13725,16246,19841,25971,62786,11225,10676,12018,13868,16358,19933,26049,62859,12649,12355,14069,16501,20045,26141,62942,14330,14406,16702,20189,26253,63039,16381,17039,20389,26397,63158,19016,20727,26598,63308,22705,26936,63517,28916,63865,65864,4165,2838,3189,3730,4394,5165,6049,7061,8228,9591,11217,13219,15808,19453,25622,62441,4804,3524,3930,4536,5276,6139,7137,8294,9649,11269,13266,15851,19493,25658,62479,5492,4266,4736,5418,6250,7228,8371,9716,11328,13318,15898,19536,25698,62519,6234,5072,5618,6393,7340,8462,9793,11395,13377,15951,19584,25742,62563,7041,5955,6593,7483,8573,9884,11472,13444,16010,19637,25790,62611,7925,6930,7683,8716,9995,11563,13522,16077,19696,25844,62663,8901,8020,8917,10139,11675,13613,16155,19764,25903,62721,9991,9253,10339,11818,13725,16246,19841,25971,62785,11226,10676,12019,13868,16358,19933,26049,62857,12649,12356,14069,16502,20045,26141,62940,14330,14406,16702,20189,26253,63037,16381,17040,20390,26397,63156,19016,20727,26598,63306,22705,26936,63515,28916,63863,65859,4806,3526,3931,4537,5277,6141,7139,8295,9650,11270,13267,15852,19494,25660,62479,5493,4267,4737,5419,6252,7229,8372,9717,11329,13319,15899,19537,25699,62519,6235,5073,5619,6394,7340,8463,9794,11395,13378,15952,19585,25743,62563,7042,5955,6594,7483,8574,9885,11473,13445,16011,19638,25791,62611,7925,6931,7683,8717,9996,11564,13522,16078,19697,25844,62663,8901,8020,8917,10139,11675,13614,16155,19764,25904,62720,9991,9254,10340,11819,13725,16247,19842,25971,62784,11226,10676,12019,13869,16359,19934,26049,62856,12649,12356,14069,16502,20045,26141,62939,14330,14406,16703,20189,26253,63036,16381,17040,20390,26397,63154,19016,20727,26598,63305,22705,26936,63513,28915,63860,65856,5494,4268,4738,5421,6253,7231,8373,9718,11330,13321,15901,19538,25701,62519,6236,5074,5620,6395,7341,8464,9795,11396,13379,15953,19586,25744,62562,7042,5956,6595,7484,8575,9885,11473,13446,16012,19638,25792,62610,7926,6931,7684,8718,9997,11564,13523,16079,19698,25845,62662,8901,8021,8918,10140,11676,13614,16156,19765,25904,62719,9991,9254,10340,11819,13726,16247,19842,25972,62783,11226,10677,12019,13869,16359,19934,26049,62855,12649,12356,14070,16502,20046,26141,62937,14330,14407,16703,20189,26253,63035,16381,17040,20390,26397,63153,19016,20727,26598,63303,22705,26936,63511,28915,63858,65852,6237,5075,5622,6397,7343,8465,9796,11398,13381,15954,19587,25745,62563,7043,5957,6596,7485,8576,9887,11474,13447,16013,19639,25793,62610,7926,6932,7685,8718,9998,11565,13524,16079,19698,25846,62661,8902,8021,8918,10140,11677,13615,16157,19765,25905,62718,9992,9255,10341,11820,13727,16248,19843,25972,62782,11226,10677,12020,13870,16359,19934,26050,62854,12650,12357,14070,16503,20046,26142,62936,14330,14407,16703,20190,26254,63033,16381,17040,20390,26398,63151,19016,20728,26598,63301,22705,26936,63509,28915,63856,65849,7045,5959,6597,7487,8577,9888,11476,13448,16014,19641,25794,62610,7927,6933,7686,8719,9999,11566,13525,16080,19699,25846,62661,8903,8022,8919,10141,11677,13616,16157,19766,25906,62718,9992,9256,10341,11820,13727,16249,19843,25973,62781,11227,10678,12020,13870,16360,19935,26050,62853,12650,12357,14071,16503,20047,26142,62935,14330,14407,16704,20190,26254,63032,16382,17041,20391,26398,63150,19016,20728,26599,63300,22704,26936,63508,28915,63854,65846,7928,6935,7687,8721,10000,11568,13526,16082,19701,25848,62661,8903,8023,8920,10142,11678,13617,16158,19767,25906,62717,9993,9256,10342,11821,13728,16249,19844,25973,62780,11227,10679,12021,13871,16361,19935,26051,62852,12650,12358,14071,16504,20047,26143,62934,14330,14408,16704,20190,26254,63031,16382,17041,20391,26398,63148,19016,20728,26599,63298,22704,26936,63506,28914,63852,65842,8905,8025,8922,10144,11680,13618,16160,19769,25908,62717,9994,9257,10343,11822,13729,16250,19845,25974,62780,11228,10679,12022,13872,16361,19936,26052,62851,12651,12358,14072,16504,20048,26143,62933,14331,14409,16705,20191,26255,63030,16382,17042,20392,26398,63147,19016,20729,26599,63297,22704,26937,63504,28914,63850,65839,9995,9259,10345,11824,13730,16252,19847,25976,62780,11229,10680,12023,13873,16362,19937,26053,62851,12651,12359,14073,16505,20049,26144,62933,14331,14409,16705,20192,26255,63029,16382,17042,20392,26399,63146,19016,20729,26600,63295,22704,26937,63503,28914,63848,65837,11230,10682,12024,13874,16364,19939,26054,62851,12652,12360,14074,16506,20049,26145,62932,14332,14410,16706,20192,26256,63028,16383,17043,20393,26399,63145,19017,20729,26600,63294,22705,26937,63501,28914,63846,65834,12653,12362,14075,16508,20051,26146,62932,14333,14411,16707,20193,26257,63028,16383,17044,20393,26400,63144,19017,20730,26601,63293,22705,26938,63500,28914,63844,65832,14334,14412,16709,20195,26258,63027,16384,17045,20394,26401,63143,19018,20731,26601,63292,22705,26938,63499,28914,63843,65829,16385,17046,20396,26402,63143,19018,20732,26602,63291,22706,26939,63498,28914,63841,65827,19019,20733,26604,63291,22706,26940,63497,28915,63840,65825,22707,26941,63496,28915,63839,65823,28916,63839,65822,65821:979,1171,59,60 ./././././././././././././././././././.:.:2079:9:1867:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:2216:9:1927:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:2328:9:2056:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:2992:9:2611:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:2857:9:2547:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:2175:9:1836:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:2681:9:2334:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:1966:9:1723:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:2010:9:1790:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:1942,112,0,0:2054:99:.:1449,0,131,420,792,1227,1719,2266,2874,3546,4294,5130,6074,7152,8403,9889,11713,14068,17378,22974,55642,1880,454,612,929,1334,1806,2340,2938,3603,4345,5176,6116,7190,8439,9922,11745,14097,17406,23000,55667,2334,934,1121,1471,1913,2428,3012,3667,4402,5227,6162,7232,8477,9958,11778,14128,17435,23028,55693,2815,1444,1663,2050,2535,3099,3741,4466,5284,6213,7278,8519,9997,11814,14162,17466,23057,55721,3324,1986,2242,2672,3206,3829,4540,5348,6270,7329,8565,10039,11852,14197,17500,23088,55750,3866,2565,2864,3343,3935,4627,5422,6334,7386,8616,10085,11894,14236,17536,23122,55781,4445,3186,3535,4073,4734,5510,6408,7450,8673,10136,11940,14278,17574,23157,55815,5067,3858,4264,4871,5616,6495,7524,8737,10192,11991,14324,17616,23196,55850,5738,4587,5063,5754,6602,7612,8811,10257,12048,14375,17662,23238,55889,6468,5386,5945,6739,7718,8899,10331,12112,14432,17713,23284,55932,7266,6268,6931,7855,9005,10418,12186,14496,17770,23335,55977,8148,7254,8047,9142,10525,12274,14570,17834,23392,56028,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,1880,454,612,929,1334,1806,2340,2938,3603,4345,5176,6116,7190,8439,9922,11745,14097,17406,23000,55667,2334,934,1121,1471,1913,2428,3012,3667,4402,5227,6162,7232,8477,9958,11778,14128,17435,23028,55693,2815,1444,1663,2050,2535,3099,3741,4466,5284,6213,7278,8519,9997,11814,14162,17466,23057,55721,3324,1986,2242,2672,3206,3829,4540,5348,6270,7329,8565,10039,11852,14197,17500,23088,55750,3866,2565,2864,3343,3935,4627,5422,6334,7386,8616,10085,11894,14236,17536,23122,55781,4445,3186,3535,4073,4734,5510,6408,7450,8673,10136,11940,14278,17574,23157,55815,5067,3858,4264,4871,5616,6495,7524,8737,10192,11991,14324,17616,23196,55850,5738,4587,5063,5754,6602,7612,8811,10257,12048,14375,17662,23238,55889,6468,5386,5945,6739,7718,8899,10331,12112,14432,17713,23284,55932,7266,6268,6931,7855,9005,10418,12186,14496,17770,23335,55977,8148,7254,8047,9142,10525,12274,14570,17834,23392,56028,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,2334,934,1121,1471,1913,2428,3012,3667,4402,5227,6162,7232,8477,9958,11778,14128,17435,23028,55693,2815,1444,1663,2050,2535,3099,3741,4466,5284,6213,7278,8519,9997,11814,14162,17466,23057,55721,3324,1986,2242,2672,3206,3829,4540,5348,6270,7329,8565,10039,11852,14197,17500,23088,55750,3866,2565,2864,3343,3935,4627,5422,6334,7386,8616,10085,11894,14236,17536,23122,55781,4445,3186,3535,4073,4734,5510,6408,7450,8673,10136,11940,14278,17574,23157,55815,5067,3858,4264,4871,5616,6495,7524,8737,10192,11991,14324,17616,23196,55850,5738,4587,5063,5754,6602,7612,8811,10257,12048,14375,17662,23238,55889,6468,5386,5945,6739,7718,8899,10331,12112,14432,17713,23284,55932,7266,6268,6931,7855,9005,10418,12186,14496,17770,23335,55977,8148,7254,8047,9142,10525,12274,14570,17834,23392,56028,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,2815,1444,1663,2050,2535,3099,3741,4466,5284,6213,7278,8519,9997,11814,14162,17466,23057,55721,3324,1986,2242,2672,3206,3829,4540,5348,6270,7329,8565,10039,11852,14197,17500,23088,55750,3866,2565,2864,3343,3935,4627,5422,6334,7386,8616,10085,11894,14236,17536,23122,55781,4445,3186,3535,4073,4734,5510,6408,7450,8673,10136,11940,14278,17574,23157,55815,5067,3858,4264,4871,5616,6495,7524,8737,10192,11991,14324,17616,23196,55850,5738,4587,5063,5754,6602,7612,8811,10257,12048,14375,17662,23238,55889,6468,5386,5945,6739,7718,8899,10331,12112,14432,17713,23284,55932,7266,6268,6931,7855,9005,10418,12186,14496,17770,23335,55977,8148,7254,8047,9142,10525,12274,14570,17834,23392,56028,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,3324,1986,2242,2672,3206,3829,4540,5348,6270,7329,8565,10039,11852,14197,17500,23088,55750,3866,2565,2864,3343,3935,4627,5422,6334,7386,8616,10085,11894,14236,17536,23122,55781,4445,3186,3535,4073,4734,5510,6408,7450,8673,10136,11940,14278,17574,23157,55815,5067,3858,4264,4871,5616,6495,7524,8737,10192,11991,14324,17616,23196,55850,5738,4587,5063,5754,6602,7612,8811,10257,12048,14375,17662,23238,55889,6468,5386,5945,6739,7718,8899,10331,12112,14432,17713,23284,55932,7266,6268,6931,7855,9005,10418,12186,14496,17770,23335,55977,8148,7254,8047,9142,10525,12274,14570,17834,23392,56028,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,3866,2565,2864,3343,3935,4627,5422,6334,7386,8616,10085,11894,14236,17536,23122,55781,4445,3186,3535,4073,4734,5510,6408,7450,8673,10136,11940,14278,17574,23157,55815,5067,3858,4264,4871,5616,6495,7524,8737,10192,11991,14324,17616,23196,55850,5738,4587,5063,5754,6602,7612,8811,10257,12048,14375,17662,23238,55889,6468,5386,5945,6739,7718,8899,10331,12112,14432,17713,23284,55932,7266,6268,6931,7855,9005,10418,12186,14496,17770,23335,55977,8148,7254,8047,9142,10525,12274,14570,17834,23392,56028,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,4445,3186,3535,4073,4734,5510,6408,7450,8673,10136,11940,14278,17574,23157,55815,5067,3858,4264,4871,5616,6495,7524,8737,10192,11991,14324,17616,23196,55850,5738,4587,5063,5754,6602,7612,8811,10257,12048,14375,17662,23238,55889,6468,5386,5945,6739,7718,8899,10331,12112,14432,17713,23284,55932,7266,6268,6931,7855,9005,10418,12186,14496,17770,23335,55977,8148,7254,8047,9142,10525,12274,14570,17834,23392,56028,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,5067,3858,4264,4871,5616,6495,7524,8737,10192,11991,14324,17616,23196,55850,5738,4587,5063,5754,6602,7612,8811,10257,12048,14375,17662,23238,55889,6468,5386,5945,6739,7718,8899,10331,12112,14432,17713,23284,55932,7266,6268,6931,7855,9005,10418,12186,14496,17770,23335,55977,8148,7254,8047,9142,10525,12274,14570,17834,23392,56028,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,5738,4587,5063,5754,6602,7612,8811,10257,12048,14375,17662,23238,55889,6468,5386,5945,6739,7718,8899,10331,12112,14432,17713,23284,55932,7266,6268,6931,7855,9005,10418,12186,14496,17770,23335,55977,8148,7254,8047,9142,10525,12274,14570,17834,23392,56028,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,6468,5386,5945,6739,7718,8899,10331,12112,14432,17713,23284,55932,7266,6268,6931,7855,9005,10418,12186,14496,17770,23335,55977,8148,7254,8047,9142,10525,12274,14570,17834,23392,56028,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,7266,6268,6931,7855,9005,10418,12186,14496,17770,23335,55977,8148,7254,8047,9142,10525,12274,14570,17834,23392,56028,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,8148,7254,8047,9142,10525,12274,14570,17834,23392,56028,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,9134,8370,9334,10662,12380,14657,17908,23456,56085,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,10250,9657,10854,12518,14764,17995,23530,56149,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,11537,11177,12709,14901,18102,23617,56223,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,13057,13032,15093,18239,23724,56310,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,14912,15416,18431,23861,56417,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,17296,18754,24053,56554,20634,24376,56746,26256,57069,58949,20634,24376,56746,26256,57069,58949,26256,57069,58949,58949:895,1047,53,59 ./././././././././././././././././././.:.:2058:9:1743:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:2283:9:1937:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:2244:9:1918:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:1964:9:1743:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:2290:9:2032:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:1953:9:1748:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:2037:9:1748:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800 ./././././././././././././././././././.:.:2017:9:1811:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,75,89,104,120,139,159,182,209,241,280,330,400,520,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,89,104,120,139,159,182,209,241,280,330,400,520,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,104,120,139,159,182,209,241,280,330,400,520,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,120,139,159,182,209,241,280,330,400,520,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,139,159,182,209,241,280,330,400,520,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,159,182,209,241,280,330,400,520,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,182,209,241,280,330,400,520,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,209,241,280,330,400,520,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,241,280,330,400,520,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,280,330,400,520,1800,330,400,520,1800,400,520,1800,520,1800,1800,330,400,520,1800,400,520,1800,520,1800,1800,400,520,1800,520,1800,1800,520,1800,1800,1800
    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    My previous post is pending approval. I guess there was too much info in the code block. It seems like the site is also lost here.

    0
    Comment actions Permalink
  • Avatar
    Gökalp Çelik

    I approved that one. So this is much better. Now it looks like there are 3 alleles present in the region and also PL field is present therefore it will be possible for GenotypeGVCFs to provide a GT assignment to the correct pool. Can you also try genotyping this GVCF to see if missing sites appear as they should?

    Additionally I was wondering if you could send us snippets (after anonymizing your sample names of course) of your pooled GVCFs around this particular region, preferably 100KB up and downstream so that we may try recreating this issue and see if this is a GenomicsDBImport bug (looks like it) that we should pursue immediately. 

    You may use the directions in the article below for sending us those snippets if possible. 

    https://gatk.broadinstitute.org/hc/en-us/articles/360035889671-How-do-I-submit-a-detailed-bug-report 

    Thank you for your patience. 

    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    Yes, this the site in the resulting VCF after genotyping the combined GVCF:

    chr13   32339012        .       A       G       2920.02 .       AC=2;AF=5.000e-03;AN=400;AS_QD=0.68;BaseQRankSum=0.388;DP=39331;FS=0.000;MLEAC=2;MLEAF=5.000e-03;MQ=60.00;MQRankSum=0.00;QD=0.68;ReadPosRankSum=2.01;SOR=0.591    GT:AD:DP:GQ:PL  0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1445,0:1445:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/1:2150,118:2269:99:1489,0,166,496,916,1403,1952,2562,3237,3985,4814,5742,6787,7981,9366,11010,13027,15629,19286,25464,62283   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1867,0:1867:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1927,0:1927:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:2056,0:2056:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:2611,0:2611:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:2547,0:2547:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1836,0:1836:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:2334,0:2334:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1723,0:1723:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1790,0:1790:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/1:1942,112:2054:99:1449,0,131,420,792,1227,1719,2266,2874,3546,4294,5130,6074,7152,8403,9889,11713,14068,17378,22974,55642  0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1743,0:1743:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1937,0:1937:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1918,0:1918:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1743,0:1743:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:2032,0:2032:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1748,0:1748:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1748,0:1748:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800   0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0/0:1811,0:1811:9:0,9,18,28,39,50,62,75,89,104,120,139,159,182,209,241,280,330,400,520,1800

    Thanks so much for your help! Can you elaborate on how you could see that the site was lost in the GVCF coming from genomicsDB?

    I would really like to help with creating the snippet for you, but I would have to check if I am allowed to.

    0
    Comment actions Permalink
  • Avatar
    Gökalp Çelik

    So there are some technical differences between how GenomicsDBImport and CombineGVCFs work in terms of generating large PL and Genotype arrays. Details are not too important but the key is 2 different methods have different caps for number of possible genotypes per locus given ploidy and sample number. GenomicsDBImport is slightly lower capped compared to CombineGVCFs therefore it fails to keep the large PL array. 

    Our germline methods are more conservative against these exponentially expanding PL arrays when too many possible genotypes are possible. After a certain number of genotypes algorithm simply refuses to generate any PL arrays therefore your genotypes get lost in translation. 

    TL:DR. 

    Pooled sequencing and extremely high ploidy sample sequencing is not handled as the regular single diploid samples in joint genotyping by HaplotypeCaller/GenotypeGVCFs due to the large number of array elements. We recommend using Mutect2 to simplify pooled sequencing samples and there is a somatic mode present in GenotypeGVCFs tool that can handle joint calling of pooled samples. In your case using Mutect2 may generate a better result in terms of data simplicity. 

    In case you want to try with Mutect2 GVCF mode I can recommend you to ignore Germline Filter of the FilterMutectCalls tool to avoid removing high frequency alleles in the pool to get filtered out. FilterMutectCalls can remove some of the sequencing artifacts based on evidence from reads however you may wish to check options to enable and disable appropriate filters for your use case. You certainly don't need to use any germline resource to mark any high fraction variants as GERMLINE, however contamination filter can help you remove any cross pool contaminants to avoid calling variants that should not be in a particular pool. 

    I hope this helps.

    Regards. 

    0
    Comment actions Permalink
  • Avatar
    Mads Nielsen

    Thanks for the explanation! I will definitely also try running Mutect2. Do I understand you correctly, that the workflow can reduce/remove cross-contamination between pools? This would be very helpful.

    Would this be a good adjusted workflow for pooled sequencing:

    1. Mutect2

    gatk Mutect2 \
    -R ref.fasta \ -I pool.bam \ --f1r2-tar-gz f1r2.tar.gz \ -O unfiltered.vcf

    This should be without germline resource and PON table right? and would it be necessary to do force calling or adding --genotype-germline-sites?

     

    2. LearnReadOrientationModel

    gatk LearnReadOrientationModel \
    -I f1r2.tar.gz \
    -O read-orientation-model.tar.gz

     

    3. GetPileupSummaries

    gatk GetPileupSummaries \
        -I pool.bam \
        -V common_variants_within_regions.vcf.gz \
        -L common_variants_within_regions.vcf.gz \
        -O pileupsummaries.table

     

    4. CalculateContamination

    gatk CalculateContamination \
            -I pileupsummaries.table \
            -O contamination.table

    Without tumor segmentation right?

     

    5. FilterMutectCalls

    gatk FilterMutectCalls \
    -V unfiltered.vcf \ --contamination-table contamination.table \ --ob-priors read-orientation-model.tar.gz \ -O filtered.vcf

     

    I am not sure how it will filter cross pool contamination, since each sample is handled individually. Multi-sample mode in mutect2 is meant for multiple samples from the same individual right? Thanks so much for all your help!

    0
    Comment actions Permalink
  • Avatar
    Gökalp Çelik

    Hi again.

    Workflow looks good. CalculateContamination uses allelic imbalance of homozygous sites and determines if the sample has any possible contamination due to experimental setup. It will help FilterMutectCalls to mark such sites as contamination and it is up to you do decide if it is really a contamination or not since you are not working with tumor samples. Mutect2 considers all reads belong to the same sample unless it is indicated as normal. Since you don't have any normal present it will emit all variants as a part of the same sample. 

    For the joint calling of different pools we suggest using the GVCF mode of Mutect2 and using somatic input mode of GenotypeGVCFs tool. 

    I hope this helps. 

    0
    Comment actions Permalink

Please sign in to leave a comment.

Powered by Zendesk